# Clink Lithium Vault – Market Service History

> Clink Lithium Vault – Market Service History is a paid API for AI agents from clink-lithium-vault.fly.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the full day-by-day historical timeline of a single x402 listing or MCP server, including price changes, paying customers, call volume, installs, and first/last-seen dates.

## Facts

- Endpoint: GET https://clink-lithium-vault.fly.dev/market/service
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-lithium-vault-market-service-history-c0319cf7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D5w3_A7M3a4MyoJwadSix

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 clink-lithium-vault-market-service-history-c0319cf7
```

Example prompt: Pull the full day-by-day history for the x402 listing at https://api.example.com/service — I want to see how its price, call volume, and paying customer count have changed since it was first listed.

## When to prefer this

Choose this endpoint when you need longitudinal, day-by-day historical data on a specific x402 or MCP listing — price trajectory, customer growth, or call volume trends. Use it over /market/pulse when you want depth on one service rather than a broad market snapshot, and when you know the listing ID (or have retrieved it via /find).

## Known failure modes

- Missing or invalid 'id' parameter returns an error — use /find endpoint first to resolve the correct listing ID
- Unknown listing ID (not present in historical snapshots) returns empty or not-found response
- Listing may have very short history if recently added to the market
- Network or server errors from the fly.dev host
- Payment failure (x402) if USDC balance insufficient — endpoint costs $0.02 per call

## How this service works

Track one agent service over time - the full day-by-day history of any x402 listing or MCP server: price changes, paying customers, call volume, installs, first and last seen. See what a listing like yours earns, watch a competitor grow or die. From daily whole-market snapshots the live catalogs don't keep. ?id=<x402 resource URL or MCP registry name> (find ids via /find, free). Market overview: /market/pulse $0.10.

## Output

A structured JSON object containing the day-by-day historical record of the queried listing, including price at each point in time, number of paying customers, call volume per day, install count, and the first and last dates the listing was observed in daily market snapshots.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "listing id: the x402 resource URL, or the MCP registry server name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-lithium-vault-market-service-history-c0319cf7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clink-lithium-vault.fly.dev](https://www.zero.xyz/host/clink-lithium-vault.fly.dev/llms.txt)
