latestOpenAPI 3.0.32026-08-20146131.7 MB

672b1916ba61

Asset Profiles

List asset profiles

Lists asset profiles for the authenticated organization and project.

get/v1/issuance/asset-profiles

Query parameters

pageinteger

Page number (1-based).

Example:1

Page number (1-based).

pageSizeinteger

Items per page (max 100).

Example:20

Items per page (max 100).

includeArchivedboolean

Include archived asset profiles in results.

Include archived asset profiles in results.

category'generic' | 'stablecoin' | 'tokenized_security'

Filter by asset category.

Example:stablecoin

Filter by asset category.

tokenIdsstring

Restrict results to these token ids as a comma-separated list (max 100). Lets a client hydrate exactly the tokens on the page it is rendering.

Example:tok_abc123,tok_def456

Restrict results to these token ids as a comma-separated list (max 100). Lets a client hydrate exactly the tokens on the page it is rendering.

Headers

x-project-idstring

Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

Example:prj_example

Selects the active project for this request. Required for session/dashboard callers. Ignored when authenticating with an API key, whose scope is fixed to the key's project.

Response

Asset profiles list

Example response

{
  "data": {
    "assetProfiles": [
      {
        "id": "asset_profile_example",
        "organizationId": "org_example",
        "projectId": "prj_example",
        "tokenId": "tok_example",
        "assetCategory": "stablecoin",
        "assetType": "fiat_backed",
        "assetTypeVersion": 2,
        "issuanceMetadata": {
          "asset": {
            "name": "Acme USD",
            "issuerName": "Acme Financial Inc.",
            "pegCurrency": "USD",
            "website": "https://acme.example"
          },
          "compliance": {
            "transferRestrictions": "reg_d"
          },
          "chain": {
            "decimals": 6
          },
          "custom": {
            "customer": {
              "internalDeskId": "FX-22"
            },
            "integration": {}
          },
          "visibility": {
            "public": [
              "asset.name",
              "asset.issuerName",
              "asset.pegCurrency",
              "chain.decimals"
            ]
          },
          "settings": {
            "version": 1,
            "selected": {
              "pauseTransfers": {},
              "freezeAccounts": {},
              "transferFee": {
                "params": {
                  "basisPoints": 50,
                  "maxFee": "100"
                }
              }
            }
          }
        },
        "publicMetadata": {
          "asset": {
            "name": "Acme USD",
            "issuerName": "Acme Financial Inc.",
            "pegCurrency": "USD"
          },
          "chain": {
            "decimals": 6
          }
        },
        "status": "active",
        "createdBy": "usr_example",
        "createdAt": "2025-01-01T00:00:00.000Z",
        "updatedAt": "2025-01-02T00:00:00.000Z"
      }
    ],
    "total": 7,
    "page": 1,
    "pageSize": 20
  },
  "meta": {
    "requestId": "req_example",
    "timestamp": "2025-01-01T00:00:00.000Z"
  }
}