# Wiza Continue Prospect List Search

> Wiza Continue Prospect List Search is a paid API for AI agents from wiza.withzero.xyz, paid per call via MPP, $0.08/call, status unknown (last checked 2026-09-14).

Continues a previously started Wiza prospect list search to fetch up to 30 additional matching profiles, polling until completion and settling billing from API credits used.

## Facts

- Endpoint: POST https://wiza.withzero.xyz/api/v1/prospect-lists/continue
- Price: $0.08/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 3
- Provider: wiza.withzero.xyz
- Website: https://wiza.withzero.xyz
- Canonical page: https://www.zero.xyz/c/wiza-withzero-xyz-wiza-continue-prospect-list-search-1ee7e878
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RlWET390EUHg8jmiL740h

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 wiza-withzero-xyz-wiza-continue-prospect-list-search-1ee7e878 -d '<json body>'
```

Example prompt: Continue my Wiza prospect list search with ID 48291 and pull up to 25 more matching profiles — wait for it to finish before returning the results.

## When to prefer this

Use this endpoint when you have already created a Wiza prospect list and need to retrieve additional profiles beyond the initial batch. It handles polling and billing settlement automatically. Prefer this over manually re-querying Wiza when you need paginated results from an existing list job identified by its numeric ID.

## Known failure modes

- List ID not found or invalid — returns error status
- Upstream Wiza job still queued after max_wait_ms — returns timeout without results
- No additional profiles available to fetch — returns list with zero new contacts
- Wiza API credits exhausted — job fails mid-enrichment
- Invalid max_profiles value above 30 — rejected by schema validation
- Network timeout polling Wiza status endpoints

## How this service works

Continue a Wiza prospect list search to fetch additional matching profiles. Capped at 30 additional profiles per call; payment escrow is sized from max_profiles when provided and final settlement comes from Wiza list api_credits.total.

## Output

Returns updated list metadata including list ID, name, status, enrichment level, email options, finish timestamp, credit usage breakdown (total API credits, email/phone/scrape/company credits), and billing settlement details (USDC micros charged and price per credit).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "example": {
  "id": 12345,
  "max_profiles": 3
 },
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "integer",
   "maximum": 9007199254740991,
   "description": "ID of the prospect list to continue.",
   "exclusiveMinimum": 0
  },
  "max_wait_ms": {
   "type": "integer",
   "maximum": 60000,
   "minimum": 1,
   "description": "Maximum time to poll Wiza before returning a timeout if the upstream job is still queued/running. Defaults to 25000."
  },
  "callback_url": {
   "type": "string",
   "format": "uri",
   "description": "Optional Wiza webhook URL for asynchronous completion updates."
  },
  "max_profiles": {
   "type": "integer",
   "maximum": 30,
   "minimum": 1,
   "description": "Additional results to return. Defaults to Wiza's previous list value; capped at 30."
  },
  "wait_for_result": {
   "type": "boolean",
   "const": true,
   "description": "Poll Wiza status endpoints before returning. Metered Wiza routes require this to stay true so billing can settle from final credit usage."
  },
  "poll_interval_ms": {
   "type": "integer",
   "maximum": 10000,
   "minimum": 500,
   "description": "Delay between Wiza status polls. Defaults to 2000."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "id": {
     "type": "number"
    },
    "name": {
     "type": "string"
    },
    "stats": {
     "type": "object",
     "properties": {
      "people": {
       "type": "number"
      },
      "credits": {
       "type": "object",
       "properties": {
        "api_credits": {
         "anyOf": [
          {
           "type": "object",
           "properties": {
            "total": {
             "type": "number"
            },
            "email_credits": {
             "type": "number"
            },
            "phone_credits": {
             "type": "number"
            },
            "scrape_credits": {
             "type": "number"
            },
            "company_credits": {
             "type": "number"
            }
           },
           "additionalProperties": {}
          },
          {
           "type": "null"
          }
         ]
        }
       },
       "additionalProperties": {}
      }
     },
     "additionalProperties": {}
    },
    "status": {
     "type": "string"
    },
    "created_at": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "finished_at": {
     "anyOf": [
      {
       "type": "string"
      },
      {
       "type": "null"
      }
     ]
    },
    "report_type": {
     "type": "string"
    },
    "email_options": {
     "type": "object",
     "properties": {
      "accept_work": {
       "type": "boolean",
       "description": "Return professional email addresses such as tim.cook@apple.com."
      },
      "accept_generic": {
       "type": "boolean",
       "description": "Return generic role addresses such as hello@apple.com."
      },
      "accept_personal": {
       "type": "boolean",
       "description": "Return personal email addresses such as tcook1960@gmail.com."
      }
     },
     "description": "Types of emails Wiza may return for list-style enrichment.",
     "additionalProperties": false
    },
    "enrichment_level": {
     "type": "string"
    }
   },
   "additionalProperties": {}
  },
  "type": {
   "type": "string",
   "const": "list"
  },
  "status": {
   "type": "object",
   "properties": {
    "code": {
     "type": "number"
    },
    "message": {
     "type": "string"
    }
   },
   "additionalProperties": {}
  },
  "billing": {
   "type": "object",
   "require
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wiza-withzero-xyz-wiza-continue-prospect-list-search-1ee7e878/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wiza.withzero.xyz](https://www.zero.xyz/host/wiza.withzero.xyz/llms.txt)
