# Pak Labs Catalyst Events API

> Pak Labs Catalyst Events API is a paid API for AI agents from api.pak-labs.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns scored and classified market catalyst events with directional signal, an 8-factor score, and provenance metadata.

## Facts

- Endpoint: GET https://api.pak-labs.com/v1/catalysts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pak-labs-catalyst-events-api-85c3ca4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LsK2Sajbu1RCdW35ue-o_

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 pak-labs-catalyst-events-api-85c3ca4d
```

Example prompt: Pull the latest scored catalyst events from Pak Labs — I want to see the direction, 8-factor score, and provenance for each event so I can identify the strongest signals.

## When to prefer this

Choose this endpoint when you need pre-scored, multi-factor catalyst events with directional signals and source provenance — particularly useful for event-driven trading strategies, systematic screening, or research workflows where raw news or unscored event feeds are insufficient. Prefer this over generic news APIs when you specifically need quantified catalyst signals with directional classification.

## Known failure modes

- Invalid or unsupported query parameters return a 400 error
- Payment not completed results in a 402 Payment Required response
- No matching catalyst events for the given filters returns an empty result set
- Rate limiting or quota exceeded returns a 429 error
- Service downtime returns a 503 error

## How this service works

Scored, classified catalyst events with direction, 8-factor score, and provenance.

## Output

A JSON list of catalyst events, each annotated with a directional signal (bullish/bearish/neutral), an 8-factor composite score, classification/category, and provenance information indicating the source or basis for the event.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pak-labs-catalyst-events-api-85c3ca4d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.pak-labs.com](https://www.zero.xyz/host/api.pak-labs.com/llms.txt)
