Docs
Canonical resources

GET /v1/assets/{resourceId}

Get complete asset metadata and current pricing

AvailabilityPrivate Preview
Method and pathGET /v1/assets/{resourceId}
API version1.0.0-private-preview
Base URLhttps://api.torq.finance
AuthenticationAnonymous discovery
IdempotencyNot declared by this operation.
Rate limitsRead x-ratelimit-* and x-request-id response headers. Do not hard-code a quota.

Request examples

terminal
curl -X GET 'https://api.torq.finance/v1/assets/sample_resourceid' \
  -H 'Accept: application/json'
Run a safe sample

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 bodyNone.

Parameters

NameInRequiredType
resourceIdpathYesstring

Responses

StatusMeaningSchema
200Successful responseAssetResource
400Invalid requestTorqApiError
401Authentication requiredTorqApiError
403Insufficient scope or authorityTorqApiError
409State or idempotency conflictTorqApiError
429Rate limit exceededTorqApiError
500Internal failureTorqApiError

200 response schema

AssetResource AssetResource

PropertyTypeRequiredDescription
idstringNo
chainIdintegerNo
addressstringNo
symbolstringNo
namestringNo
decimalsintegerNo
topCategorystring | nullNo
subcategorystring | nullNo
economicsTaxonomyobjectNo
kycRequiredboolean | nullNo
priceUsdstring | nullNo
priceAsOfstring | null (date-time)No
logoUrlstring | nullNo
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

PropertyTypeRequiredDescription
okbooleanYes
codestringYes
messagestringYes
requestIdstringYes
retryablebooleanYes
blockedReasonstring | nullNo
docsUrlstring (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

For retry behavior and blocked-state handling, see Errors and rate limits.