Webhook Notification
Webhook Configuration
{
"url": "https://example.com",
"webhook": "https://your-webhook-url.com/endpoint"
}Webhook Request Details
Headers
Header
Value
Payload Structure
{
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "completed",
"url": "https://example.com",
"timestamp": 1635545600,
"content": {
"txt": "Extracted text content...",
"markdown": "# Markdown content...", // If markdown was requested
"meta": {
"title": "Page Title",
"description": "Meta description...",
"og:image": "https://example.com/image.jpg",
// ... other meta tags
},
"schema": [
// Array of schema.org structured data
{
"type": "Article",
"properties": {
"headline": "Article Title",
"datePublished": "2023-01-01"
}
}
],
"images": [
{
"url": "https://example.com/image.jpg",
"alt": "Image description",
"title": "Image title"
}
],
"links": [
{
"text": "Link text",
"url": "https://example.com/link",
"type": "internal",
"location": 0
}
]
},
"llm_output": { // Only present if LLM processing was requested
// Structured JSON based on the provided prompt
}
}Webhook Behavior
Retry Policy
Success Criteria
Error Handling
Testing Webhooks
Last updated