GET /api/v1/assets/{symbol}/price
Returns the current price for a cryptocurrency asset.
Authentication​
None. This is a public endpoint.
Request​
Path Parameters​
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Asset 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"
}
| Field | Type | Description |
|---|---|---|
id | integer | Asset ID |
symbol | string | Asset symbol |
name | string | Asset display name |
asset_type | string | Asset type (e.g. "crypto") |
price | number | Current price in USD |
price_updated_at | string (ISO 8601) | When the price was last updated |
created_at | string (ISO 8601) | When the asset record was created |
Errors​
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Unknown asset symbol |
| 500 | internal_error | Server failed to retrieve price |