# Get Async Job Status (ICP Builder / Company Lookalikes)

> Get Async Job Status (ICP Builder / Company Lookalikes) is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP, price unknown, status unknown (last checked 2026-09-15).

Polls the status of a previously submitted ICP Builder or Company Lookalikes async job and returns results when complete.

## Facts

- Endpoint: GET https://agents.bytemine.ai/functions/v1/api-gateway/v1/jobs/{job_id}
- Price: price unknown
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-get-async-job-status-icp-builder-company-lookalikes-484f339c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ln3OZ0Mtb4mfZww7wW9gL

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 agents-bytemine-ai-get-async-job-status-icp-builder-company-lookalikes-484f339c
```

Example prompt: Can you check whether my Bytemine ICP builder job with ID 'job_abc123' is done yet, and if so, grab the results? It was submitted as an icp type job.

## When to prefer this

Use this endpoint after calling the ICP Builder or Company Lookalikes endpoints, which return a job_id immediately for async processing. This is the correct way to retrieve their results once the job completes. Since it is free and idempotent, it can be polled repeatedly without cost.

## Known failure modes

- Invalid or non-existent job_id returns an error or empty response
- Wrong type parameter (icp vs lookalike mismatch) may return incorrect or empty results
- Job still in progress returns a non-complete status with empty results array
- Network timeout on the polling call
- Expired job IDs may return a not-found error

## How this service works

Poll the status of an ICP Builder or Company Lookalikes job. Pass type icp or type lookalike. Returns the current status and results when complete. Free, does not bill.

## Output

Returns a JSON object containing the job_id, current status string (e.g. pending, processing, complete), and a results array of objects populated when the job finishes. This call is free and does not bill.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "job_id",
  "type"
 ],
 "properties": {
  "type": {
   "enum": [
    "icp",
    "lookalike"
   ],
   "type": "string",
   "description": "Job type."
  },
  "job_id": {
   "type": "string",
   "description": "Job ID returned by the ICP Builder or Company Lookalikes endpoint."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "results": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-get-async-job-status-icp-builder-company-lookalikes-484f339c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.bytemine.ai](https://www.zero.xyz/host/agents.bytemine.ai/llms.txt)
