Skip to main content
POST
/
api
/
coinmarketcap
/
coins
/
search
/coinmarketcap/coins/search
curl --request POST \
  --url https://api.anysite.io/api/coinmarketcap/coins/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "convert": "USD"
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "symbol": "<string>",
    "@type": "@coinmarketcap_listing_coin",
    "alias": "<string>",
    "rank": 123,
    "image": "<string>",
    "is_audited": false,
    "tags": [],
    "market_pair_count": 123,
    "circulating_supply": 123,
    "total_supply": 123,
    "max_supply": 123,
    "date_added": "<string>",
    "convert": "<string>",
    "price": 123,
    "volume_24h": 123,
    "market_cap": 123,
    "fully_diluted_market_cap": 123,
    "market_cap_dominance": 123,
    "turnover": 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,
    "ytd_price_change_percentage": 123,
    "volume_change_percentage_24h": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of coins to return, ranked by market cap

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
convert
enum<string>
default:USD

Currency to denominate price, volume and market cap in

Available options:
USD,
EUR,
GBP,
JPY,
BTC,
ETH

Response

Successful Response

id
integer
required
name
string
required
symbol
string
required
@type
string
default:@coinmarketcap_listing_coin
alias
string | null
rank
integer | null
image
string | null
is_audited
boolean
default:false
tags
string[]
market_pair_count
integer | null
circulating_supply
number | null
total_supply
number | null
max_supply
number | null
date_added
string | null
convert
string | null
price
number | null
volume_24h
number | null
market_cap
number | null
fully_diluted_market_cap
number | null
market_cap_dominance
number | null
turnover
number | null
price_change_percentage_1h
number | null
price_change_percentage_24h
number | null
price_change_percentage_7d
number | null
price_change_percentage_30d
number | null
price_change_percentage_60d
number | null
price_change_percentage_90d
number | null
price_change_percentage_1y
number | null
ytd_price_change_percentage
number | null
volume_change_percentage_24h
number | null