get_id_coins
Retrieve comprehensive metadata and market data for a cryptocurrency by its CoinGecko coin ID, including prices, social links, contract addresses, and exchange tickers, using a straightforward API query.
Instructions
This endpoint allows you to query all the metadata (image, websites, socials, description, contract address, etc.) and market data (price, ATH, exchange tickers, etc.) of a coin from the CoinGecko coin page based on a particular coin ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
community_data | No | include community data, default: true | |
developer_data | No | include developer data, default: true | |
dex_pair_format | No | set to `symbol` to display DEX pair base and target as symbols, default: `contract_address` | |
id | Yes | ||
localization | No | include all the localized languages in the response, default: true | |
market_data | No | include market data, default: true | |
sparkline | No | include sparkline 7 days data, default: false | |
tickers | No | include tickers data, default: true |
Input Schema (JSON Schema)
{
"properties": {
"community_data": {
"description": "include community data, default: true",
"type": "boolean"
},
"developer_data": {
"description": "include developer data, default: true",
"type": "boolean"
},
"dex_pair_format": {
"description": "set to `symbol` to display DEX pair base and target as symbols, default: `contract_address`",
"enum": [
"contract_address",
"symbol"
],
"type": "string"
},
"id": {
"type": "string"
},
"localization": {
"description": "include all the localized languages in the response, default: true",
"type": "boolean"
},
"market_data": {
"description": "include market data, default: true",
"type": "boolean"
},
"sparkline": {
"description": "include sparkline 7 days data, default: false",
"type": "boolean"
},
"tickers": {
"description": "include tickers data, default: true",
"type": "boolean"
}
},
"required": [
"id"
],
"type": "object"
}