# Get Email Validation Job Results

> Get Email Validation Job Results is a paid API for AI agents from agents.tuski.ai, paid per call via MPP, price unknown, status unknown (last checked 2026-09-18).

Returns paginated verdicts and quality scores for all emails in a validation job, as JSON or CSV download

## Facts

- Endpoint: GET https://agents.tuski.ai/api/v1/email-validation/jobs/{job_id}/results
- Price: price unknown
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Provider: agents.tuski.ai
- Website: https://agents.tuski.ai
- Canonical page: https://www.zero.xyz/c/agents-tuski-ai-get-email-validation-job-results-f01f6eb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c3_PS-Y9g_q0q4xpU4HCQ

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-tuski-ai-get-email-validation-job-results-f01f6eb0
```

Example prompt: Fetch the first 500 deliverable email results from my Tuski validation job 8821, and give them to me as JSON.

## When to prefer this

Use this endpoint after creating a Tuski email validation job and polling for progress, when you need to retrieve the actual verdicts and quality scores. Prefer JSON with pagination for programmatic processing of large lists; use format=csv for a direct download suitable for import into marketing tools. The status filter is valuable when you only need a specific verdict class (e.g., valid addresses only) without post-processing.

## Known failure modes

- Invalid or nonexistent job_id returns 404
- offset or limit out of range returns 400
- Job not yet created or already deleted may return 404 or empty results
- CSV export exceeding 10,000 rows or 5 MB is truncated or rejected
- Invalid status filter value may return 400 or empty set

## How this service works

Returns the job's verdicts and quality scores as paginated JSON rows, or a CSV download with format=csv. JSON supports limit 1 to 5000, offset, and an optional status filter such as valid or invalid. CSV exports are capped at 10,000 rows or 5 MB. Results are available while the job runs and after it completes.

## Output

A paginated JSON array of rows (up to 5000 per page) each containing an email address, its verdict (one of: deliverable, invalid, no MX, burner, typo, catch-all, full box, role), and a 0–100 quality score. If format=csv, returns a text/csv file download capped at 10,000 rows or 5 MB. Results are available mid-job and after completion.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "job_id"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "default": 1000,
   "maximum": 5000,
   "minimum": 1,
   "description": "Rows per page for JSON results."
  },
  "format": {
   "enum": [
    "json",
    "csv"
   ],
   "type": "string",
   "default": "json",
   "description": "Response format. csv returns a text/csv download."
  },
  "job_id": {
   "type": "integer",
   "description": "The job id returned when the job was created."
  },
  "offset": {
   "type": "integer",
   "default": 0,
   "description": "Rows to skip for pagination."
  },
  "status": {
   "type": "string",
   "description": "Restrict rows to one verdict, for example valid or invalid."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-tuski-ai-get-email-validation-job-results-f01f6eb0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.tuski.ai](https://www.zero.xyz/host/agents.tuski.ai/llms.txt)
