API Reference

Endpoints

POST /api/extract

Extract structured data from unstructured text.

Request Body

{
  "text": string,
  "model": string, // optional
  "format": "json" | "xml" // optional
}

Response

{
  "data": object,
  "metadata": {
    "model": string,
    "processingTime": number
  }
}