Event extraction / event parsing — turn any caption, announcement, listing, or p
Event extraction / event parsing — turn any caption, announcement, listing, or page text into a normalized calendar event via Claude Haiku. Resolves relative dates ("this Saturday 7pm") against post time + timezone, handles all-day/multi-day, and returns title, start/end, venue, address, city, price, organizer, url. Purpose-built for structured event data (no schema to define); pairs with /event-classify and /calendar/ics.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
917 msmedian answer time
$0.05listed price per call
$0.05price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://netintel.dev/event-extract
| Category | Market data |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 917 ms |
Example input (from the provider)
{
"body": {
"city": "Los Angeles",
"posted_at": "2026-06-24T12:00:00Z",
"text": "Live Jazz Night at The Echo, 1822 Sunset Blvd \u2014 this Saturday 7pm. Free!",
"timezone": "America/Los_Angeles"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"city": {
"description": "Optional city \u2014 helps timezone inference and venue/address disambiguation.",
"type": "string"
},
"posted_at": {
"description": "Optional ISO-8601 timestamp the content was posted \u2014 the anchor for resolving relative dates (\"this Saturday\", \"tonight\"). Strongly recommended.",
"type": "string"
},
"text": {
"description": "Caption/announcement/page text to extract an event from. Required. Max 10000 words or 50KB.",
"type": "string"
},
"timezone": {
"description": "Optional IANA timezone (e.g. America/Los_Angeles) to resolve times against. Inferred from city when absent.",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"data": {
"description": "Normalized event (is_event, confidence, title, starts_at, ends_at, all_day, timezone, venue, address, city, price, url, organizer). For a non-event, is_event=false + reason and all event fields null.",
"type": "object"
},
"findings": {
"type": "array"
},
"grade": {
"type": "string"
},
"meta": {
"type": "object"
},
"score": {
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}