HYBRID-CHAINDEVELOPERS
DOCUMENTATIONv2
GET

Digital assets

List assets

/api/v2/assets
AUTHENTICATIONNone · publicAUTHORITATIVE OWNERasset-registry-serviceCONTRACT AUTHORITYGenerated Rust OpenAPISTATUSSource ready · production listed

PURPOSE + BUSINESS CONTEXT

List published asset identities, exact supply projections, lifecycle state, and collection membership.

WHEN THIS CALL IS USEFUL

Use this implemented public catalog to discover published tokens and digital assets by lifecycle, classification, identifier, name, symbol, or description before selecting a specific asset.

OUTCOME · Discover

What changes

Read-only, public, minimized projection. It cannot create an asset, reveal private drafts or holders, issue supply, produce a quote, calculate buying power, redeem holdings, create a listing, move value, or grant authority.

WHY IT MATTERS

  • Gives people and agents a contract-backed way to discover assets.
  • Lets clients verify asset identity and provenance without treating display metadata or portfolio visibility as issuance or trading authority.

ISOLATION + AUTHORITY

Issuer, collection, asset, mint, proof, owner, network, supply, metadata, custody, marketplace, and trading boundaries remain distinct. Reading an asset or proof cannot issue, mint, transfer, list, value, or trade it; current trading and matching controls remain frozen unless separately approved.

BEFORE YOU CALL

  • No bearer credential is required; apply bounded filters and canonical public identifiers where the contract provides them.
  • Use the live OpenAPI schema as the authority for the exact request shape and response model.
  • Resolve the canonical asset or collection identifier, issuer, network, lifecycle, supply, and required proof freshness.

WHAT TO DO NEXT

  • Select one canonical identifier from the response and open its detail operation when the live contract exposes one.
  • Verify issuer, network, collection, supply, mint, proof, and lifecycle commitments together before presenting or acting on the asset.

AGENT GUIDANCE

  • Use assets only for the purpose and lifecycle stage described by this operation; do not treat it as authority for an adjacent action.
  • Use the live OpenAPI schema as the authority for the exact request shape and response model.
  • Distinguish declared metadata, issuer identity, collection membership, mint evidence, supply state, ownership or custody, market listing, price, transfer, and finality.
  • Use response links and canonical identifiers instead of constructing internal service URLs or scraping the website.
MACHINE CONTRACT

The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.

Open the authoritative production contract

EXTENDED INTEGRATION GUIDANCE

Readable request and response reference

Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.

PARAMETERS

Headers, path, query, and body

NAMELOCATIONPRESENCETYPE / RULES / PURPOSE
cursorqueryOptional

opaque offset cursor · nullableCursor returned by the preceding page; valid only with the same status, asset_type, and q filters.EXAMPLEoffset-24

limitqueryOptional

integer · 1–200 · nullableMaximum public assets to return; defaults to 24.Schema range: 0 to unboundedEXAMPLE24

statusqueryOptional

canonical lifecycle state · max 32 · nullableCase-insensitive exact lifecycle-state filter such as PUBLISHED.EXAMPLEPUBLISHED

asset_typequeryOptional

canonical asset classification · max 64 · nullableCase-insensitive exact classification filter such as SECURITY_TOKEN, FUNGIBLE_TOKEN, CERTIFICATE, or COLLECTIBLE.EXAMPLESECURITY_TOKEN

qqueryOptional

string · 1–200 · nullableOptional case-insensitive search across UUID, name, symbol, and description; maximum 200 characters.EXAMPLEtreasury

X-Request-IDheaderOptional

stringOptional caller correlation identifier. The gateway emits the effective value on the response.

RESPONSES

Status and payload examples

