Skip to main content
DELETE
/
api
/
dev
/
listings
curl -X DELETE "https://api.liquid.tf/api/dev/listings" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_SITE_API_KEY" \
  -d '{ "active_only": true }'
{
  "success": true
}

Overview

Deletes all of your marketplace listings in a single operation. Useful when shutting down a bot or clearing your inventory.
This action cannot be undone! All your listings will be permanently removed.

Authentication

X-API-Key
string
required
Your site API key

Rate Limit

1 request per minute

Request Body

active_only
boolean
required
Set to true to delete only active listings, or false to delete all listings including inactive ones.

Response

success
boolean
Returns true if all listings were successfully deleted
curl -X DELETE "https://api.liquid.tf/api/dev/listings" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_SITE_API_KEY" \
  -d '{ "active_only": true }'
{
  "success": true
}

Active vs All Listings

Deletes only listings that are currently visible on the marketplace. Excludes sold, cancelled, or inactive listings.Use case: Clearing your current inventory while preserving historical data.
Deletes all listings including inactive ones. This completely removes your listing history.Use case: Complete account cleanup or data removal.
Most bots should use active_only: true to avoid deleting historical listing data.

Safety Tips

Before calling this endpoint:
  1. Confirm intent - Make sure you really want to delete all listings
  2. Backup data - Export your listings if you need them later
  3. Test first - Try deleting individual listings to ensure your API key works
  4. Use active_only - Unless you need to delete everything, use active_only: true