{
  "info": {
    "name": "Prospeo — mcp.ai",
    "description": "REST API for the Prospeo MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/prospeo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "prospeo_bulk_enrich_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/enrich/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "enrich",
            "companies"
          ]
        },
        "description": "Match 1-50 companies and correlate outcomes by caller-generated identifier. Costs 1 credit per match; no match and repeats within 90 days are free. The REST maximum is 50. FREE probing only accepted o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"companies\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_bulk_enrich_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/enrich/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "enrich",
            "people"
          ]
        },
        "description": "Match 1-50 people and correlate every outcome by a caller-generated identifier. A found email/person costs 1 credit; each requested and found mobile costs 10 credits and includes email enrichment. No ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"people\": \"\",\n  \"enrich_mobile\": false,\n  \"only_verified_email\": false,\n  \"only_verified_mobile\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_enrich_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enrich/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enrich",
            "company"
          ]
        },
        "description": "Match one company and return its full profile. Costs 1 credit when matched; no match and repeat enrichment within 90 days are free. FREE rate limit: 1/second, 20/minute, 50/day.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"company\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_enrich_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enrich/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enrich",
            "person"
          ]
        },
        "description": "Match one person and return profile, company, and verified contact data. A found email/person costs 1 credit. Requesting and finding mobile costs 10 credits and also includes email enrichment. No matc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"person\": {},\n  \"enrich_mobile\": false,\n  \"only_verified_email\": false,\n  \"only_verified_mobile\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_get_account_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "information"
          ]
        },
        "description": "Return the connected Prospeo team's plan, remaining and used credits, team size, and quota-renewal date. This free endpoint is the recommended preflight before credit-consuming search or enrichment.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_search_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "companies"
          ]
        },
        "description": "Search Prospeo's company database with typed practical and advanced filters. Returns one page of at most 25 companies. Each non-empty page costs 1 credit unless the team paid for the identical page wi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_search_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "people"
          ]
        },
        "description": "Search Prospeo's person database with typed person and company filters. Returns profiles and contact availability but never reveals email or mobile values. Each non-empty page costs 1 credit unless th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "prospeo_search_suggestions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/suggestions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "suggestions"
          ]
        },
        "description": "Resolve canonical Prospeo filter values for locations, titles, technologies, industries, codes, and advanced company fields. Free and consumes no credits. Send exactly one suggestion type. Rate limit:",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"suggestion_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}