GET
/
coins
/
{coinId}
cURL
curl --request GET \
  --url https://openapiv1.coinstats.app/coins/{coinId} \
  --header 'X-API-KEY: <api-key>'
{
  "id": "<string>",
  "icon": "<string>",
  "name": "<string>",
  "symbol": "<string>",
  "rank": 123,
  "price": 123,
  "priceBtc": 123,
  "volume": 123,
  "marketCap": 123,
  "availableSupply": 123,
  "totalSupply": 123,
  "fullyDilutedValuation": 123,
  "priceChange1h": 123,
  "priceChange1d": 123,
  "priceChange1w": 123,
  "websiteUrl": "<string>",
  "redditUrl": "<string>",
  "twitterUrl": "<string>",
  "contractAddress": "<string>",
  "contractAddresses": [
    {
      "blockchain": "<string>",
      "contractAddress": "<string>"
    }
  ],
  "decimals": 123,
  "explorers": [
    "<string>"
  ],
  "liquidityScore": 123,
  "volatilityScore": 123,
  "marketCapScore": 123,
  "riskScore": 123,
  "avgChange": 123
}
1 credit per request
Returns detailed information about a specific cryptocurrency using coinId.

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Path Parameters

coinId
string
required

The identifier of coin, which you received from /coins call response.

Query Parameters

currency
string
Example:

"USD"

Response

200
application/json

Get Coin with global avg prices

The response is of type object.