# Orthogonal LeadsForge Enrichment Jobs List

> Orthogonal LeadsForge Enrichment Jobs List is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Lists lead enrichment jobs with optional filtering by status, type, date range, and pagination.

## Facts

- Endpoint: GET https://x402.orthogonal.com/leadsforge/enrichment/jobs
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-leadsforge-enrichment-jobs-list-865ee62a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d0AP1cyrPP5BGUiHZxs3a

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 orthogonal-leadsforge-enrichment-jobs-list-865ee62a
```

Example prompt: Show me all my LeadsForge enrichment jobs that are currently in progress — filter to email type only, and give me the first 20 results.

## When to prefer this

Use this endpoint when you need to audit, monitor, or paginate through existing LeadsForge enrichment jobs — especially when filtering by processing status, enrichment type (email, phone, linkedin), or a specific time window. Prefer this over job-specific endpoints when you need a bulk view or status dashboard across multiple jobs.

## Known failure modes

- Invalid date format for 'from' or 'to' parameters (must be RFC3339)
- Invalid status or type enum value returns empty or error response
- Large offsets with no results if pagination exceeds available records
- Payment failure ($0.005 USDC) blocks the request entirely
- Rate limiting or authentication errors returning 402 or 4xx

## How this service works

List enrichment jobs with optional filtering.

## Output

Returns a paginated list of enrichment job records from LeadsForge, each containing job ID, type (email/phone/linkedin), status (in_progress/completed/failed/no_results), creation timestamp, client request ID, and related metadata. Supports filtering and offset-based pagination.

## 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",
     "properties": {
      "to": {
       "type": "string",
       "description": "Created-at upper bound (RFC3339)"
      },
      "from": {
       "type": "string",
       "description": "Created-at lower bound (RFC3339)"
      },
      "type": {
       "type": "string",
       "description": "Filter by type (email, phone, linkedin)"
      },
      "limit": {
       "type": "number",
       "description": "Page size"
      },
      "offset": {
       "type": "number",
       "description": "Offset for pagination"
      },
      "status": {
       "type": "string",
       "description": "Filter by status (in_progress, completed, failed, no_results)"
      },
      "clientRequestID": {
       "type": "string",
       "description": "Filter by client request ID"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-leadsforge-enrichment-jobs-list-865ee62a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
