searchExchanges
Search crypto exchanges, wallets, analytics tools, and crypto cards by name, promo code, or feature.
Parameters2
| query | string | required | Exchange, wallet, tool, feature, or promo code to search for. |
| limit | integer | optional | Maximum number of matches to return. |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Exchange, wallet, tool, feature, or promo code to search for.",
"minLength": 1
},
"limit": {
"type": "integer",
"description": "Maximum number of matches to return.",
"minimum": 1,
"maximum": 25,
"default": 8
}
},
"required": [
"query"
],
"additionalProperties": false
}