Start the agent extraction pipeline for the project. Only agents
with outstanding work are processed; agents that are already up to
date are skipped. Returns 202 Accepted immediately; track progress
with GET /projects/{project_id}/agents/status/.
Extraction has been started. The response body is an empty JSON object; poll GET /projects/{project_id}/agents/status/ for progress.
Security
ApiKeyAuth — apiKey — in X-API-Key header. API key with pw_live_ prefix.
Python example
importosimportrequestsAPI_KEY=os.environ["PARSEWISE_API_KEY"]BASE_URL="https://api.parsewise.ai/api/v1"project_id="<uuid>"resp=requests.post(f"{BASE_URL}/projects/{project_id}/agents/launch/",headers={"X-API-Key":API_KEY},)resp.raise_for_status()print(resp.status_code)# POST returns no body