200Canonical resource projection.Read completed · JSON RESPONSE+
{
  "assets": [
    {
      "asset_type": "example-asset-type",
      "asset_uuid": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
      "base_currency": "USD",
      "collection_uuid": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
      "created_at": "2026-09-02T18:30:00Z",
      "decimals": 0,
      "description": "example-description",
      "maximum_supply": "example-maximum-supply",
      "media_uri": "https://example.com/resource",
      "metadata_hash": "example-metadata-hash",
      "minted_supply": "example-minted-supply",
      "name": "example-name",
      "published_at": "2026-09-02T18:30:00Z",
      "status": "example-status",
      "symbol": "example-symbol",
      "updated_at": "2026-09-02T18:30:00Z"
    }
  ],
  "limit": 0,
  "next_cursor": "example-next-cursor"
}
INTEGRATION DECISION
CALLER ACTION
Accept the returned representation or receipt, then select one canonical identifier from the response and open its detail operation when the live contract exposes one.
RETRY SAFETY
For another page, send the returned opaque cursor unchanged with the same filters. Restart without a cursor when a new snapshot is required.
STATE RECONCILIATION
Use returned identifiers and versions as the comparison point for later reads. Re-read market status, owner-scoped order or position state, Core collateral reservation, and settlement receipt; never treat shadow NXG evidence as authority.
422Cursor, limit, status, asset type, or search validation failedRequest must change · JSON RESPONSE+
{
  "code": "invalid_credentials",
  "message": "the supplied Hybrid credential is invalid"
}
INTEGRATION DECISIONinvalid_credentials
CALLER ACTION
Rebuild the request from the live OpenAPI operation and correct the rejected method, media type, header, parameter, or body field.
RETRY SAFETY
Do not retry the same invalid request. A corrected read may be sent as a new attempt.
STATE RECONCILIATION
Compare the submitted values with the documented constraints before another call. Re-read market status, owner-scoped order or position state, Core collateral reservation, and settlement receipt; never treat shadow NXG evidence as authority.
ESCALATE WHEN
Escalate any ambiguous order or settlement outcome while preserving suspension and Python authority; never enable ingress, publishing, allowlists, markets, or traffic as recovery.
502Core returned an incomplete or invalid asset projectionDependency unavailable or outcome uncertain · JSON RESPONSE+
{
  "code": "invalid_credentials",
  "message": "the supplied Hybrid credential is invalid"
}
INTEGRATION DECISIONinvalid_credentials
CALLER ACTION
Treat the failure as transient and preserve the last known good representation without presenting it as fresh.
RETRY SAFETY
Retry with bounded exponential backoff and jitter; stop after the integration's failure budget is exhausted.
STATE RECONCILIATION
Re-read market status, owner-scoped order or position state, Core collateral reservation, and settlement receipt; never treat shadow NXG evidence as authority.
ESCALATE WHEN
Escalate any ambiguous order or settlement outcome while preserving suspension and Python authority; never enable ingress, publishing, allowlists, markets, or traffic as recovery.
503The authoritative service or read model is unavailable.Dependency unavailable or outcome uncertain · JSON RESPONSE+
{
  "code": "invalid_credentials",
  "message": "the supplied Hybrid credential is invalid"
}
INTEGRATION DECISIONinvalid_credentials
CALLER ACTION
Treat the failure as transient and preserve the last known good representation without presenting it as fresh.
RETRY SAFETY
Retry with bounded exponential backoff and jitter; stop after the integration's failure budget is exhausted.
STATE RECONCILIATION
Re-read market status, owner-scoped order or position state, Core collateral reservation, and settlement receipt; never treat shadow NXG evidence as authority.
ESCALATE WHEN
Escalate any ambiguous order or settlement outcome while preserving suspension and Python authority; never enable ingress, publishing, allowlists, markets, or traffic as recovery.

OPERATIONAL NOTES

Security and lifecycle guarantees

  • Returns the canonical public token and digital-asset catalog. Use asset_type, status, or q to narrow discovery. Quantities and supply values remain exact decimal strings; this read grants no minting, trading, custody, redemption, or settlement authority.
  • The Rust gateway validates the public contract and routes only to the authoritative owner; clients never address internal services directly.
  • The tables and examples are derived from the current gateway source OpenAPI. Re-fetch the deployed OpenAPI before execution; deployment status is shown separately on this page.
  • Only parameters present in the OpenAPI operation are accepted; undocumented query keys fail closed with HTTP 422.
DOCUMENTATION STATUS

This route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.

Verify the exact production OpenAPI operation Return to the V2 directory