# Shipp Sports Live Data Feed

> Shipp Sports Live Data Feed is a paid API for AI agents from platform.shipp.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves one live sports event record (NBA, NFL, NCAAFB, MLB, or Soccer) with optional filtering by timestamp or event ID using natural language filter instructions.

## Facts

- Endpoint: POST https://platform.shipp.ai/api/v1/connections/inline/1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shipp-sports-live-data-feed-6a77b820
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SyM5lBvFFKKMWcY6JjlvI

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 shipp-sports-live-data-feed-6a77b820 -d '<json body>'
```

Example prompt: Pull me the latest NBA game event from Shipp — filter for any game involving the Lakers that happened since 2024-11-01T00:00:00Z.

## When to prefer this

Use this endpoint when you need a single, real-time sports event record from major leagues (NBA, NFL, NCAAFB, MLB, Soccer) with flexible natural language filtering. Ideal for agents that need to poll for the latest game events incrementally using event ID cursors, or that need to apply dynamic, human-readable filters without writing complex query logic. Best suited for streaming or monitoring workflows where one event at a time is sufficient.

## Known failure modes

- Invalid date-time format for 'since' field returns a 400 validation error
- Unknown or malformed 'since_event_id' may return no results or an error
- Ambiguous 'filter_instructions' may return an unexpected or unrelated event
- Payment failure (x402) results in a 402 response and no data
- Rate limiting or quota exceeded may return a 429 error
- No matching events found returns empty or null result

## How this service works

High-quality live data on Sports (NBA, NFL, NCAAFB, MLB, Soccer). Flat-fee endpoint that retrieves 1 events.

## Output

Returns one sports event record from the live feed, filtered according to the provided timestamp, event ID cursor, and/or natural language filter instructions. The event contains game/match data for the relevant sport (NBA, NFL, NCAAFB, MLB, or Soccer).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "since": {
   "type": "string",
   "format": "date-time",
   "description": "Collect data since this timestamp (optional)"
  },
  "since_event_id": {
   "type": "string",
   "description": "Get events only after this ID, switches limit to asc mode. Filtered by since if event occurred before since (optional)"
  },
  "filter_instructions": {
   "type": "string",
   "description": "Natural language instructions describing what to filter for"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/shipp-sports-live-data-feed-6a77b820/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from platform.shipp.ai](https://www.zero.xyz/host/platform.shipp.ai/llms.txt)
