jsonformtable
Developers

Quickstart

Get from zero to a working API call in under five minutes.

1. Create an API key

Sign in, open the dashboard and create a key. Copy it — it is only shown once.

2. Create your first collection

Collections are containers for JSON records. Name them anything.

curl -X POST https://api.jsonformtable.com/api/collections \
  -H "X-API-Key: jft_live_xxxxx" \
  -H "Content-Type: application/json" \
  -d '{ "name": "products", "description": "Catalog items" }'

3. Insert a record

POST any JSON object — strings, numbers and booleans are indexed automatically.

curl -X POST https://api.jsonformtable.com/api/collections/COL_ID/records \
  -H "X-API-Key: jft_live_xxxxx" \
  -H "Content-Type: application/json" \
  -d '{ "sku": "ABC-1", "price": 19.99, "active": true }'

4. Query with filters

Filter, paginate and sort with simple query parameters.

curl "https://api.jsonformtable.com/api/collections/COL_ID/records?page=1&pageSize=20&filter[active]=true&sort=price&order=desc" \
  -H "X-API-Key: jft_live_xxxxx"