GET/currencies

Fetch list of available cryptocurrencies with optional filtering and pagination.

Parameters

NameTypeStatusDescription
searchstringOptionalFilter currencies by name or code
Example: bitcoin
pagenumberOptionalPage number for pagination
Example: 1
sizenumberOptionalNumber of items per page
Example: 50
withNetworksbooleanOptionalInclude 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
  }
}