# Available Endpoints

Discover all available endpoints

## Endpoints

> This endpoint returns all endpoints we support with available parameters.

```json
{"openapi":"3.0.0","info":{"title":"CryptoQuant Data API","version":"1.3.0"},"tags":[{"name":"Available Endpoints","description":"Discover all available endpoints"}],"servers":[{"url":"https://api.cryptoquant.com/v1/","description":"Default server"}],"security":[{"Access Token":[]}],"components":{"securitySchemes":{"Access Token":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"For each API request, include this HTTP header:\n`Authorization` with the `Bearer {access_token}`. Bearer access token is the type of HTTP Authorization.  You have to include access token to the HTTP header and note that leading bearer is required.\nYou must include your access token in HTTP header in every request you make. The token is unique, issued for each client, and regularly changed(once a year). To obtain an access token, please [upgrade your plan](https://cryptoquant.com/pricing) to Professional or Premium plan. You'll be able to see your access token on the [API tab](https://cryptoquant.com/settings/api) of your profile page after the subscription."}},"parameters":{"format":{"description":"A format type about return message type. Supported formats are json, csv.","explode":false,"in":"query","name":"format","required":false,"schema":{"type":"string","default":"json"},"style":"form"}},"responses":{"Endpoints":{"description":"All endpoints we support.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Endpoints"}}}}},"schemas":{"Endpoints":{"type":"object","required":["status","result"],"properties":{"status":{"$ref":"#/components/schemas/Status"},"result":{"type":"object","required":["data"],"properties":{"data":{"type":"array","items":{"type":"object","required":["path","parameters"],"properties":{"path":{"$ref":"#/components/schemas/Path"},"parameters":{"$ref":"#/components/schemas/Parameters"}}}}}}}},"Status":{"type":"object","description":"The status object is return with most of requests and indicates if the request was successful. If it is not successful, error information is included.","properties":{"code":{"type":"integer","format":"int32","description":"HTTP status code"},"message":{"type":"string","description":"Text description of the error or success."}},"required":["code","message"]},"Path":{"type":"string","description":"It represents the path of the endpoint."},"Parameters":{"type":"string","description":"It represents the parameters required for the corresponding endpoint."}}},"paths":{"/discovery/endpoints":{"get":{"tags":["Available Endpoints"],"summary":"Endpoints","description":"This endpoint returns all endpoints we support with available parameters.","operationId":"EndpointsList","parameters":[{"$ref":"#/components/parameters/format"}],"responses":{"200":{"$ref":"#/components/responses/Endpoints"}}}}}}
```
