prospeo-full-export

Export complete Prospeo people search results to CSV via the Search Person API.

Updated May 28, 2025
One-click install
npx skills add https://github.com/meloShaya/insteltech --skill prospeo-full-export-meloshaya
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prospeo-full-export
Source: https://github.com/meloShaya/insteltech/tree/main/crm/library/skills/prospeo-full-export
Command: npx skills add https://github.com/meloShaya/insteltech --skill prospeo-full-export-meloshaya

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Prospeo's web UI caps exports and makes it hard to pull large searches, so this Skill paginates through the Prospeo Search Person API to extract every matching contact into a CSV file, even for searches exceeding 25,000 results. ## Core Features & Use Cases - Full API Pagination: Translates your UI-built filters into Prospeo API calls and pages through all results with rate limiting, retries, and deduplication by LinkedIn URL and email. - State-by-State Splitting: Automatically splits US-wide searches over 20K results into 50 state-level searches to bypass the 25,000-result cap. - Cost Estimation & ICP Qualification: Estimates credit costs before running and pairs with /icp-prompt-builder to qualify a sample before scaling. - Use Case: You build a search for VPs of Sales at US SaaS companies with 50-500 employees showing 87,000 results; the Skill splits by state, paginates everything, deduplicates, and writes a single CSV. ## Quick Start Describe the filters you built in Prospeo's UI and ask to export all matching results to a CSV file.

Frequently Asked Questions about prospeo-full-export

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I export all results from a Prospeo people search?

Build your search in Prospeo's web UI, then describe the filters to the AI, which maps them to Search Person API calls and paginates through every page. Results are deduplicated and written to a CSV file in your current directory.

How do I export more than 25,000 results from Prospeo?

Prospeo caps any single search at 25,000 results (1,000 pages of 25). The export script detects US-wide searches over 20K results and automatically splits them into 50 state-level searches, then deduplicates across states by LinkedIn URL.

What API key and setup does Prospeo search export require?

You need a Prospeo account on a plan with the Search Person API and an API key from Settings > API. Set it as the PROSPEO_API_KEY environment variable, and use Node.js 18+ with tsx to run the generated TypeScript script.

How many credits does a Prospeo search export cost?

Each API request returning results costs 1 credit and returns 25 contacts, so a 25,000-result search costs about 1,000 credits. The Skill estimates total credits from the result count and asks for confirmation before running.

Why does the Prospeo API return a 429 or 401 error?

A 401 means your API key is invalid; verify it at prospeo.io/app/settings/api. A 429 means rate limiting at 2 requests per second; the script handles this automatically with exponential backoff, so run only one export at a time.

What location format does the Prospeo search API accept?

Locations must include a country code suffix, such as "United States #US" for country, "California, United States #US" for state, or "San Francisco, California, United States #US" for city. Incorrect formats cause low or zero results.