Skip to main content
GET
/
analytics
/
assets
/
{arcId}
/
marketcap
Asset Market Cap
curl --request GET \
  --url https://api.amberdata.com/blockchains/analytics/assets/{arcId}/marketcap \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "data": [
      {
        "arcId": "AMB:BTC000000000",
        "arcName": "Bitcoin",
        "arcSymbol": "BTC",
        "circulatingSupply": 19594996.16066135,
        "priceUSD": 46189.23640263,
        "marketCap": 905077909973.43,
        "timestamp": "2024-01-10T00:00:00.000Z"
      }
    ],
    "metadata": {}
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

arcId
string
required

The arcId of the asset (e.g., AMB:BTC000000000). Use the associated information endpoint to retrieve the arcId.

Query Parameters

startDate
string<date-time>

[Optional] Inclusive start date (default now() - 7 days).

endDate
string<date-time>

[Optional] Exclusive end date (default today).

Response

200 - application/json

Successful request

status
integer
required

HTTP status code

Example:

200

title
string
required

Status title

Example:

"OK"

description
string
required

Status description

Example:

"Successful request"

payload
object
required