{
  "info": {
    "name": "44API — mcp.ai",
    "description": "REST API for the 44API 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/44api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "44api_add_whitelisted_ip",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/whitelisted/ip",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "whitelisted",
            "ip"
          ]
        },
        "description": "Add one IPv4 or IPv6 address to the account whitelist using a verification email address. Requires an Enterprise 44API plan. The request contract is documented, but a successful addition has not been ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"ip_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "44api_list_whitelisted_ips",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/whitelisted/ips",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "whitelisted",
            "ips"
          ]
        },
        "description": "List IP addresses currently allowed by the account whitelist. This operation requires an Enterprise 44API plan; the API rejects lower-tier accounts.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "44api_remove_whitelisted_ip",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/whitelisted/ip",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "whitelisted",
            "ip"
          ]
        },
        "description": "Remove one IPv4 or IPv6 address from the account whitelist. This destructive operation changes account access controls and requires an Enterprise 44API plan. The shared whitelist endpoint's Enterprise",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "44api_validate_vat_number",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/vat/number",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "vat",
            "number"
          ]
        },
        "description": "Validate one VAT or tax ID for a supported country and return its validity plus any company details available on the connected plan.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vat_number\": \"\",\n  \"country_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}