{
  "info": {
    "name": "Bettercontact — mcp.ai",
    "description": "REST API for the Bettercontact 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/bettercontact",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "bettercontact_check_credits_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/credits/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "credits",
            "balance"
          ]
        },
        "description": "Tool to check the remaining credits balance for a BetterContact account. Use when you need to verify available credits before making API requests that consume credits.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bettercontact_create_lead_finder_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/lead/finder/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "lead",
            "finder",
            "search"
          ]
        },
        "description": "Tool to create a new Lead Finder search to discover leads based on company and people criteria. Use when you need to find prospects matching specific job titles, departments, seniority, company size, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filters\": {},\n  \"webhook\": \"\",\n  \"max_leads\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bettercontact_enrich_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enrich/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enrich",
            "leads"
          ]
        },
        "description": "Tool to create a lead enrichment request for work emails and direct phone numbers. Uses waterfall enrichment across multiple data providers for higher accuracy. Supports batches of 1-100 leads.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"webhook\": \"\",\n  \"process_flow\": \"\",\n  \"enrich_phone_number\": false,\n  \"enrich_email_address\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bettercontact_get_enrichment_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/enrichment/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "enrichment",
            "results"
          ]
        },
        "description": "Tool to retrieve enrichment results for a specific request ID. Use when you need to check the status and get enriched lead data including email addresses, contact information, and summary statistics f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "bettercontact_get_lead_finder_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lead/finder/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lead",
            "finder",
            "results"
          ]
        },
        "description": "Tool to retrieve results from a submitted Lead Finder search. Returns comprehensive lead and company data including contact information, LinkedIn profiles, job titles, company details, and enrichment ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}