Data types

The following standards and format for our data types apply to all our APIs.

📘

Localization support

Our platform is only supported in the US, UK, and Canada at this time and includes the following data types:

  • Currency: USD , CAD, and GBP
  • Country: USA , CAN, and GBR

Date and time

Date and datetime field values use the standard ISO 8601 format, excluding milliseconds, and are retuned in UTC (Coordinated Universal Time). For example, December 11, 2019 at 08:15:00 is returned as 2019-12-11T08:15:00Z.

{
  "date_start":"2019-12-11T12:07",
  "dob":"1954-12-26"
}

Currency

Our currency field values use the standard three-letter ISO 4217 currency code. We only support USD (United States), GBP (United Kingdom) and CAD (Canada) currency at this time.

{
  "currency": "CAD"
}

Amount

Our amounts are returned in cents using the ISO 4217 standard. For example, 1000 represents $10 USD and CAD, or £10 GBP.

{
  "amount": 6100
}

Country and address

Countries are returned in the three-letter ISO 3166-1 alpha-3 standard format. Our examples include USA for the United States, GBR for the United Kingdom and CAN for Canada.

}  
  "country_code":"CAN"
}