For the complete documentation index, see llms.txt. This page is also available as Markdown.

Currency

The Currency object represents a currency used by the sellers to invoice their products.

This object contains the following attributes:

Field
Type
Description

id

string, core

(Read-only) Primary identifier for the currency.

name

string, core

The currency name.

code

string, core

The currency's ISO code.

icon

string

The icon to be shown in grids and info cards.

precision

integer

The number of decimals supported by the currency.

statistics

object

Represents the statistics object.

status

string

Indicates whether the item is active or deleted.

audit

object

(Read-only) Represents the audit object.

revision

integer, core

Represents the entity revision number.

Statistics object

Field
Type
Description

sellerCount

integer

(Read-only) Number of sellers using this currency.

pairCount

integer

(Read-only) Number of pairs that use this currency.

Example

CURRENCY OBJECT
{
  "id": "CUR-1671",
  "name": "Euro",
  "code": "EUR",
  "precision": 2,
  "status": "Active",
  "statistics": 
  {
    "sellerCount": 35,
    "pairCount": 344,  
  },
  "icon": "/v1/exchange/currencies/CUR-1671/icon",
  "revision": 1
}

Last updated

Was this helpful?