Skip to main content

GET /api/v1/assets/{symbol}/price

Returns the current price for a cryptocurrency asset.

Authentication​

None. This is a public endpoint.

Request​

Path Parameters​

ParameterTypeRequiredDescription
symbolstringYesAsset symbol (e.g., BTCUSDT, ETHUSDT, SOLUSDT)

Example​

curl -X GET https://intotes.com/api/v1/assets/BTCUSDT/price

Response​

200 OK​

Returns the full Asset object.

{
"id": 1,
"symbol": "BTCUSDT",
"name": "Bitcoin",
"asset_type": "crypto",
"price": 84532.17,
"price_updated_at": "2026-04-04T14:30:00Z",
"created_at": "2026-01-01T00:00:00Z"
}
FieldTypeDescription
idintegerAsset ID
symbolstringAsset symbol
namestringAsset display name
asset_typestringAsset type (e.g. "crypto")
pricenumberCurrent price in USD
price_updated_atstring (ISO 8601)When the price was last updated
created_atstring (ISO 8601)When the asset record was created

Errors​

StatusCodeDescription
404not_foundUnknown asset symbol
500internal_errorServer failed to retrieve price