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

Currency

Currency endpoints

Get the list of all currenties

get
Authorizations
PRIVATE-TOKENstringRequired
Responses
200

OK

application/json
idinteger · integerRead-onlyRequired

Currency ID

namestringRead-onlyRequired

Currency Name

signstringOptional

Currency Sign

conversionRateToEuronumber · floatRead-onlyRequired

Exchange rate to Euro

decimalsinteger · integerRead-onlyRequired

Number of decimals

get/v3/currency
GET /v3/currency HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "name": "text",
    "sign": "text",
    "conversionRateToEuro": 1,
    "decimals": 1
  }
]

Last updated

Was this helpful?