exchangeInfo
Access detailed metadata for cryptocurrency exchanges, including IDs, slugs, and auxiliary data, through the CoinMarketCap MCP API. Simplify exchange information retrieval for informed decision-making.
Instructions
Returns metadata for one or more exchanges.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| aux | No | ||
| id | No | ||
| slug | No | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "aux": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    }
  },
  "type": "object"
}