{
  "info": {
    "name": "ComplianceGrid Public API",
    "description": "Complete public API collection for ComplianceGrid — 130+ compliance intelligence endpoints with use cases.\n\n## Quick Start\n1. Set `client_id` and `api_key` variables with your credentials from the ComplianceGrid dashboard\n2. Run **Get Access Token** — the bearer token auto-saves\n3. All other requests use the saved token automatically\n\nBase URL: https://api.compliancegrid.ai\nSandbox: https://sandbox.api.compliancegrid.ai\nDocs: https://www.compliancegrid.ai/reference",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "variable": [
    { "key": "base_url", "value": "https://api.compliancegrid.ai" },
    { "key": "client_id", "value": "YOUR_CLIENT_ID" },
    { "key": "api_key", "value": "YOUR_API_KEY" },
    { "key": "token", "value": "" },
    { "key": "batch_job_id", "value": "" }
  ],
  "auth": {
    "type": "bearer",
    "bearer": [{ "key": "token", "value": "{{token}}", "type": "string" }]
  },
  "item": [
    {
      "name": "Authentication",
      "description": "OAuth 2.0 client credentials flow. Run 'Get Access Token' first.",
      "item": [
        {
          "name": "Get Access Token",
          "request": {
            "auth": { "type": "noauth" },
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/x-www-form-urlencoded" }],
            "url": { "raw": "{{base_url}}/oauth/token", "host": ["{{base_url}}"], "path": ["oauth", "token"] },
            "body": {
              "mode": "urlencoded",
              "urlencoded": [
                { "key": "grant_type", "value": "client_credentials" },
                { "key": "client_id", "value": "{{client_id}}" },
                { "key": "client_secret", "value": "{{api_key}}" }
              ]
            }
          },
          "event": [{
            "listen": "test",
            "script": {
              "exec": [
                "var json = pm.response.json();",
                "if (json.access_token) {",
                "  pm.collectionVariables.set('token', json.access_token);",
                "  pm.test('Token obtained (expires ' + json.expires_in + 's)', function() {",
                "    pm.expect(json.token_type).to.eql('Bearer');",
                "  });",
                "}"
              ]
            }
          }]
        },
        {
          "name": "Introspect Token",
          "request": {
            "auth": { "type": "noauth" },
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/oauth/introspect", "host": ["{{base_url}}"], "path": ["oauth", "introspect"] },
            "body": { "mode": "raw", "raw": "{\n  \"token\": \"{{token}}\"\n}" }
          }
        },
        {
          "name": "Revoke Token",
          "request": {
            "auth": { "type": "noauth" },
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/oauth/revoke", "host": ["{{base_url}}"], "path": ["oauth", "revoke"] },
            "body": { "mode": "raw", "raw": "{\n  \"token\": \"{{token}}\"\n}" }
          }
        }
      ]
    },
    {
      "name": "Risk Intelligence",
      "description": "AI-powered composite risk scoring for businesses and individuals. 0-1000 score with entity disambiguation, 15+ government data sources.",
      "item": [
        {
          "name": "Reference",
          "item": [
            {
              "name": "Factor Taxonomy",
              "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/risk/factors", "host": ["{{base_url}}"], "path": ["v1", "risk", "factors"] } }
            },
            {
              "name": "Response Attributes Schema",
              "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/risk/attributes", "host": ["{{base_url}}"], "path": ["v1", "risk", "attributes"] } }
            }
          ]
        },
        {
          "name": "Business — Sanctioned Entities",
          "item": [
            {
              "name": "Huawei (BIS Entity List, CMIC) — CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Huawei Technologies Co Ltd\",\n  \"country\": \"CN\",\n  \"industry\": \"telecommunications\",\n  \"address\": {\n    \"city\": \"Shenzhen\",\n    \"country\": \"CN\"\n  }\n}" }
              }
            },
            {
              "name": "Iran Air (OFAC SDN) — CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Iran Air\",\n  \"country\": \"IR\",\n  \"industry\": \"aviation\",\n  \"aliases\": [\"Airline of the Islamic Republic of Iran\"]\n}" }
              }
            },
            {
              "name": "ZTE Corporation (BIS Entity List) — HIGH/CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"ZTE Corporation\",\n  \"country\": \"CN\",\n  \"industry\": \"telecommunications\"\n}" }
              }
            },
            {
              "name": "Rosneft Oil Company (OFAC SDN, RU) — CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Rosneft Oil Company\",\n  \"country\": \"RU\",\n  \"industry\": \"Energy\"\n}" }
              }
            },
            {
              "name": "Terraform Labs PTE Ltd (SEC fraud) — HIGH/CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Terraform Labs PTE, Ltd.\",\n  \"country\": \"SG\",\n  \"industry\": \"Financial Services\"\n}" }
              }
            }
          ]
        },
        {
          "name": "Business — Regulatory Enforcement",
          "item": [
            {
              "name": "Comerica Bank (CFPB enforcement + complaints) — HIGH",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Comerica Bank\",\n  \"country\": \"US\",\n  \"industry\": \"Financial Services\"\n}" }
              }
            },
            {
              "name": "Navient Corporation (CFPB consent order) — HIGH",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Navient Corporation\",\n  \"country\": \"US\",\n  \"industry\": \"Financial Services\",\n  \"stockTicker\": \"NAVI\"\n}" }
              }
            }
          ]
        },
        {
          "name": "Business — US Low Risk",
          "item": [
            {
              "name": "Procter & Gamble — Clean consumer goods",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"The Procter & Gamble Company\",\n  \"country\": \"US\",\n  \"ein\": \"31-0411980\",\n  \"industry\": \"consumer goods\",\n  \"stockTicker\": \"PG\",\n  \"stockExchange\": \"NYSE\",\n  \"yearFounded\": 1837,\n  \"numberOfEmployees\": 107000,\n  \"stateOfIncorporation\": \"OH\",\n  \"address\": {\n    \"street1\": \"One Procter & Gamble Plaza\",\n    \"city\": \"Cincinnati\",\n    \"stateOrProvince\": \"OH\",\n    \"postalCode\": \"45202\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Costco Wholesale — Clean large retailer",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Costco Wholesale Corporation\",\n  \"country\": \"US\",\n  \"ein\": \"91-1223153\",\n  \"industry\": \"retail\",\n  \"stockTicker\": \"COST\",\n  \"stockExchange\": \"NASDAQ\",\n  \"yearFounded\": 1983,\n  \"numberOfEmployees\": 316000,\n  \"stateOfIncorporation\": \"WA\",\n  \"address\": {\n    \"city\": \"Issaquah\",\n    \"stateOrProvince\": \"WA\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Deere & Company — Clean US manufacturer",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Deere & Company\",\n  \"country\": \"US\",\n  \"ein\": \"36-2382580\",\n  \"industry\": \"agricultural machinery\",\n  \"stockTicker\": \"DE\",\n  \"stockExchange\": \"NYSE\",\n  \"yearFounded\": 1837,\n  \"numberOfEmployees\": 83000,\n  \"address\": {\n    \"city\": \"Moline\",\n    \"stateOrProvince\": \"IL\",\n    \"country\": \"US\"\n  }\n}" }
              }
            }
          ]
        },
        {
          "name": "Business — US High Risk",
          "item": [
            {
              "name": "Wells Fargo (CFPB enforcement) — HIGH",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Wells Fargo & Company\",\n  \"country\": \"US\",\n  \"ein\": \"41-0449260\",\n  \"industry\": \"banking\",\n  \"stockTicker\": \"WFC\",\n  \"stockExchange\": \"NYSE\",\n  \"address\": {\n    \"city\": \"San Francisco\",\n    \"stateOrProvince\": \"CA\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Boeing — FAA enforcement, DOJ deferred prosecution",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"The Boeing Company\",\n  \"country\": \"US\",\n  \"ein\": \"91-0425694\",\n  \"industry\": \"aerospace and defense\",\n  \"stockTicker\": \"BA\",\n  \"stockExchange\": \"NYSE\",\n  \"address\": {\n    \"city\": \"Arlington\",\n    \"stateOrProvince\": \"VA\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Purdue Pharma — DOJ settlement, opioid crisis",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Purdue Pharma LP\",\n  \"country\": \"US\",\n  \"industry\": \"pharmaceuticals\",\n  \"stateOfIncorporation\": \"DE\",\n  \"address\": {\n    \"city\": \"Stamford\",\n    \"stateOrProvince\": \"CT\",\n    \"country\": \"US\"\n  }\n}" }
              }
            }
          ]
        },
        {
          "name": "Business — Shell Company Indicators",
          "item": [
            {
              "name": "Newly formed shell (0 employees, DE registered agent)",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Global Ventures Holdings LLC\",\n  \"country\": \"US\",\n  \"stateOfIncorporation\": \"DE\",\n  \"yearFounded\": 2025,\n  \"numberOfEmployees\": 0,\n  \"address\": {\n    \"street1\": \"1209 Orange Street\",\n    \"city\": \"Wilmington\",\n    \"stateOrProvince\": \"DE\",\n    \"postalCode\": \"19801\",\n    \"country\": \"US\"\n  },\n  \"industry\": \"consulting\"\n}" }
              }
            },
            {
              "name": "Coca-Cola — Legitimate established company (LOW)",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"The Coca-Cola Company\",\n  \"country\": \"US\",\n  \"ein\": \"58-0628465\",\n  \"industry\": \"beverages\",\n  \"stockTicker\": \"KO\",\n  \"stockExchange\": \"NYSE\",\n  \"yearFounded\": 1886,\n  \"numberOfEmployees\": 80000,\n  \"address\": {\n    \"city\": \"Atlanta\",\n    \"stateOrProvince\": \"GA\",\n    \"country\": \"US\"\n  }\n}" }
              }
            }
          ]
        },
        {
          "name": "Business — Include Filter",
          "item": [
            {
              "name": "Score + Band only (minimal payload)",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business?include=score,band", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"], "query": [{ "key": "include", "value": "score,band" }] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Apple Inc\",\n  \"country\": \"US\"\n}" }
              }
            },
            {
              "name": "Score + Factors + EntityResolution + JurisdictionRisk",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/business?include=factors,entityResolution,jurisdictionRisk", "host": ["{{base_url}}"], "path": ["v1", "risk", "business"], "query": [{ "key": "include", "value": "factors,entityResolution,jurisdictionRisk" }] },
                "body": { "mode": "raw", "raw": "{\n  \"name\": \"Huawei Technologies Co Ltd\",\n  \"country\": \"CN\"\n}" }
              }
            }
          ]
        },
        {
          "name": "Individual — Sanctioned",
          "item": [
            {
              "name": "Viktor Bout (OFAC SDN) — CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Viktor\",\n  \"lastName\": \"Bout\",\n  \"country\": \"RU\",\n  \"nationality\": \"RU\",\n  \"aliases\": [\"Victor Bout\", \"Viktor Butt\"]\n}" }
              }
            }
          ]
        },
        {
          "name": "Individual — US Low Risk",
          "item": [
            {
              "name": "Clean software engineer — Sarah Chen",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Sarah\",\n  \"lastName\": \"Chen\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1990-08-12\",\n  \"employer\": \"Google LLC\",\n  \"title\": \"Senior Software Engineer\",\n  \"industry\": \"technology\",\n  \"address\": {\n    \"city\": \"Mountain View\",\n    \"stateOrProvince\": \"CA\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Clean teacher — Michael Davis",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Michael\",\n  \"lastName\": \"Davis\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1982-04-20\",\n  \"employer\": \"Austin Independent School District\",\n  \"title\": \"High School Teacher\",\n  \"industry\": \"education\",\n  \"address\": {\n    \"city\": \"Austin\",\n    \"stateOrProvince\": \"TX\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Clean CPA — Jennifer Martinez",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Jennifer\",\n  \"lastName\": \"Martinez\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1975-11-03\",\n  \"employer\": \"Deloitte LLP\",\n  \"title\": \"Audit Partner\",\n  \"industry\": \"accounting\",\n  \"address\": {\n    \"city\": \"Denver\",\n    \"stateOrProvince\": \"CO\",\n    \"country\": \"US\"\n  }\n}" }
              }
            }
          ]
        },
        {
          "name": "Individual — US High Risk",
          "item": [
            {
              "name": "Elizabeth Holmes — SEC fraud, convicted",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Elizabeth\",\n  \"lastName\": \"Holmes\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1984-02-03\",\n  \"industry\": \"healthcare technology\",\n  \"address\": {\n    \"city\": \"Houston\",\n    \"stateOrProvince\": \"TX\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Martin Shkreli — SEC securities fraud",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Martin\",\n  \"lastName\": \"Shkreli\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1983-03-17\",\n  \"industry\": \"pharmaceuticals\",\n  \"address\": {\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Bernie Madoff — Ponzi scheme, securities fraud",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Bernard\",\n  \"lastName\": \"Madoff\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1938-04-29\",\n  \"industry\": \"financial services\",\n  \"aliases\": [\"Bernie Madoff\"],\n  \"address\": {\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"country\": \"US\"\n  }\n}" }
              }
            },
            {
              "name": "Sam Bankman-Fried — DOJ 25yr, FTX fraud — CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Samuel\",\n  \"lastName\": \"Bankman-Fried\",\n  \"country\": \"US\",\n  \"dateOfBirth\": \"1992-03-06\",\n  \"industry\": \"Financial Services\",\n  \"aliases\": [\"Sam Bankman-Fried\", \"SBF\"]\n}" }
              }
            },
            {
              "name": "Do Kwon — DOJ 15yr, Terra/Luna collapse — CRITICAL",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Do Hyeong\",\n  \"lastName\": \"Kwon\",\n  \"country\": \"KR\",\n  \"dateOfBirth\": \"1991-09-06\",\n  \"industry\": \"Financial Services\",\n  \"aliases\": [\"Do Kwon\"]\n}" }
              }
            }
          ]
        },
        {
          "name": "Individual — Enhanced Fields",
          "item": [
            {
              "name": "Full profile with employer + aliases",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Maria\",\n  \"lastName\": \"Gonzalez\",\n  \"middleName\": \"Elena\",\n  \"country\": \"US\",\n  \"nationality\": \"MX\",\n  \"citizenships\": [\"US\", \"MX\"],\n  \"dateOfBirth\": \"1978-03-22\",\n  \"employer\": \"Goldman Sachs\",\n  \"title\": \"Managing Director\",\n  \"industry\": \"financial services\",\n  \"address\": {\n    \"city\": \"New York\",\n    \"stateOrProvince\": \"NY\",\n    \"country\": \"US\"\n  },\n  \"aliases\": [\"Maria E. Gonzalez\"]\n}" }
              }
            },
            {
              "name": "Healthcare professional (NPI lookup)",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/individual", "host": ["{{base_url}}"], "path": ["v1", "risk", "individual"] },
                "body": { "mode": "raw", "raw": "{\n  \"firstName\": \"Robert\",\n  \"lastName\": \"Williams\",\n  \"country\": \"US\",\n  \"npi\": \"1234567890\",\n  \"industry\": \"healthcare\",\n  \"employer\": \"Johns Hopkins Hospital\",\n  \"title\": \"Physician\",\n  \"address\": {\n    \"city\": \"Baltimore\",\n    \"stateOrProvince\": \"MD\",\n    \"country\": \"US\"\n  }\n}" }
              }
            }
          ]
        },
        {
          "name": "Batch Scoring",
          "item": [
            {
              "name": "Submit Batch — 3 businesses",
              "request": {
                "method": "POST",
                "header": [{ "key": "Content-Type", "value": "application/json" }],
                "url": { "raw": "{{base_url}}/v1/risk/batch", "host": ["{{base_url}}"], "path": ["v1", "risk", "batch"] },
                "body": { "mode": "raw", "raw": "{\n  \"entityType\": \"BUSINESS\",\n  \"entities\": [\n    { \"name\": \"Apple Inc\", \"country\": \"US\", \"industry\": \"technology\" },\n    { \"name\": \"Huawei Technologies Co Ltd\", \"country\": \"CN\", \"industry\": \"telecommunications\" },\n    { \"name\": \"Wells Fargo & Company\", \"country\": \"US\", \"industry\": \"banking\" }\n  ],\n  \"deliveryMethod\": \"POLLING\"\n}" }
              },
              "event": [{
                "listen": "test",
                "script": {
                  "exec": [
                    "var json = pm.response.json();",
                    "if (json.data && json.data.jobId) {",
                    "  pm.collectionVariables.set('batch_job_id', json.data.jobId);",
                    "}"
                  ]
                }
              }]
            },
            {
              "name": "Check Batch Status",
              "request": {
                "method": "GET",
                "url": { "raw": "{{base_url}}/v1/risk/batch/{{batch_job_id}}", "host": ["{{base_url}}"], "path": ["v1", "risk", "batch", "{{batch_job_id}}"] }
              }
            },
            {
              "name": "Get Batch Results",
              "request": {
                "method": "GET",
                "url": { "raw": "{{base_url}}/v1/risk/batch/{{batch_job_id}}/results?limit=50&offset=0", "host": ["{{base_url}}"], "path": ["v1", "risk", "batch", "{{batch_job_id}}", "results"], "query": [{ "key": "limit", "value": "50" }, { "key": "offset", "value": "0" }] }
              }
            }
          ]
        }
      ]
    },
    {
      "name": "Tariff Calculator",
      "description": "U.S. import tariff calculation with all duty layers.",
      "item": [
        {
          "name": "Calculate Tariff",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/tariffs/calculate", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "calculate"] },
            "body": { "mode": "raw", "raw": "{\n  \"htsCode\": \"8517.12.00.10\",\n  \"countryOfOrigin\": \"CN\",\n  \"declaredValue\": 50000,\n  \"entryDate\": \"2026-03-15\",\n  \"modeOfTransport\": \"OCEAN\"\n}" }
          }
        },
        {
          "name": "Smart Calculate (AI)",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/tariffs/calculate/smart", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "calculate", "smart"] },
            "body": { "mode": "raw", "raw": "{\n  \"htsCode\": \"8517.12.00.10\",\n  \"countryOfOrigin\": \"CN\",\n  \"declaredValue\": 50000,\n  \"entryDate\": \"2026-03-15\"\n}" }
          }
        },
        {
          "name": "Bulk Calculate",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/tariffs/calculate/bulk", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "calculate", "bulk"] },
            "body": { "mode": "raw", "raw": "{\n  \"items\": [\n    { \"htsCode\": \"8517.12.00.10\", \"countryOfOrigin\": \"CN\", \"declaredValue\": 50000, \"entryDate\": \"2026-03-15\" },\n    { \"htsCode\": \"6109.10.00.40\", \"countryOfOrigin\": \"VN\", \"declaredValue\": 10000, \"entryDate\": \"2026-03-15\" }\n  ]\n}" }
          }
        },
        {
          "name": "Country Comparison",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/tariffs/compare", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "compare"] },
            "body": { "mode": "raw", "raw": "{\n  \"htsCode\": \"8517.12.00.10\",\n  \"countries\": [\"CN\", \"VN\", \"MX\", \"IN\", \"KR\"],\n  \"declaredValue\": 50000,\n  \"entryDate\": \"2026-03-15\"\n}" }
          }
        },
        {
          "name": "List Provisions",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/tariffs/provisions", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "provisions"] } }
        },
        {
          "name": "Provisions — Section 301",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/tariffs/provisions/SECTION_301", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "provisions", "SECTION_301"] } }
        },
        {
          "name": "AD/CVD Orders",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/tariffs/adcvd", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "adcvd"] } }
        },
        {
          "name": "Trade Programs",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/tariffs/programs", "host": ["{{base_url}}"], "path": ["v1", "tariffs", "programs"] } }
        }
      ]
    },
    {
      "name": "Export Compliance",
      "description": "Sanctions screening, HS classification, export license determination.",
      "item": [
        {
          "name": "Restricted Party Screening — Huawei",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/restricted-party-screening", "host": ["{{base_url}}"], "path": ["v1", "compliance", "restricted-party-screening"] },
            "body": { "mode": "raw", "raw": "{\n  \"parties\": [\n    { \"name\": \"Huawei Technologies Co Ltd\", \"country\": \"CN\", \"type\": \"ENTITY\" }\n  ]\n}" }
          }
        },
        {
          "name": "Restricted Party Screening — Multiple parties",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/restricted-party-screening", "host": ["{{base_url}}"], "path": ["v1", "compliance", "restricted-party-screening"] },
            "body": { "mode": "raw", "raw": "{\n  \"parties\": [\n    { \"name\": \"Apple Inc\", \"country\": \"US\", \"type\": \"ENTITY\" },\n    { \"name\": \"Viktor Bout\", \"country\": \"RU\", \"type\": \"INDIVIDUAL\" }\n  ]\n}" }
          }
        },
        {
          "name": "Prohibited Goods — Semiconductors to China",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/prohibited-goods", "host": ["{{base_url}}"], "path": ["v1", "compliance", "prohibited-goods"] },
            "body": { "mode": "raw", "raw": "{\n  \"originCountry\": \"US\",\n  \"destinationCountry\": \"CN\",\n  \"commodityDescription\": \"advanced semiconductor manufacturing equipment with EUV lithography\"\n}" }
          }
        },
        {
          "name": "HS Code Classification — Cotton t-shirts",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/hs-classification", "host": ["{{base_url}}"], "path": ["v1", "compliance", "hs-classification"] },
            "body": { "mode": "raw", "raw": "{\n  \"commodityDescription\": \"men's cotton knit t-shirts, short sleeve, crew neck\",\n  \"originCountry\": \"VN\",\n  \"destinationCountry\": \"US\"\n}" }
          }
        },
        {
          "name": "Description Guidance — Vague description",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/description-guidance", "host": ["{{base_url}}"], "path": ["v1", "compliance", "description-guidance"] },
            "body": { "mode": "raw", "raw": "{\n  \"commodityDescription\": \"parts\"\n}" }
          }
        },
        {
          "name": "Export License — Encryption to Iran",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/export-license", "host": ["{{base_url}}"], "path": ["v1", "compliance", "export-license"] },
            "body": { "mode": "raw", "raw": "{\n  \"originCountry\": \"US\",\n  \"destinationCountry\": \"IR\",\n  \"commodityDescription\": \"encryption software AES-256 for secure communications\",\n  \"eccn\": \"5D002\"\n}" }
          }
        },
        {
          "name": "HS Code Lookup — Automotive brake pads",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/compliance/hs-lookup", "host": ["{{base_url}}"], "path": ["v1", "compliance", "hs-lookup"] },
            "body": { "mode": "raw", "raw": "{\n  \"commodityDescription\": \"automotive brake pads, ceramic, for passenger vehicles\",\n  \"useAI\": true,\n  \"maxResults\": 5\n}" }
          }
        }
      ]
    },
    {
      "name": "AES Filing",
      "description": "Electronic Export Information (EEI) validation and submission.",
      "item": [
        {
          "name": "Validate EEI — Laptops to China",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/aes/validate", "host": ["{{base_url}}"], "path": ["v1", "aes", "validate"] },
            "body": { "mode": "raw", "raw": "{\n  \"usppi\": {\n    \"companyName\": \"Acme Exports Inc\",\n    \"ein\": \"12-3456789\",\n    \"address\": { \"line1\": \"123 Export Blvd\", \"city\": \"Houston\", \"state\": \"TX\", \"zip\": \"77001\", \"country\": \"US\" },\n    \"contactName\": \"John Doe\",\n    \"phone\": \"+1-555-0100\"\n  },\n  \"ultimateConsignee\": {\n    \"companyName\": \"Beijing Trade Co\",\n    \"type\": \"DIRECT_CONSUMER\",\n    \"address\": { \"line1\": \"88 Zhongguancun\", \"city\": \"Beijing\", \"country\": \"CN\" }\n  },\n  \"portOfExport\": \"5301\",\n  \"portOfUnlading\": \"57000\",\n  \"countryOfUltimateDestination\": \"CN\",\n  \"modeOfTransport\": \"OCEAN\",\n  \"dateOfExport\": \"2026-04-01\",\n  \"filingType\": \"STANDARD\",\n  \"relatedPartyTransaction\": false,\n  \"routedExportTransaction\": false,\n  \"hazardousMaterials\": false,\n  \"commodities\": [\n    {\n      \"scheduleBNumber\": \"8471.30.0100\",\n      \"description\": \"Laptop computers\",\n      \"quantity1\": 100,\n      \"unitOfMeasure1\": \"NO\",\n      \"shippingWeightKg\": 250,\n      \"value\": 75000,\n      \"exportInformationCode\": \"OS\",\n      \"licenseType\": \"C33\",\n      \"originState\": \"TX\",\n      \"dfIndicator\": \"N\"\n    }\n  ]\n}" }
          }
        },
        {
          "name": "Check Filing Required — China $5000",
          "request": {
            "method": "GET",
            "url": { "raw": "{{base_url}}/v1/aes/filing-required?destination=CN&value=5000", "host": ["{{base_url}}"], "path": ["v1", "aes", "filing-required"], "query": [{ "key": "destination", "value": "CN" }, { "key": "value", "value": "5000" }] }
          }
        },
        {
          "name": "Check Filing Required — Canada $1500 (below threshold)",
          "request": {
            "method": "GET",
            "url": { "raw": "{{base_url}}/v1/aes/filing-required?destination=CA&value=1500", "host": ["{{base_url}}"], "path": ["v1", "aes", "filing-required"], "query": [{ "key": "destination", "value": "CA" }, { "key": "value", "value": "1500" }] }
          }
        },
        {
          "name": "List Filings",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/filings?limit=10", "host": ["{{base_url}}"], "path": ["v1", "aes", "filings"], "query": [{ "key": "limit", "value": "10" }] } }
        },
        {
          "name": "WebLink Info",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/weblink-info", "host": ["{{base_url}}"], "path": ["v1", "aes", "weblink-info"] } }
        },
        {
          "name": "Transport Modes",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/reference/transport-modes", "host": ["{{base_url}}"], "path": ["v1", "aes", "reference", "transport-modes"] } }
        },
        {
          "name": "License Types",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/reference/license-types", "host": ["{{base_url}}"], "path": ["v1", "aes", "reference", "license-types"] } }
        },
        {
          "name": "Export Info Codes",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/reference/export-info-codes", "host": ["{{base_url}}"], "path": ["v1", "aes", "reference", "export-info-codes"] } }
        },
        {
          "name": "Exemption Codes",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/reference/exemption-codes", "host": ["{{base_url}}"], "path": ["v1", "aes", "reference", "exemption-codes"] } }
        },
        {
          "name": "Embargoed Countries",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aes/reference/embargoed-countries", "host": ["{{base_url}}"], "path": ["v1", "aes", "reference", "embargoed-countries"] } }
        }
      ]
    },
    {
      "name": "HS Code Lookup",
      "description": "Harmonized Tariff Schedule search and AI classification.",
      "item": [
        {
          "name": "Search — Cotton",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/hs/search?q=cotton&limit=10", "host": ["{{base_url}}"], "path": ["v1", "hs", "search"], "query": [{ "key": "q", "value": "cotton" }, { "key": "limit", "value": "10" }] } }
        },
        {
          "name": "Classify — Solar panels",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/hs/classify", "host": ["{{base_url}}"], "path": ["v1", "hs", "classify"] },
            "body": { "mode": "raw", "raw": "{\n  \"description\": \"monocrystalline silicon photovoltaic solar panels, 400W output\",\n  \"countryOfOrigin\": \"CN\",\n  \"intendedUse\": \"residential solar power generation\"\n}" }
          }
        },
        {
          "name": "Lookup — HTS 8517.12 (Smartphones)",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/hs/lookup/8517.12", "host": ["{{base_url}}"], "path": ["v1", "hs", "lookup", "8517.12"] } }
        },
        {
          "name": "HTS Sections",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/hs/reference/sections", "host": ["{{base_url}}"], "path": ["v1", "hs", "reference", "sections"] } }
        },
        {
          "name": "GRI Rules",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/hs/reference/gri", "host": ["{{base_url}}"], "path": ["v1", "hs", "reference", "gri"] } }
        }
      ]
    },
    {
      "name": "Firearms & Explosives",
      "description": "ATF Federal Firearms License lookup and verification.",
      "item": [
        {
          "name": "Search FFLs — Texas dealers",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/firearms/ffl/search?state=TX&licenseType=01&limit=10", "host": ["{{base_url}}"], "path": ["v1", "firearms", "ffl", "search"], "query": [{ "key": "state", "value": "TX" }, { "key": "licenseType", "value": "01" }, { "key": "limit", "value": "10" }] } }
        },
        {
          "name": "Verify FFL",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/firearms/ffl/verify/5-73-123-01-8A-12345", "host": ["{{base_url}}"], "path": ["v1", "firearms", "ffl", "verify", "5-73-123-01-8A-12345"] } }
        },
        {
          "name": "Parse FFL Number",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/firearms/ffl/parse/5-73-123-01-8A-12345", "host": ["{{base_url}}"], "path": ["v1", "firearms", "ffl", "parse", "5-73-123-01-8A-12345"] } }
        },
        {
          "name": "FFL Stats",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/firearms/ffl/stats", "host": ["{{base_url}}"], "path": ["v1", "firearms", "ffl", "stats"] } }
        },
        {
          "name": "Reference: FFL Types",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/firearms/reference/ffl-types", "host": ["{{base_url}}"], "path": ["v1", "firearms", "reference", "ffl-types"] } }
        }
      ]
    },
    {
      "name": "Pharma & Controlled Substances",
      "description": "DEA registration and FDA drug data.",
      "item": [
        {
          "name": "DEA Lookup",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/pharma/dea/lookup/BJ1234563", "host": ["{{base_url}}"], "path": ["v1", "pharma", "dea", "lookup", "BJ1234563"] } }
        },
        {
          "name": "Validate DEA Number",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/pharma/dea/validate/BJ1234563", "host": ["{{base_url}}"], "path": ["v1", "pharma", "dea", "validate", "BJ1234563"] } }
        },
        {
          "name": "FDA Drug Search — Aspirin",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/pharma/fda/drug/search?q=aspirin", "host": ["{{base_url}}"], "path": ["v1", "pharma", "fda", "drug", "search"], "query": [{ "key": "q", "value": "aspirin" }] } }
        },
        {
          "name": "Drug Recalls — Metformin",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/pharma/fda/recalls?drug=metformin", "host": ["{{base_url}}"], "path": ["v1", "pharma", "fda", "recalls"], "query": [{ "key": "drug", "value": "metformin" }] } }
        },
        {
          "name": "DEA Schedules",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/pharma/reference/dea-schedules", "host": ["{{base_url}}"], "path": ["v1", "pharma", "reference", "dea-schedules"] } }
        }
      ]
    },
    {
      "name": "Financial & Securities",
      "description": "SEC EDGAR, FDIC, FINRA lookups.",
      "item": [
        {
          "name": "SEC Search — Apple",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/financial/sec/search?q=apple", "host": ["{{base_url}}"], "path": ["v1", "financial", "sec", "search"], "query": [{ "key": "q", "value": "apple" }] } }
        },
        {
          "name": "SEC Filings — Apple (10-K)",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/financial/sec/filings/0000320193?form=10-K", "host": ["{{base_url}}"], "path": ["v1", "financial", "sec", "filings", "0000320193"], "query": [{ "key": "form", "value": "10-K" }] } }
        },
        {
          "name": "FDIC Bank Search — Chase",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/financial/fdic/search?q=chase", "host": ["{{base_url}}"], "path": ["v1", "financial", "fdic", "search"], "query": [{ "key": "q", "value": "chase" }] } }
        },
        {
          "name": "FINRA Broker Search — Smith",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/financial/finra/brokers?name=smith", "host": ["{{base_url}}"], "path": ["v1", "financial", "finra", "brokers"], "query": [{ "key": "name", "value": "smith" }] } }
        }
      ]
    },
    {
      "name": "Aviation & Transport",
      "description": "FAA aircraft registry, FMCSA carrier data.",
      "item": [
        {
          "name": "FAA Aircraft — Boeing",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aviation/faa/aircraft/search?manufacturer=boeing", "host": ["{{base_url}}"], "path": ["v1", "aviation", "faa", "aircraft", "search"], "query": [{ "key": "manufacturer", "value": "boeing" }] } }
        },
        {
          "name": "N-Number Lookup",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aviation/faa/aircraft/N12345", "host": ["{{base_url}}"], "path": ["v1", "aviation", "faa", "aircraft", "N12345"] } }
        },
        {
          "name": "FMCSA Search — FedEx",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/aviation/fmcsa/search?name=fedex", "host": ["{{base_url}}"], "path": ["v1", "aviation", "fmcsa", "search"], "query": [{ "key": "name", "value": "fedex" }] } }
        }
      ]
    },
    {
      "name": "Professional & Business",
      "description": "SAM.gov entity search.",
      "item": [
        {
          "name": "SAM.gov Search — Lockheed Martin",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/business/sam/search?q=lockheed+martin", "host": ["{{base_url}}"], "path": ["v1", "business", "sam", "search"], "query": [{ "key": "q", "value": "lockheed martin" }] } }
        },
        {
          "name": "Entity by UEI",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/business/sam/entity/ZQGGHJH74DW7", "host": ["{{base_url}}"], "path": ["v1", "business", "sam", "entity", "ZQGGHJH74DW7"] } }
        }
      ]
    },
    {
      "name": "Legal & Enforcement",
      "description": "OIG LEIE exclusions, CFPB enforcement & complaints, DOJ press releases, SEC litigation, FTC/CFTC enforcement, FinCEN advisories, GDELT adverse media, CourtListener RECAP, and news aggregator.",
      "item": [
        {
          "name": "OIG LEIE Search — Smith in Texas",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/oig/search?lastName=smith&state=TX", "host": ["{{base_url}}"], "path": ["v1", "legal", "oig", "search"], "query": [{ "key": "lastName", "value": "smith" }, { "key": "state", "value": "TX" }] } }
        },
        {
          "name": "OIG NPI Exclusion Check",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/oig/check/1234567890", "host": ["{{base_url}}"], "path": ["v1", "legal", "oig", "check", "1234567890"] } }
        },
        {
          "name": "CFPB Enforcement — Wells Fargo",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/cfpb/enforcement?q=wells+fargo", "host": ["{{base_url}}"], "path": ["v1", "legal", "cfpb", "enforcement"], "query": [{ "key": "q", "value": "wells fargo" }] } }
        },
        {
          "name": "CFPB Consumer Complaints — Comerica",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/cfpb/complaints?q=comerica", "host": ["{{base_url}}"], "path": ["v1", "legal", "cfpb", "complaints"], "query": [{ "key": "q", "value": "comerica" }] } }
        },
        {
          "name": "DOJ Press Releases — Purdue Pharma",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/doj/press-releases?q=purdue+pharma", "host": ["{{base_url}}"], "path": ["v1", "legal", "doj", "press-releases"], "query": [{ "key": "q", "value": "purdue pharma" }] } }
        },
        {
          "name": "SEC Litigation Releases — Terraform Labs",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/sec/litigation-releases?q=terraform", "host": ["{{base_url}}"], "path": ["v1", "legal", "sec", "litigation-releases"], "query": [{ "key": "q", "value": "terraform" }] } }
        },
        {
          "name": "FTC Enforcement — Meta",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/ftc/enforcement?q=meta", "host": ["{{base_url}}"], "path": ["v1", "legal", "ftc", "enforcement"], "query": [{ "key": "q", "value": "meta" }] } }
        },
        {
          "name": "CFTC Enforcement — Binance",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/cftc/enforcement?q=binance", "host": ["{{base_url}}"], "path": ["v1", "legal", "cftc", "enforcement"], "query": [{ "key": "q", "value": "binance" }] } }
        },
        {
          "name": "FinCEN Advisories — Iran",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/fincen/advisories?q=iran&country=IR", "host": ["{{base_url}}"], "path": ["v1", "legal", "fincen", "advisories"], "query": [{ "key": "q", "value": "iran" }, { "key": "country", "value": "IR" }] } }
        },
        {
          "name": "GDELT Adverse Media — Wirecard",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/gdelt/adverse-media?q=wirecard&timespan=30d", "host": ["{{base_url}}"], "path": ["v1", "legal", "gdelt", "adverse-media"], "query": [{ "key": "q", "value": "wirecard" }, { "key": "timespan", "value": "30d" }] } }
        },
        {
          "name": "CourtListener RECAP — Purdue Pharma",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/courtlistener/search?q=purdue+pharma&type=d", "host": ["{{base_url}}"], "path": ["v1", "legal", "courtlistener", "search"], "query": [{ "key": "q", "value": "purdue pharma" }, { "key": "type", "value": "d" }] } }
        },
        {
          "name": "News Aggregator — Boeing",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/news/search?q=boeing", "host": ["{{base_url}}"], "path": ["v1", "legal", "news", "search"], "query": [{ "key": "q", "value": "boeing" }] } }
        },
        {
          "name": "State Debarment — Raytheon, CA",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/state/debarment?q=raytheon&state=CA", "host": ["{{base_url}}"], "path": ["v1", "legal", "state", "debarment"], "query": [{ "key": "q", "value": "raytheon" }, { "key": "state", "value": "CA" }] } }
        },
        {
          "name": "State AG Actions — Exxon, NY",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/legal/state/ag-actions?q=exxon&state=NY", "host": ["{{base_url}}"], "path": ["v1", "legal", "state", "ag-actions"], "query": [{ "key": "q", "value": "exxon" }, { "key": "state", "value": "NY" }] } }
        }
      ]
    },
    {
      "name": "Maritime & Port Security",
      "description": "Vessel search, C-TPAT partner lookup.",
      "item": [
        {
          "name": "Vessel Search — Maersk",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/maritime/vessels?name=maersk", "host": ["{{base_url}}"], "path": ["v1", "maritime", "vessels"], "query": [{ "key": "name", "value": "maersk" }] } }
        },
        {
          "name": "IMO Lookup",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/maritime/vessels/imo/9811000", "host": ["{{base_url}}"], "path": ["v1", "maritime", "vessels", "imo", "9811000"] } }
        },
        {
          "name": "C-TPAT Search — Maersk",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/maritime/ctpat?name=MAERSK", "host": ["{{base_url}}"], "path": ["v1", "maritime", "ctpat"], "query": [{ "key": "name", "value": "MAERSK" }] } }
        }
      ]
    },
    {
      "name": "FCC Licensing",
      "description": "FCC Universal Licensing System search.",
      "item": [
        {
          "name": "License Search — Verizon",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/fcc/licenses?name=VERIZON", "host": ["{{base_url}}"], "path": ["v1", "fcc", "licenses"], "query": [{ "key": "name", "value": "VERIZON" }] } }
        },
        {
          "name": "Call Sign Lookup",
          "request": { "method": "GET", "url": { "raw": "{{base_url}}/v1/fcc/licenses/callsign/WREK", "host": ["{{base_url}}"], "path": ["v1", "fcc", "licenses", "callsign", "WREK"] } }
        }
      ]
    },
    {
      "name": "AI Assistant",
      "description": "Compliance-focused AI chat assistant.",
      "item": [
        {
          "name": "Chat — HS code question",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/ai/chat", "host": ["{{base_url}}"], "path": ["v1", "ai", "chat"] },
            "body": { "mode": "raw", "raw": "{\n  \"messages\": [\n    { \"role\": \"user\", \"content\": \"What is an HS code and how do I classify my product?\" }\n  ]\n}" }
          }
        },
        {
          "name": "Chat — Export compliance question",
          "request": {
            "method": "POST",
            "header": [{ "key": "Content-Type", "value": "application/json" }],
            "url": { "raw": "{{base_url}}/v1/ai/chat", "host": ["{{base_url}}"], "path": ["v1", "ai", "chat"] },
            "body": { "mode": "raw", "raw": "{\n  \"messages\": [\n    { \"role\": \"user\", \"content\": \"I need to export encryption software to Germany. Do I need a license?\" }\n  ]\n}" }
          }
        }
      ]
    }
  ]
}
