# NetIntel Event Classify

> NetIntel Event Classify is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Classifies a text snippet (caption, post, or article excerpt) as a datable event or not, returning a boolean verdict, confidence score, and reason.

## Facts

- Endpoint: POST https://netintel-production-440c.up.railway.app/event-classify
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-event-classify-468ad4aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I6llINOz9eABriWaz-enl

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability netintel-event-classify-468ad4aa -d '<json body>'
```

Example prompt: Check if this Instagram caption is announcing an upcoming event — the text is: 'Join us this Saturday, July 19th at Rooftop Bar NYC for live jazz and cocktails starting at 7pm!' — it was posted on July 14th in America/New_York timezone.

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.02/call), pay-per-use classifier to determine whether a piece of text describes an upcoming, dateable event — especially useful for filtering social media streams, moderating user submissions, or pre-screening content before adding it to an event calendar. Prefer it over general-purpose LLM prompting when you want a structured JSON verdict (boolean + confidence + reason) with deterministic billing and no API key setup. The posted_at context parameter makes it especially useful when you need to reject past-event recaps automatically.

## Known failure modes

- Text exceeds 10,000 words or 50KB — input validation rejection, no charge
- Missing required 'text' field — 400 validation error, no charge
- Upstream model failure — server error, no charge
- Invalid ISO-8601 posted_at format — validation rejection, no charge
- Invalid IANA timezone string — validation rejection, no charge
- Low confidence classification when text is ambiguous — returns is_event with confidence near 0.5

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns a JSON object with a 'data' field containing: is_event (boolean indicating whether the text describes a classifiable upcoming event), confidence (0–1 float), and reason (a short explanatory string). Also includes meta (model used, e.g. haiku-4.5), grade (letter A–F), score (0–100 numeric), and findings (array of supporting details).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "Caption/post/snippet to classify. Required. Max 10000 words or 50KB."
      },
      "timezone": {
       "type": "string",
       "description": "Optional IANA timezone (e.g. America/Los_Angeles) for date context."
      },
      "posted_at": {
       "type": "string",
       "description": "Optional ISO-8601 timestamp the content was posted — lets the classifier reject past-event recaps (an event whose only date is in the past relative to posted_at is not dateable)."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "object",
       "description": "Minimal verdict: is_event (boolean), confidence (0-1), reason (one short line)."
      },
      "meta": {
       "type": "object"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "findings": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "reason": "specific dated event",
   "is_event": true,
   "confidence": 0.93
  },
  "meta": {
   "model": "haiku-4.5"
  },
  "grade": "A",
  "score": 100,
  "findings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-event-classify-468ad4aa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
