0Bit Documentation

Assets API

Read asset capabilities, validate target tokens, and connect 0Asset activity to sessions, pools, scan records, mint/burn events, and settlement views.

The Assets API page explains how integrations should use asset capability information and asset-related records. It is not a live reserve attestation, a legal support matrix, or a guarantee that every 0Asset is available in every environment.

0Gate exposes public-candidate capability reads for supported crypto assets. The broader docs also use 0Assets such as 0EUR, 0BRL, 0NGN, 0COP, and 0MXN to explain swaps, mint/burn records, pool activity, settlement-aware records, and 0Pools Scan views.

What this page covers

  • Reading supported asset capability data.
  • Validating target assets before session or quote creation.
  • Mapping asset symbols into 0Gate, 0Pools, 0Base, 0Link, and 0Pools Scan.
  • Avoiding unsupported availability, reserve, or legal claims.
  • Logging asset, network, request, and event identifiers for reconciliation.

Asset capability endpoints

MethodPathPurposeAuth
GET/capabilities/assetsList supported crypto assets for the current configuration.Secret key from your server.
GET/capabilities/assets/{symbol}Retrieve one asset by symbol, such as USDT.Secret key from your server.
curl -X GET https://gate-api-sandbox.0bit.app/v1/capabilities/assets \
  -H "Authorization: Bearer sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Capability reads are planning inputs. Use them to decide what to show or validate, then create the actual session, quote, payment, or scan query through the product-specific flow.

Asset model

ConceptMeaningExample
Asset symbolThe asset identifier shown in product docs.USDT, 0EUR, 0BRL, 0NGN, 0COP, 0MXN.
NetworkThe supported network or rail context where relevant.arbitrum, or another configured network value.
Fiat referenceThe fiat currency an 0Asset example references.0EUR references EUR.
Capability recordProduct/environment view of what can be selected.Asset appears in a capability response.
Activity recordEvent or transaction showing asset movement.Swap, mint, burn, pool transaction, settlement record.

Product use

ProductHow assets appear
0GateTarget tokens and asset support can constrain hosted buy/sell/swap sessions.
0PoolsAsset pairs, quote assets, networks, fee fields, trade status, and pool activity.
0BasePayment objects, ledgers, reports, accounts, and transaction records can carry asset context.
0LinkLinks may carry asset-related payment, invoice, account, asset, swap, or transaction references without exposing internal routing.
0Pools ScanExplorer-style views show transaction, swap, mint/burn, and asset activity records.

Validation pattern

  1. Read current capability data for the environment.
  2. Check the asset symbol, network, amount, side, and product entitlement.
  3. Create the session, quote, payment object, or link from the server.
  4. Store asset symbol, network, object id, request id, and your partner reference.
  5. Reconcile the final status through signed webhooks, trusted API reads, scan records, or settlement reports.

Public documentation boundary

Public asset docs may explain:

  • Asset symbols used in examples.
  • Capability reads and validation.
  • Product-specific places where asset fields appear.
  • Mint/burn and settlement lifecycle concepts at a high level.
  • Scan visibility for asset activity.

Public asset docs must not claim:

  • Legal reserve status.
  • Guaranteed redemption timing.
  • Universal regional availability.
  • Provider or treasury details.
  • Private bank rails.
  • Contractual support for every asset/corridor.

On this page