Overview
Extract structured data from URLs or content
Credits
3 credits per call
Providers
FirecrawlClaude
SDK Method
client.documents.find(...)
Parameters
urlstring
URL to scrape and extract from.
contentstring
Pre-scraped text content.
extraction_promptstring
What to extract.
schemastring
JSON schema for extraction.
Example Response
{
"success": true,
"data": {
"extracted": {
"main_heading": "Example Domain",
"links": [
{
"text": "Learn more",
"url": "https://iana.org/domains/example"
}
]
},
"source_url": "https://example.com",
"content_length": 167,
"truncated": false
},
"metadata": {
"provider_used": "llm_extraction",
"providers_tried": [
"llm_extraction"
],
"mode_used": null,
"response_time_ms": 1716,
"request_id": "req_bc82d469"
},
"credits_used": 3
}Get Started
Use this API through the O-mega platform. Create an API key in your dashboard, then call the endpoint with your key in the Authorization header.