get
https://api.lirium-sandbox.com/v1/partner
Retrieve partner account information
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
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
| Field | Type | Description |
|---|---|---|
| id | string | Unique partner identifier |
| name | string | Partner account name |
| currencies | array | List of supported currencies |
| currencies[].code | string | Currency code (e.g., BTC, USD) |
| currencies[].name | string | Currency display name |
| currencies[].type | string | Currency type: crypto or fiat |
| currencies[].decimal_places | integer | Number of decimal places for the currency |
| settlement_currencies | array | Currencies available for settlement |
| products | array | Enabled products for the partner |
Notes
Use the decimal_places value to configure currency formatting and precision in your application.
