Xverter/ api
Documentation

Your first extraction
in 60 seconds.

1. Authenticate

Grab a key from the dashboard. All requests use a Bearer token in the Authorization header.

authbash
export XVERTER_KEY="xv_live_..."

2. POST /extract

Send raw text plus your JSON Schema. Xverter returns validated JSON matching your shape — or a typed error.

terminalbash
curl https://api.xverter.com/extract \
  -H "Authorization: Bearer xv_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "text": "John Doe (john@acme.co) signed for $45k.",
    "schema": {
      "type": "object",
      "properties": {
        "name":  { "type": "string" },
        "email": { "type": "string" },
        "value": { "type": "number" }
      }
    }
  }'

3. Use the result

Type-safe, schema-compliant, ready for your database.

response.jsonjson
{
  "name": "John Doe",
  "email": "john@acme.co",
  "value": 45000
}

Full API reference, SDK docs, and recipes are coming online.