Returns list of partner's authorized assets.

GET /assets

Responses

  • 401

    API key is missing or invalid.

  • 404

    Requested resource was not found.

  • 200

    OK

    Hide response attributes Show response attributes array[object]
    • id string
    • name string Required
    • description string
    • details object Required

      protocol specific asset meta data, e.g. stellar asset would have asset_code, asset_issuer

    • protocol string Required

      e.g. stellar, ethereum, etc

    • network string Required

      e.g. mainnet, testnet, or a network ID for Ethereum.

  • 500

    Unexpected server error. Technical team is always notified when server error occurs, however if the issue is persitent, please reach out with a support request.

GET /assets
curl \
 -X GET https://custody.digitalassets-1754.eu/api/v1/assets \
 -H "X-API-Key: $API_KEY"
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "description": "string",
    "details": {},
    "protocol": "string",
    "network": "string"
  }
]
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "description": "string",
    "details": {},
    "protocol": "string",
    "network": "string"
  }
]