Skip to content
AI-ready version:

Supported Currencies

Description

This API retrieves a list of all the currencies supported by the platform in ISO 4217 format.


Endpoint

GET https://impact.dots.eco/api/v1/supported-currencies

This endpoint does not require any parameters or authentication.


Headers

Header Name Value Description
Content-Type application/json Required for all requests.

Example Request

Minimal Request

curl --location --request GET 'https://impact.dots.eco/api/v1/supported-currencies' \
--header 'Content-Type: application/json'

Responses

Example Successful Response

If the request is successful, the API returns a list of supported currency codes.

Response Body

{
  "object": "list",
  "data": [
    "GBP",
    "EUR",
    "CAD",
    "BGN",
    "DKK",
    "HUF",
    "MXN",
    "PLN",
    "SEK",
    "CHF",
    "ARS",
    "BRL",
    "CLP",
    "COP",
    "PEN",
    "USD"
  ]
}

Response Fields

Field Type Description
object string Specifies the type of the returned object (e.g., "list").
data array An array containing supported currency codes in ISO 4217 format.

HTTP Status Code

Code Description
200 Request completed successfully.

Notes

  • This endpoint does not require authentication, query parameters, or any additional headers beyond Content-Type.
  • The data field includes a list of currency codes in standard ISO 4217 format.