Skip to main content
GET
/
billing
/
org
/
v1
/
currencies
/
{id}
Get a single Currency
curl --request GET \
  --url https://api.gcore.com/billing/org/v1/currencies/{id} \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "char_code": "<string>",
  "number_code": -1,
  "name_en": "<string>",
  "symbol": "<string>"
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

id
integer
required

Response

200 - application/json
id
integer
required
char_code
string
required

Currency iso4217 char code

Maximum length: 3
name_en
string
required

Currency name english

Maximum length: 255
number_code
integer | null

Currency iso4217 number code

Required range: -2147483648 <= x <= 2147483647
symbol
string | null

Currency symbol, for example '$'

Maximum length: 10