# Shipp Sports Live Data – Batch 10 Events

> Shipp Sports Live Data – Batch 10 Events is a paid API for AI agents from platform.shipp.ai, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Retrieves a batch of up to 10 live sports events (NBA, NFL, NCAAFB, MLB, Soccer) with natural-language filtering and cursor-based pagination

## Facts

- Endpoint: POST https://platform.shipp.ai/api/v1/connections/inline/10
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shipp-sports-live-data-batch-10-events-17bbfe04
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OFMAo8GI6apidxHHsCmov

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-batch-10-events-17bbfe04 -d '<json body>'
```

Example prompt: Pull the latest 10 NBA and NFL events from the Shipp sports feed since yesterday at noon — filter for only completed games.

## When to prefer this

Choose this endpoint when you need to retrieve multiple sports events (up to 10) in one call with optional natural-language filtering or cursor-based pagination. Prefer over the single-event sibling endpoints when efficiency matters and you need a batch of results. Ideal for building dashboards, monitoring feeds, or catching up on events since a known timestamp or event ID.

## Known failure modes

- Invalid date-time format for 'since' field returns a 400 error
- Unknown since_event_id returns empty result or error
- Malformed filter_instructions may return unfiltered or empty results
- Payment failure (x402) prevents data retrieval
- No matching events for the filter returns an empty list

## How this service works

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

## Output

A batch of up to 10 sports event records covering NBA, NFL, NCAAFB, MLB, and Soccer leagues, ordered based on the since/since_event_id cursor parameters. Each record contains live or recent game data. Supports ascending pagination via since_event_id for sequential event streaming.

## Example request

```json
{
 "since": "2024-01-14T12:00:00Z",
 "filter_instructions": "NBA and NFL games that are completed"
}
```

## 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-batch-10-events-17bbfe04/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)
