{
  "info": {
    "name": "Minelead.io — mcp.ai",
    "description": "REST API for the Minelead.io 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/minelead",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "minelead_detect_disposable_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/detect/disposable/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "detect",
            "disposable",
            "email"
          ]
        },
        "description": "Check an email for disposable-address, DNS, format, and spam signals. Minelead does not document this endpoint's credit cost, so callers should treat it as potentially credit-consuming. HTTP 200 appli",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_enrich_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/enrich/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "enrich",
            "email"
          ]
        },
        "description": "Enrich one email with professional and social profile information. Minelead charges 2 credits per request. A no-match result is returned with status `not_found`; application errors reported inside HTT",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"company\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_find_person_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/person/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "person",
            "email"
          ]
        },
        "description": "Find a person's professional email from their name and company domain. A found result costs 1 credit; Minelead documents no charge when no email or only bouncing emails are returned. Catch-all domains",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_find_social_profile_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/social/profile/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "social",
            "profile",
            "emails"
          ]
        },
        "description": "Find emails associated with a YouTube channel or Twitter/X profile URL. Results may be masked and are locally capped by max_emails_to_return; the response reports truncation. Minelead charges 2 credit",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"profile_url\": \"\",\n  \"max_emails_to_return\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_generate_company_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/company/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "company",
            "domains"
          ]
        },
        "description": "Generate candidate company domains from keyword and location tags. A successful request costs 1 credit, and returned domains may be masked.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_list_saved_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/saved/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "saved",
            "leads"
          ]
        },
        "description": "List leads already saved in the connected Minelead account. Minelead documents no credit cost for this read. The verified no-leads response is returned as an empty list, while application-level errors",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_list_search_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/search/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "search",
            "history"
          ]
        },
        "description": "Return up to 25 entries from the connected account's search history. Minelead does not document a credit cost for this read. Use the returned cursor to continue; a verified no-history response marks t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_search_company_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/company/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "company",
            "emails"
          ]
        },
        "description": "Find known email addresses for a company domain. Results may include masked addresses. A successful standard search costs 1 credit; Deep Search and inline enrichment are not included.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\",\n  \"light_mode\": false,\n  \"max_emails\": 0,\n  \"generic_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_search_company_emails_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/company/emails/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "company",
            "emails",
            "batch"
          ]
        },
        "description": "Search 1-8 company domains in one call and return a result for each domain. Results may include masked addresses. Each successful domain search costs 1 credit, so one batch can cost up to 8 credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domains\": \"\",\n  \"light_mode\": false,\n  \"generic_only\": false,\n  \"max_emails_per_domain\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "minelead_validate_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "email"
          ]
        },
        "description": "Validate an email's format, MX records, mailbox result, personal-provider status, and disposability. Minelead charges 1 credit per verification. HTTP 200 may contain an application failure; `catch-all",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}