POST /api/coinmarketcap/coins
Price: 5 credits
Get full details and market data for a cryptocurrency by its slug or numeric id
Get the full profile of a cryptocurrency by its CoinMarketCap slug (e.g. 'bitcoin') or numeric id (e.g. 1). Returns name, symbol, description, category, image, tags, official links (website, source code, explorers, socials), the platforms/contracts it is issued on, and rich statistics: current price, market cap and rank, fully diluted market cap, market cap dominance, trading volume (24h/7d/30d), supply figures, 24h and 52-week high/low, all-time high/low with timestamps, and price change percentages over multiple windows.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)slug string nullable — Coin slug (e.g. 'bitcoin'). Provide either slug or id (examples: "bitcoin")id integer nullable — Coin numeric id (e.g. 1 for Bitcoin). Provide either slug or id (examples: 1; min: 1)@type string (default: "CoinmarketcapCoin")id integer requiredname string requiredsymbol string requiredalias string nullablecategory string nullabledescription string nullableimage string nullablestatus string nullableis_audited boolean (default: false)date_added string nullabledate_launched string nullablewatch_count integer nullableholder_count integer nullabledaily_active_holder_count integer nullabletags array (default: [])@type string (default: "CoinmarketcapTag")slug string requiredname string requiredcategory string nullableplatforms array (default: [])@type string (default: "CoinmarketcapPlatform")id integer nullablename string nullablechain_id integer nullablecontract_address string nullableexplorer_url string nullableurls object nullable@type string (default: "CoinmarketcapUrls")website array (default: [])technical_doc array (default: [])explorer array (default: [])source_code array (default: [])message_board array (default: [])chat array (default: [])announcement array (default: [])reddit array (default: [])facebook array (default: [])twitter array (default: [])statistics object nullable@type string (default: "CoinmarketcapCoinStatistics")price number nullableprice_change_percentage_1h number nullableprice_change_percentage_24h number nullableprice_change_percentage_7d number nullableprice_change_percentage_30d number nullableprice_change_percentage_60d number nullableprice_change_percentage_90d number nullableprice_change_percentage_1y number nullableprice_change_percentage_all number nullableytd_price_change_percentage number nullablemarket_cap number nullablemarket_cap_change_percentage_24h number nullablefully_diluted_market_cap number nullablemarket_cap_dominance number nullablerank integer nullablevolume_rank integer nullablecirculating_supply number nullabletotal_supply number nullablemax_supply number nullableturnover number nullablevolume_24h number nullablevolume_7d number nullablevolume_30d number nullablelow_24h number nullablehigh_24h number nullablelow_52w number nullablehigh_52w number nullablelow_all_time number nullablehigh_all_time number nullablelow_all_time_at string nullablehigh_all_time_at string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — Coin not found Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.