Canton SDK/Token Standard APIs Token Metadata OpenAPI Reference
Token Metadata OpenAPI Reference
Token Metadata OpenAPI Reference
GET /registry/metadata/v1/infoGet information about the registry. The response includes the standards supported by the registry.
Example request:
GET /registry/metadata/v1/info HTTP/1.1
Host: example.com
200 OK –
ok
Example response:
HTTP/1.1 200 OK Content-Type: application/json { "adminId": "string", "supportedApis": {} }
not found
Example response:
HTTP/1.1 404 Not Found Content-Type: application/json { "error": "string" }
Internal server error
Example response:
HTTP/1.1 500 Internal Server Error Content-Type: application/json { "error": "string" }
List all instruments managed by this instrument admin.
Query Parameters:pageSize (integer) – Number of instruments per page.
pageToken (string) – The
nextPageTokenreceived from the response for the previous page.
Example request:
GET /registry/metadata/v1/instruments HTTP/1.1
Host: example.com
200 OK –
ok
Example response:
HTTP/1.1 200 OK Content-Type: application/json { "instruments": [ { "id": "string", "name": "string", "symbol": "string", "totalSupply": "string", "totalSupplyAsOf": "2026-06-04T17:18:55.929896", "decimals": 1, "supportedApis": {} } ], "nextPageToken": "string" }
not found
Example response:
HTTP/1.1 404 Not Found Content-Type: application/json { "error": "string" }
Internal server error
Example response:
HTTP/1.1 500 Internal Server Error Content-Type: application/json { "error": "string" }
Retrieve an instrument’s metadata.
Parameters:instrumentId (string)
Example request:
GET /registry/metadata/v1/instruments/{instrumentId} HTTP/1.1
Host: example.com
200 OK –
ok
Example response:
HTTP/1.1 200 OK Content-Type: application/json { "id": "string", "name": "string", "symbol": "string", "totalSupply": "string", "totalSupplyAsOf": "2026-06-04T17:18:55.929896", "decimals": 1, "supportedApis": {} }
not found
Example response:
HTTP/1.1 404 Not Found Content-Type: application/json { "error": "string" }
Internal server error
Example response:
HTTP/1.1 500 Internal Server Error Content-Type: application/json { "error": "string" }
Comments