GET /v1/assets/{resourceId}
Get complete asset metadata and current pricing
| Availability | Private Preview |
|---|---|
| Method and path | GET /v1/assets/{resourceId} |
| API version | 1.0.0-private-preview |
| Base URL | https://api.torq.finance |
| Authentication | Anonymous discovery |
| Idempotency | Not declared by this operation. |
| Rate limits | Read x-ratelimit-* and x-request-id response headers. Do not hard-code a quota. |
Request examples
curl -X GET 'https://api.torq.finance/v1/assets/sample_resourceid' \ -H 'Accept: application/json'
This calls the docs preview and returns sample data shaped by the governed OpenAPI response. It never accepts credentials or changes protocol state.
Run the sample call to inspect a schema-shaped response without credentials or side effects.| Request body | None. |
|---|
Parameters
| Name | In | Required | Type |
|---|---|---|---|
resourceId | path | Yes | string |
Responses
| Status | Meaning | Schema |
|---|---|---|
200 | Successful response | AssetResource |
400 | Invalid request | TorqApiError |
401 | Authentication required | TorqApiError |
403 | Insufficient scope or authority | TorqApiError |
409 | State or idempotency conflict | TorqApiError |
429 | Rate limit exceeded | TorqApiError |
500 | Internal failure | TorqApiError |
200 response schema
AssetResource AssetResource
| Property | Type | Required | Description |
|---|---|---|---|
id | string | No | — |
chainId | integer | No | — |
address | string | No | — |
symbol | string | No | — |
name | string | No | — |
decimals | integer | No | — |
topCategory | string | null | No | — |
subcategory | string | null | No | — |
economicsTaxonomy | object | No | — |
kycRequired | boolean | null | No | — |
priceUsd | string | null | No | — |
priceAsOf | string | null (date-time) | No | — |
logoUrl | string | null | No | — |
Inspect nested properties
id string · optional
chainId integer · optional
address string · optional
pattern: ^0x[a-fA-F0-9]{40}$
symbol string · optional
name string · optional
decimals integer · optional
topCategory string | null · optional
nullable
subcategory string | null · optional
nullable
economicsTaxonomy object · optional
kycRequired boolean | null · optional
nullable
priceUsd string | null · optional
nullable
priceAsOf string | null (date-time) · optional
nullable
logoUrl string | null · optional
nullable
400, 401, 403, 409, 429, 500 response schema
TorqApiError TorqApiError
| Property | Type | Required | Description |
|---|---|---|---|
ok | boolean | Yes | — |
code | string | Yes | — |
message | string | Yes | — |
requestId | string | Yes | — |
retryable | boolean | Yes | — |
blockedReason | string | null | No | — |
docsUrl | string (uri) | No | — |
Inspect nested properties
ok boolean · required
code string · required
minimum length: 1 · maximum length: 200
message string · required
minimum length: 1 · maximum length: 200
requestId string · required
minimum length: 1 · maximum length: 200
retryable boolean · required
blockedReason string | null · optional
nullable
docsUrl string (uri) · optional
Related guides
- Authentication and scopes
- Errors, idempotency, and rate limits
- Canonical state and final completion
- SDK reference
For retry behavior and blocked-state handling, see Errors and rate limits.