Partner Details

Retrieve partner account information

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Retrieve details about your partner account, including supported currencies and their configurations.

Request

GET /partner

Example Response

{
  "id": "ptr_abc123def456",
  "name": "Your Company Name",
  "currencies": [
    {
      "code": "BTC",
      "name": "Bitcoin",
      "type": "crypto",
      "decimal_places": 8
    },
    {
      "code": "ETH",
      "name": "Ethereum",
      "type": "crypto",
      "decimal_places": 18
    },
    {
      "code": "USD",
      "name": "US Dollar",
      "type": "fiat",
      "decimal_places": 2
    }
  ],
  "settlement_currencies": ["USD"],
  "products": [
    {
      "code": "crypto_buy_sell",
      "active": true
    },
    {
      "code": "crypto_swap",
      "active": true
    }
  ]
}

Response Fields

FieldTypeDescription
idstringUnique partner identifier
namestringPartner account name
currenciesarrayList of supported currencies
currencies[].codestringCurrency code (e.g., BTC, USD)
currencies[].namestringCurrency display name
currencies[].typestringCurrency type: crypto or fiat
currencies[].decimal_placesintegerNumber of decimal places for the currency
settlement_currenciesarrayCurrencies available for settlement
productsarrayEnabled products for the partner

Notes

Use the decimal_places value to configure currency formatting and precision in your application.

Responses

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json