Skip to content
GET /pricing

Public, unauthenticated. The Gold per-seat price for a country, after location-based parity pricing. Without `country` the caller's own location is used and the response is `Cache-Control: private, no-store`; with it the response is `public, max-age=3600`.

Query Parameters

countrystring

ISO 3166-1 alpha-2, any case. An unassigned code prices as unknown (list).

Response Body

availableboolean

False only for a country Elaichi cannot sell to — Checkout refuses it with region_unavailable.

countrystring,null

ISO 3166-1 alpha-2 the price is based on, or null when unknown (which prices as list).

currencystring

Lowercase ISO 4217 the gold amounts are in.

discount_pctinteger

Discount off list, 0–60.

goldobject

Per-seat price for one cycle in currency minor units — exactly what Checkout charges. year is the year total.

monthobject
1 property
unit_amountinteger
yearobject
1 property
unit_amountinteger
listobject

List (t0) price to show the discount against: in currency when list price is set in it, else USD. Display only.

currencystring
goldobject
2 properties
monthobject
1 property
unit_amountinteger
yearobject
1 property
unit_amountinteger
regionalboolean

tier !== "t0".

tierstring

Tier id: t0 (list) to t4 by GDP band, or a country tier such as in (India). Compare by discount_pct.

curl -X GET 'https://api.elaichi.ai/pricing' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/pricing', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/pricing"
headers = {
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())