{
  "info": {
    "name": "PredictLeads — mcp.ai",
    "description": "REST API for the PredictLeads 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/predict_leads",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "predict_leads_discover_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/discover/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discover",
            "companies"
          ]
        },
        "description": "Find companies using firmographic filters. Discovery costs one credit per returned record, so the default limit is 5. Deterministic upstream 4xx responses also consume credits and are not retried.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"sizes\": \"\",\n  \"industry\": \"\",\n  \"location\": \"\",\n  \"naics_codes\": \"\",\n  \"revenue_range_low\": 0,\n  \"revenue_range_high\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_discover_intelligence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/discover/intelligence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "discover",
            "intelligence"
          ]
        },
        "description": "Discover one page of jobs, technology adoption, news, financing, investor portfolio connections, products, or startup-platform posts across companies. Select exactly one dataset. Each returned record ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"title\": \"\",\n  \"dataset\": \"\",\n  \"location\": \"\",\n  \"date_from\": \"\",\n  \"seniority\": \"\",\n  \"date_until\": \"\",\n  \"onet_codes\": \"\",\n  \"post_types\": \"\",\n  \"active_only\": false,\n  \"company_sizes\": \"\",\n  \"news_categories\": \"\",\n  \"last_seen_at_from\": \"\",\n  \"last_seen_at_until\": \"\",\n  \"product_categories\": \"\",\n  \"product_subcategories\": \"\",\n  \"financing_types_normalized\": \"\",\n  \"technology_id_or_fuzzy_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_get_api_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "subscription"
          ]
        },
        "description": "Check PredictLeads subscription status, monthly credit quota, and credits used. This endpoint is free and should be called before or during credit-sensitive workflows.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_get_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company"
          ]
        },
        "description": "Retrieve one company by PredictLeads UUID or bare domain. Each upstream response costs 1 credit, including deterministic 4xx failures, so malformed identifiers are rejected locally and 4xx errors shou",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id_or_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_get_company_intelligence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company/intelligence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company",
            "intelligence"
          ]
        },
        "description": "Retrieve one page of a company's jobs, technology detections, news, financing, SEC filings, connections, website changes, GitHub repositories, or products. Select exactly one dataset. Each call costs ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"dataset\": \"\",\n  \"location\": \"\",\n  \"date_from\": \"\",\n  \"date_until\": \"\",\n  \"not_closed\": false,\n  \"active_only\": false,\n  \"job_categories\": \"\",\n  \"news_categories\": \"\",\n  \"last_seen_at_from\": \"\",\n  \"last_seen_at_until\": \"\",\n  \"product_categories\": \"\",\n  \"with_location_only\": false,\n  \"company_id_or_domain\": \"\",\n  \"connection_categories\": \"\",\n  \"product_subcategories\": \"\",\n  \"with_description_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_get_intelligence_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/intelligence/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "intelligence",
            "record"
          ]
        },
        "description": "Retrieve one job opening, extended technology detection, technology, news event, SEC filing, or product by identifier. Select exactly one record type. Each call costs 1 credit; malformed identifiers a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"identifier\": \"\",\n  \"record_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_get_similar_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/similar/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "similar",
            "companies"
          ]
        },
        "description": "Find one page of companies similar to a specified PredictLeads company UUID or domain. Each returned record costs 1 credit, so the default limit is 5; deterministic 4xx responses are not retried.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"company_id_or_domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_list_followed_companies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/followed/companies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "followed",
            "companies"
          ]
        },
        "description": "List one page of companies already followed for PredictLeads webhook updates. This is read-only and does not change follow state. The operation costs 1 credit per response; deterministic 4xx failures ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "predict_leads_search_technologies",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/technologies",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "technologies"
          ]
        },
        "description": "Search PredictLeads' tracked technology catalog by fuzzy name. This unusually expensive endpoint costs 3 API credits per returned record, so the default limit of 3 can cost up to 9 credits. Check API ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"order_by\": \"\",\n  \"fuzzy_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}