# Linked Panda - Get Job Results

> Linked Panda - Get Job Results is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Retrieves the results of a previously submitted Linked Panda async job (e.g. LinkedIn lead enrichment, ICP scoring, or CRM routing run) by job ID.

## Facts

- Endpoint: POST https://api.linkedpanda.com/agent/v1/jobs/get
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linked-panda-get-job-results-ef53d82b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UJwn1xAswvoMuAaC-J7pv

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 linked-panda-get-job-results-ef53d82b -d '<json body>'
```

Example prompt: Get me the results for my Linked Panda job with ID 'job_abc123' — I submitted a LinkedIn lead enrichment run earlier and want to see the enriched profiles and ICP scores that came back.

## When to prefer this

Use this endpoint after submitting any async Linked Panda job (lead enrichment, ICP scoring, LinkedIn listening, or CRM routing) and you need to retrieve the output. This is a polling/retrieval endpoint, not a submission endpoint — use it to check completion and fetch paginated results once a job has been queued.

## Known failure modes

- Job ID not found or invalid — empty results array returned
- Job still processing — results array is empty with totalElements 0
- Invalid or missing jobId field — likely a 400 or error response
- Payment not processed — 402 response blocking access
- Rate limit exceeded — too many polling requests in succession

## How this service works

LinkedIn job details

## Output

Returns a paginated list of job results (e.g. enriched LinkedIn leads, ICP scores, CRM routing decisions) along with pagination metadata including pageSize, pageNumber, totalElements, and a paginationToken for fetching subsequent pages. Results array may be empty if the job is still processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "jobId": {
   "type": "string"
  },
  "requestContext": {
   "type": "object",
   "properties": {
    "requestId": {
     "type": "string"
    },
    "userIntent": {
     "type": "string"
    },
    "promptSummary": {
     "type": "string"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [],
  "pagination": {
   "pageSize": 0,
   "pageNumber": 1,
   "totalElements": 0,
   "paginationToken": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linked-panda-get-job-results-ef53d82b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.linkedpanda.com](https://www.zero.xyz/host/api.linkedpanda.com/llms.txt)
