GetCryptocurrencies
Retrieve daily updated cryptocurrency data, including symbols, exchanges, and currency pairs, from Twelve Data API for market analysis and tracking.
Instructions
This API call returns an array of cryptocurrencies available at Twelve Data API. This list is updated daily.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"GetCryptocurrenciesRequest": {
"description": "This API call returns an array of cryptocurrencies available at Twelve Data API. This list is updated daily.",
"properties": {
"apikey": {
"default": "demo",
"description": "API key",
"examples": [
"demo"
],
"title": "Apikey",
"type": "string"
},
"currency_base": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by currency base",
"examples": [
"BTC"
],
"title": "Currency Base"
},
"currency_quote": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Filter by currency quote",
"examples": [
"USD"
],
"title": "Currency Quote"
},
"delimiter": {
"default": ";",
"description": "The separator used in the CSV response data",
"title": "Delimiter",
"type": "string"
},
"exchange": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The exchange name where the pair is traded",
"examples": [
"Binance"
],
"title": "Exchange"
},
"format": {
"default": "JSON",
"description": "The format of the response data",
"title": "Format",
"type": "string"
},
"symbol": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The ticker symbol of an instrument for which data is requested",
"examples": [
"BTC/USD"
],
"title": "Symbol"
}
},
"title": "GetCryptocurrenciesRequest",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/GetCryptocurrenciesRequest"
}
},
"required": [
"params"
],
"title": "GetCryptocurrenciesArguments",
"type": "object"
}