> ## Documentation Index
> Fetch the complete documentation index at: https://docs.liquid.tf/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Welcome to the Liquid.tf Developer API documentation

# Liquid.tf Developer API

The Liquid.tf API allows you to programmatically manage your listings, buy orders, and trades on the Team Fortress 2 marketplace.

## Base URL

All API endpoints are accessed via:

```
https://api.liquid.tf
```

<Warning>
  **Important:** Only `/api/dev` endpoints are authorized for developer use. Using any other API endpoints for development purposes can result in permanent revocation of your API keys and a ban from the site.

  That said, we are happy to work with developers to tailor solutions that we deem a benefit to our users and the wider community. Contact us at [support@liquid.tf](mailto:support@liquid.tf) to discuss your use case.
</Warning>

## Getting Started

<CardGroup cols={2}>
  <Card title="Authentication" icon="key" href="/authentication">
    Learn how to authenticate your API requests
  </Card>

  <Card title="Rate Limits" icon="gauge" href="/rate-limits">
    Understand API rate limiting and quotas
  </Card>

  <Card title="Create Listings" icon="plus" href="/api-reference/listings/create-listing">
    Start creating listings via the API
  </Card>

  <Card title="Manage Buy Orders" icon="cart-shopping" href="/api-reference/buy-orders/create-buy-order">
    Create and manage buy orders programmatically
  </Card>
</CardGroup>

## Quick Example

```bash theme={null}
curl -X POST "https://api.liquid.tf/api/dev/create_listing" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_SITE_API_KEY" \
  -d '{
    "items": [{
      "asset_id": "12321312414",
      "price": 16500,
      "promoted": 0,
      "game": "440"
    }]
  }'
```

## Support

For issues or questions:

* Join our [Discord community](https://discord.liquid.tf)
* Email us at [support@liquid.tf](mailto:support@liquid.tf)
