Skip to main content
POST
/
api
/
coinmarketcap
/
coins
/
spotlight
/coinmarketcap/coins/spotlight
curl --request POST \
  --url https://api.anysite.io/api/coinmarketcap/coins/spotlight \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 5,
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "symbol": "<string>",
    "@type": "@coinmarketcap_spotlight_coin",
    "alias": "<string>",
    "rank": 123,
    "status": "<string>",
    "image": "<string>",
    "market_cap": 123,
    "fully_diluted_market_cap": 123,
    "price": 123,
    "price_change_percentage_1h": 123,
    "price_change_percentage_24h": 123,
    "price_change_percentage_7d": 123,
    "price_change_percentage_30d": 123,
    "volume_24h": 123,
    "last_updated_at": "<string>",
    "added_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
category
enum<string>
required

Spotlight category to return

Available options:
trending,
gainers,
losers,
recently_added,
most_visited
count
integer
required

Max number of coins to return

Required range: 1 <= x <= 10
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
symbol
string
required
@type
string
default:@coinmarketcap_spotlight_coin
alias
string | null
rank
integer | null
status
string | null
image
string | null
market_cap
number | null
fully_diluted_market_cap
number | null
price
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
volume_24h
number | null
last_updated_at
string | null
added_at
string | null