# x402stock Archive Feed Range (Time-Series Summary)

> x402stock Archive Feed Range (Time-Series Summary) is a paid API for AI agents from agents.x402stock.xyz, paid per call via MPP, $0.03/call, status unknown (last checked 2026-09-12).

Returns per-day summary entries for a named archive feed over a date range, enabling time-series analysis of metrics like JLP AUM, Hyperliquid funding rates, pre-IPO token premiums, or squeeze scores.

## Facts

- Endpoint: GET https://agents.x402stock.xyz/api/v1/archive/{feed}/range
- Price: $0.03/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Provider: agents.x402stock.xyz
- Website: https://agents.x402stock.xyz
- Canonical page: https://www.zero.xyz/c/agents-x402stock-xyz-x402stock-archive-feed-range-time-series-summary-7b0565b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1CRXfJlWLT1PixWsdKgQe

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 agents-x402stock-xyz-x402stock-archive-feed-range-time-series-summary-7b0565b3
```

Example prompt: Show me the day-by-day summary of the sol.jlp archive feed from January 1 to February 28, so I can see how JLP AUM evolved over those two months.

## When to prefer this

Use this endpoint when you need to understand how a metric evolved over time across multiple days — for trend analysis, charting, or anomaly detection — rather than fetching a single day's full data. It is the right choice when you want a lightweight overview of many days (up to 366) with provenance metadata before deciding which specific days to purchase in full. Prefer this over the single-day archive endpoint when you need multi-day breadth rather than one day's complete payload.

## Known failure modes

- Unknown or misspelled feed name returns an error or empty catalog
- Date range exceeding 366 days is capped or rejected
- Requesting future dates returns no data or an error
- Feed with no history yet returns an empty days array
- Missing required feed path parameter returns a 400/validation error
- Payment failure via x402 results in a 402 response before data is served

## How this service works

Use for time-series questions over the archive: how JLP AUM, Hyperliquid funding, a pre-IPO token premium, or a ticker's squeeze score evolved day by day. Per-day summaries (oldest first, ?from ?to ?limit, max 366) with capture provenance; payloads omitted — buy a full day via /archive/{feed}?date=. History accumulates daily and cannot be reconstructed retroactively. From x402stock

## Output

An ordered list (oldest first) of per-day entries for the requested feed, each containing the observed date, observation timestamp, capture timestamp, a content hash for provenance, and a summary object with key metrics. The response also includes the feed name, entity, date range covered, count of days returned, and a note. Full payloads are not included; only summaries are returned — full day data must be purchased separately via /archive/{feed}?date=.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "feed"
 ],
 "properties": {
  "feed": {
   "type": "string",
   "description": "Point-in-time archive feed name (see /api/v1/archive for the catalog)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "source",
  "as_of",
  "feed",
  "entity",
  "from",
  "to",
  "count",
  "note",
  "days"
 ],
 "properties": {
  "to": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "days": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "observed_date",
     "observed_at",
     "captured_at",
     "content_hash",
     "summary"
    ],
    "properties": {
     "summary": {
      "type": "object",
      "propertyNames": {
       "type": "string"
      },
      "additionalProperties": {}
     },
     "captured_at": {
      "type": "string"
     },
     "observed_at": {
      "type": "string"
     },
     "content_hash": {
      "type": "string"
     },
     "observed_date": {
      "type": "string"
     }
    },
    "additionalProperties": false
   }
  },
  "feed": {
   "type": "string"
  },
  "from": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "note": {
   "type": "string"
  },
  "as_of": {
   "type": "string"
  },
  "count": {
   "type": "number"
  },
  "entity": {
   "type": "string"
  },
  "source": {
   "type": "string",
   "const": "x402stock"
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-x402stock-xyz-x402stock-archive-feed-range-time-series-summary-7b0565b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.x402stock.xyz](https://www.zero.xyz/host/agents.x402stock.xyz/llms.txt)
