# LeadsForge Company Followers Jobs List

> LeadsForge Company Followers 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).

List and paginate company-followers enrichment jobs with optional filtering by status, date range, and client request ID.

## Facts

- Endpoint: GET https://x402.orthogonal.com/leadsforge/company-followers/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/leadsforge-company-followers-jobs-list-a3dc0909
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8zlHE0jblumzfqzR6kx1O

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 leadsforge-company-followers-jobs-list-a3dc0909
```

Example prompt: Show me all my LeadsForge company-followers jobs that are currently in progress — up to 50 results, starting from the beginning.

## When to prefer this

Use this endpoint when you need to check the status or history of previously submitted company-followers enrichment jobs on LeadsForge, especially when polling for job completion, auditing failures, or paginating through a large job backlog. Prefer this over initiating a new job when you already have submitted requests and need visibility into their progress.

## Known failure modes

- Invalid RFC3339 date format for 'from' or 'to' parameters returns a 400 error
- Offset beyond available records returns an empty result set
- Invalid status value returns a validation error
- Limit exceeding 100 may be rejected or capped
- Missing or malformed authentication returns a 401/402 error

## How this service works

List company followers jobs with optional filtering.

## Output

Returns a paginated list of company-followers enrichment jobs, each including job ID, status (in_progress, completed, failed, no_results), creation timestamp, and associated metadata. Supports filtering by status, date range, and client request ID.

## 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)"
      },
      "limit": {
       "type": "number",
       "description": "Page size (max 100)"
      },
      "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/leadsforge-company-followers-jobs-list-a3dc0909/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)
