All MCP tools
Bulk jobsFree

list_jobs

List bulk verification jobs

List the account’s bulk jobs, newest first, with status and summary. Filter by status, paginate. Free.

When an agent uses list_jobs

Use list_jobs to find past bulk jobs and their job_ids — for example to resume work after a restart, reconcile what has already been processed, or surface the most recent completed job to a user. It returns jobs newest-first with status, progress, and summary, and can filter by status and paginate. Costs no credits.

REST endpoint
GET /api/v1/jobs
Credit cost
Free

Input schema

FieldTypeRequiredDescription
statusenumoptionalOnly return jobs in this status: pending, processing, completed, or failed.
limitintegeroptionalMax jobs to return (1-100, default 50).
offsetintegeroptionalPagination offset (default 0).

Call it over MCP

An MCP client invokes the tool with a tools/call request. Hosted clients send this to https://verifly.email/mcp with your Authorization: Bearer vf_… header; the verifly-mcp-server package does the same with VERIFLY_API_KEY set.

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_jobs",
    "arguments": {
      "status": "completed",
      "limit": 10
    }
  }
}

Posting that same call straight to the hosted endpoint:

curl -s -X POST "https://verifly.email/mcp" \
  -H "Authorization: Bearer vf_your_api_key" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_jobs","arguments":{"status":"completed","limit":10}}}'

Equivalent raw REST call

Under the hood this tool calls GET /api/v1/jobs. If you are not using MCP, hit the REST API directly:

curl -s "https://verifly.email/api/v1/jobs?status=completed&limit=10" \
  -H "Authorization: Bearer vf_your_api_key"

What you get back

A JSON object with total and a jobs array — each with job_id, status, total_emails, progress, summary, credits_used, and timestamps.

Related tools

Use list_jobs in your agent

Verifly is the only email verifier with a hosted MCP server plus autonomous agent self-registration. An agent can call register_account for an instant key and 100 free credits, then start calling list_jobs — no human, no dashboard.