GET
/currenciesFetch list of available cryptocurrencies with optional filtering and pagination.
Parameters
| Name | Type | Status | Description |
|---|---|---|---|
search | string | Optional | Filter currencies by name or code Example: bitcoin |
page | number | Optional | Page number for pagination Example: 1 |
size | number | Optional | Number of items per page Example: 50 |
withNetworks | boolean | Optional | Include network information Example: true |
OpenAI Structured Output Schema
{
"name": "exolix_currencies",
"strict": true,
"schema": {
"type": "object",
"properties": {
"search": {
"type": "string",
"description": "Filter by currency name or code"
},
"page": {
"type": "number",
"description": "Page number for pagination"
},
"size": {
"type": "number",
"description": "Items per page (max 100)"
},
"withNetworks": {
"type": "boolean",
"description": "Include network details"
}
},
"required": [],
"additionalProperties": false
}
}