Gold price quote
/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
ISO 3166-1 alpha-2, any case. An unassigned code prices as unknown (list).
Response Body
False only for a country Elaichi cannot sell to — Checkout refuses it with region_unavailable.
ISO 3166-1 alpha-2 the price is based on, or null when unknown (which prices as list).
Lowercase ISO 4217 the gold amounts are in.
Discount off list, 0–60.
Per-seat price for one cycle in currency minor units — exactly what Checkout charges. year is the year total.
1 property
1 property
List (t0) price to show the discount against: in currency when list price is set in it, else USD. Display only.
2 properties
1 property
1 property
tier !== "t0".
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())