Market Reference
Retrieve live market metrics for trading pairs enabled for the authenticated CAMS tenant.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pairstringOptionalExample:
Comma-separated trading pairs. When omitted, returns all enabled pairs for the tenant.
BTC-USD,ETH-AEDquoteCurrencystring · enumOptionalExample:
Quote currency for metrics. Day-1 supported values: USD, AED.
USDPossible values: limitstring · integerOptionalExample:
Maximum number of records to return.
50offsetstring · integerOptionalExample:
Pagination offset.
0Responses
200
Successful response
application/json
pairstringOptionalExample:
BTC-USDlastUpdatedstring · date-timeOptionalExample:
2026-02-24T21:05:00ZmarketCapstringOptionalExample:
1350450000000.50globalVolume24hstringOptionalExample:
45000000000.00priceChange24hstringOptionalExample:
2.15priceChange24hPercentstringOptionalExample:
1.45allTimeHighPricestringOptionalExample:
73750.00allTimeHighTimestampstring · date-timeOptionalExample:
2024-03-14T00:00:00ZallTimeLowPricestringOptionalExample:
65.53allTimeLowTimestampstring · date-timeOptionalExample:
2013-07-05T00:00:00Z400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get/v1/market-data/metrics
GET /api/v1/market-data/metrics HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"pair": "BTC-USD",
"lastUpdated": "2026-02-24T21:05:00Z",
"marketCap": "1350450000000.50",
"globalVolume24h": "45000000000.00",
"priceChange24h": "2.15",
"priceChange24hPercent": "1.45",
"allTimeHighPrice": "73750.00",
"allTimeHighTimestamp": "2024-03-14T00:00:00Z",
"allTimeLowPrice": "65.53",
"allTimeLowTimestamp": "2013-07-05T00:00:00Z"
}
]Retrieve global coin reference metadata for assets enabled for the authenticated CAMS tenant.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
assetSymbolstringOptionalExample:
Comma-separated asset symbols. When omitted, returns all enabled assets for the tenant.
BTC,ETHlimitstring · integerOptionalDefault:
Maximum number of records to return.
50Example: 50offsetstring · integerOptionalDefault:
Pagination offset.
0Example: 0Responses
200
Successful response
application/json
assetSymbolstringRequiredExample:
BTCassetNamestringRequiredExample:
BitcoinassetDescriptionstringRequiredExample:
Bitcoin is a decentralized digital currency...assetTypestring · enumRequiredExample:
cryptoPossible values: circulatingSupplystringRequiredExample:
19650000totalSupplystring · nullableRequiredExample:
19650000maxSupplystring · nullableRequiredExample:
21000000lastUpdatedstring · date-timeRequiredExample:
2026-02-24T21:05:00Z400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get/v1/market-data/reference
GET /api/v1/market-data/reference HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"assetSymbol": "BTC",
"assetName": "Bitcoin",
"assetDescription": "Bitcoin is a decentralized digital currency...",
"assetType": "crypto",
"circulatingSupply": "19650000",
"totalSupply": "19650000",
"maxSupply": "21000000",
"lastUpdated": "2026-02-24T21:05:00Z"
}
]Last updated