The API ID Mappings endpoint allows you to map IDs from other cryptocurrency API providers to Coinpaprika API IDs. This is especially useful when you have provider-specific IDs and want to interact with the Coinpaprika API using its own standardized IDs. In addition to Coinpaprika’s and other providers internal ID system, this endpoint also supports mapping ISIN(International Securities Identification Number) and DTI (Digital Token Identifier) IDs.
Use Cases:
This flexibility enables seamless integration across different crypto data sources and allows you to work with a variety of ID formats within the Coinpaprika ecosystem.
Available mapping providers
Available on the following API plans:
Examples:
Use a single query parameter to get mappings for a specific Coinpaprika, Coinmarketcap, Coingecko, Cryptocompare, ISIN, or DTI ID. The response will include all available mappings for the specified ID.
# Get mappings for a specific Coinpaprika ID
curl --request GET \
--url 'https://api-pro.coinpaprika.com/v1/coins/mappings?coinpaprika=btc-bitcoin' \
--header 'Authorization: <your-api-key>'
# Get mappings for a specific Coinmarketcap ID
curl --request GET \
--url 'https://api-pro.coinpaprika.com/v1/coins/mappings?coinmarketcap=1' \
--header 'Authorization: <your-api-key>'\
# Get mappings for a specific Coingecko ID
curl --request GET \
--url 'https://api-pro.coinpaprika.com/v1/coins/mappings?coingecko=bitcoin' \
--header 'Authorization: <your-api-key>'
# Get mappings for a specific Cryptocompare ID
curl --request GET \
--url 'https://api-pro.coinpaprika.com/v1/coins/mappings?cryptocompare=1' \
--header 'Authorization: <your-api-key>'
# Get mappings for a specific ISIN ID
curl --request GET \
--url 'https://api-pro.coinpaprika.com/v1/coins/mappings?isin=XTV15WLZJMF0' \
--header 'Authorization: <your-api-key>'
# Get mappings for a specific DTI ID
curl --request GET \
--url 'https://api-pro.coinpaprika.com/v1/coins/mappings?dti=V15WLZJMF' \
--header 'Authorization: <your-api-key>'
Update interval: Every 1 minute.
Coinpaprika API ID of a coin you want to map to the other provider API IDs
Coinmarketcap API ID of a coin you want to map to the other provider API IDs
Coingecko API ID of a coin you want to map to the other provider API IDs
Cryptocompare API ID of a coin you want to map to the other provider API IDs
Digital Token Identifier of a coin you want to map to the other provider API IDs
successful operation
The response is of type object[]
.