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

# List All Providers

> List available perpetual trading platforms

## List Providers

Returns all available perpetual trading platforms.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.yield.xyz/v1/perps/providers \
    -H "x-api-key: your_api_key"
  ```
</RequestExample>

## Response

```json theme={null}
{
  "providers": [
    {
      "id": "hyperliquid",
      "name": "Hyperliquid",
      "network": "hyperliquid",
      "markets": 100,
      "status": "active"
    },
    {
      "id": "dydx",
      "name": "dYdX",
      "network": "dydx",
      "markets": 50,
      "status": "active"
    }
  ]
}
```
