Skip to main content
POST
/
api
/
coinmarketcap
/
coins
/coinmarketcap/coins
curl --request POST \
  --url https://api.anysite.io/api/coinmarketcap/coins \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "timeout": 300,
  "slug": "bitcoin",
  "id": 1
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "symbol": "<string>",
    "@type": "@coinmarketcap_coin",
    "alias": "<string>",
    "category": "<string>",
    "description": "<string>",
    "image": "<string>",
    "status": "<string>",
    "is_audited": false,
    "date_added": "<string>",
    "date_launched": "<string>",
    "watch_count": 123,
    "holder_count": 123,
    "daily_active_holder_count": 123,
    "tags": [],
    "platforms": [],
    "urls": {
      "@type": "@coinmarketcap_urls",
      "website": [],
      "technical_doc": [],
      "explorer": [],
      "source_code": [],
      "message_board": [],
      "chat": [],
      "announcement": [],
      "reddit": [],
      "facebook": [],
      "twitter": []
    },
    "statistics": {
      "@type": "@coinmarketcap_coin_statistics",
      "price": 123,
      "price_change_percentage_1h": 123,
      "price_change_percentage_24h": 123,
      "price_change_percentage_7d": 123,
      "price_change_percentage_30d": 123,
      "price_change_percentage_60d": 123,
      "price_change_percentage_90d": 123,
      "price_change_percentage_1y": 123,
      "price_change_percentage_all": 123,
      "ytd_price_change_percentage": 123,
      "market_cap": 123,
      "market_cap_change_percentage_24h": 123,
      "fully_diluted_market_cap": 123,
      "market_cap_dominance": 123,
      "rank": 123,
      "volume_rank": 123,
      "circulating_supply": 123,
      "total_supply": 123,
      "max_supply": 123,
      "turnover": 123,
      "volume_24h": 123,
      "volume_7d": 123,
      "volume_30d": 123,
      "low_24h": 123,
      "high_24h": 123,
      "low_52w": 123,
      "high_52w": 123,
      "low_all_time": 123,
      "high_all_time": 123,
      "low_all_time_at": "<string>",
      "high_all_time_at": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
slug
string | null

Coin slug (e.g. 'bitcoin'). Provide either slug or id

Example:

"bitcoin"

id
integer | null

Coin numeric id (e.g. 1 for Bitcoin). Provide either slug or id

Required range: x >= 1
Example:

1

Response

Successful Response

id
integer
required
name
string
required
symbol
string
required
@type
string
default:@coinmarketcap_coin
alias
string | null
category
string | null
description
string | null
image
string | null
status
string | null
is_audited
boolean
default:false
date_added
string | null
date_launched
string | null
watch_count
integer | null
holder_count
integer | null
daily_active_holder_count
integer | null
tags
CoinmarketcapTag · object[]
platforms
CoinmarketcapPlatform · object[]
urls
CoinmarketcapUrls · object
statistics
CoinmarketcapCoinStatistics · object