Currencies
The Currencies API allows you to retrieve a list of all available currencies supported by Pipeback. This endpoint is essential for financial features, pricing, and international commerce.
The Currency Object
- Name
id- Type
- uuid
- Description
Unique identifier for the currency.
- Name
code- Type
- string
- Description
ISO 4217 currency code (e.g.,
USD,EUR,BRL,GBP).
- Name
name- Type
- string
- Description
Full name of the currency (e.g.,
US Dollar,Euro,Brazilian Real).
- Name
symbol- Type
- string
- Description
Currency symbol (e.g.,
$,€,R$,£).
- Name
label- Type
- string
- Description
Display label for the currency, typically in format "Symbol Code" (e.g.,
$ USD,€ EUR,R$ BRL).
GET/app/currencies
List All Currencies
This endpoint returns a list of all available currencies supported by Pipeback, ordered alphabetically by name.
This endpoint requires authentication with both Authorization and x-workspace-id headers.
Request
GET
/app/currenciescurl https://api.pipeback.com/app/currencies \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "x-workspace-id: YOUR_WORKSPACE_ID"
Response
{
"data": [
{
"id": "9d5f3d04-3c71-5e2b-9b4f-2c3d4e5f6g7a",
"code": "BRL",
"name": "Brazilian Real",
"symbol": "R$",
"label": "R$ BRL"
},
{
"id": "9d5f3d04-3c71-5e2b-9b4f-2c3d4e5f6g7b",
"code": "EUR",
"name": "Euro",
"symbol": "€",
"label": "€ EUR"
},
{
"id": "9d5f3d04-3c71-5e2b-9b4f-2c3d4e5f6g7c",
"code": "GBP",
"name": "British Pound",
"symbol": "£",
"label": "£ GBP"
},
{
"id": "9d5f3d04-3c71-5e2b-9b4f-2c3d4e5f6g7d",
"code": "USD",
"name": "US Dollar",
"symbol": "$",
"label": "$ USD"
}
]
}