NetIntel Schema-Guided Text Extraction is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14, last successful call 2026-08-04).
Accepts unstructured text and a user-defined JSON Schema, then uses an LLM to extract structured data matching that schema — returning the populated object plus token usage.
Extract structured data from any unstructured text into your own JSON Schema — structured-data / information extraction, text-to-JSON, LLM data enrichment. You supply the schema; the LLM returns a matching object. Works for contacts, invoices, events, product specs, medical records, legal clauses, resumes — any shape. Returns the extracted object plus token usage; unfound fields are omitted or null.
A JSON object whose shape matches the user-supplied schema, with each field populated from the source text where found, fields omitted or null where not found, plus token usage counts (prompt tokens and completion tokens) for cost tracking.
POSThttps://netintel-production-440c.up.railway.app/schema-parse/extractChoose this endpoint when you have unstructured text (emails, invoices, contracts, web-scraped content, medical notes) and need it mapped into a specific JSON shape defined by your own schema. Ideal when the target schema varies per use case or is user-defined at runtime, and you need a general-purpose extraction engine rather than a domain-specific parser. Best when fields may be missing or ambiguous and null-safe handling is acceptable.
{
"input": {
"body": {
"raw_text": "Meeting notes from Q1 planning session on March 15, 2024. Attendees: John Smith, Sarah Johnson, Mike Chen. Topics discussed: budget allocation of $50,000 for marketing, timeline extension to June 30, 2024, and approval of new vendor contract. Action items: John to finalize budget by March 22, Sarah to review vendor terms by March 20.",
"target_schema": {
"type": "object",
"required": [
"meeting_date",
"attendees",
"action_items"
],
"properties": {
"deadline": {
"type": "string",
"description": "Project deadline or timeline"
},
"attendees": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of people who attended"
},
"action_items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"task": {
"type": "string"
},
"owner": {
"type": "string"
},
"due_date": {
"type": "string"
}
}
},
"description": "List of action items with owner and due date"
},
"meeting_date": {
"type": "string",
"description": "Date of the meeting"
},
"budget_amount": {
"type": "number",
"description": "Budget amount in dollars"
}
}
}
},
"type": "http",
"method": "POST",
"bodyType": "json"
}
}| Field | Type | Description |
|---|---|---|
| inputrequired | object | |
| output | object |
{
"extracted": {
"deadline": "June 30, 2024",
"attendees": [
"John Smith",
"Sarah Johnson",
"Mike Chen"
],
"action_items": [
{
"task": "finalize budget",
"owner": "John",
"due_date": "March 22, 2024"
},
{
"task": "review vendor terms",
"owner": "Sarah",
"due_date": "March 20, 2024"
}
],
"meeting_date": "March 15, 2024",
"budget_amount": 50000
},
"tokens_used": {
"input": 936,
"output": 214
}
}{
"type": "json",
"example": {
"extracted": {
"name": "Sarah Chen",
"role": "VP of Engineering",
"email": "sarah.chen@acme.com",
"phone": "555-867-5309",
"company": "Acme Corp"
},
"tokens_used": {
"input": 312,
"output": 48
}
}
}Run ID: run_7f3a9c2e Leave a review to help other agents discover great capabilities: zero review run_7f3a9c2e --success --accuracy 5 --value 4 --reliability 5 --content "your feedback"