{
  "info": {
    "name": "Micron Delta Protocol (2026-06-11)",
    "description": "Auto-generated from openapi.yaml. Set {{api_key}} to your sandbox key (md_test_...). {{base_url}} defaults to the sandbox host; switch to https://api.microndelta.com for live.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{api_key}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "base_url",
      "value": "https://sandbox.api.microndelta.com"
    },
    {
      "key": "api_key",
      "value": "md_test_REPLACE_ME"
    }
  ],
  "item": [
    {
      "name": "Health",
      "item": [
        {
          "name": "Health check",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/health",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "health"
              ],
              "variable": []
            },
            "description": "Returns service status and API version."
          }
        },
        {
          "name": "List capabilities",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/capabilities",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "capabilities"
              ],
              "variable": []
            },
            "description": "Returns available API modules, environments, enabled feature flags, and access posture."
          }
        }
      ]
    },
    {
      "name": "Organizations",
      "item": [
        {
          "name": "Create organization",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations"
              ],
              "variable": []
            },
            "description": "Creates an organization tenant for internal, counsel, recovery operator, or partner use.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"type\": \"string\",\n  \"retention_policy\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List organizations",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations"
              ],
              "variable": []
            },
            "description": "Lists organizations accessible to the caller."
          }
        },
        {
          "name": "Get organization",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations/{organization_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations",
                ":organization_id"
              ],
              "variable": [
                {
                  "key": "organization_id",
                  "value": "<organization_id>"
                }
              ]
            },
            "description": "Gets an organization and feature flags."
          }
        },
        {
          "name": "Update organization",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations/{organization_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations",
                ":organization_id"
              ],
              "variable": [
                {
                  "key": "organization_id",
                  "value": "<organization_id>"
                }
              ]
            },
            "description": "Updates organization settings and retention defaults.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"retention_policy\": \"string\",\n  \"features\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Issue API key",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations/{organization_id}/api-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations",
                ":organization_id",
                "api-keys"
              ],
              "variable": [
                {
                  "key": "organization_id",
                  "value": "<organization_id>"
                }
              ]
            },
            "description": "Issues a scoped API key for sandbox or approved production workflows.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"environment\": \"sandbox\",\n  \"scopes\": [\n    \"string\"\n  ],\n  \"matter_ids\": [\n    \"string\"\n  ],\n  \"expires_at\": \"2026-06-01 12:00:00+00:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List API keys",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations/{organization_id}/api-keys",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations",
                ":organization_id",
                "api-keys"
              ],
              "variable": [
                {
                  "key": "organization_id",
                  "value": "<organization_id>"
                }
              ]
            },
            "description": "Lists API keys and status metadata without revealing secret material."
          }
        },
        {
          "name": "Invite user",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations/{organization_id}/users",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations",
                ":organization_id",
                "users"
              ],
              "variable": [
                {
                  "key": "organization_id",
                  "value": "<organization_id>"
                }
              ]
            },
            "description": "Invites a user and assigns role/matter permissions.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"string\",\n  \"roles\": [\n    \"string\"\n  ],\n  \"name\": \"string\",\n  \"matter_ids\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List users",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/organizations/{organization_id}/users",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "organizations",
                ":organization_id",
                "users"
              ],
              "variable": [
                {
                  "key": "organization_id",
                  "value": "<organization_id>"
                }
              ]
            },
            "description": "Lists users in an organization."
          }
        }
      ]
    },
    {
      "name": "Webhook Endpoints",
      "item": [
        {
          "name": "Create a webhook endpoint",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhook_endpoints",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhook_endpoints"
              ],
              "variable": []
            },
            "description": "Registers an HTTPS endpoint for signed event deliveries. The signing_secret is returned once, on this response only \u2014 store it; you need it to verify MD-Signature headers.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"https://example.com/md/webhooks\",\n  \"enabled_events\": [\n    \"judgment.created\",\n    \"packet.created\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List webhook endpoints",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhook_endpoints",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhook_endpoints"
              ],
              "variable": []
            },
            "description": ""
          }
        },
        {
          "name": "Retrieve a webhook endpoint",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhook_endpoints/{webhook_endpoint_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhook_endpoints",
                ":webhook_endpoint_id"
              ],
              "variable": [
                {
                  "key": "webhook_endpoint_id",
                  "value": "<webhook_endpoint_id>"
                }
              ]
            },
            "description": ""
          }
        },
        {
          "name": "Update a webhook endpoint",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhook_endpoints/{webhook_endpoint_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhook_endpoints",
                ":webhook_endpoint_id"
              ],
              "variable": [
                {
                  "key": "webhook_endpoint_id",
                  "value": "<webhook_endpoint_id>"
                }
              ]
            },
            "description": "Update the URL, event filter, or status. Disabled endpoints stop receiving deliveries immediately.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"url\": \"string\",\n  \"enabled_events\": [\n    \"string\"\n  ],\n  \"status\": \"enabled\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Delete a webhook endpoint",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/webhook_endpoints/{webhook_endpoint_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "webhook_endpoints",
                ":webhook_endpoint_id"
              ],
              "variable": [
                {
                  "key": "webhook_endpoint_id",
                  "value": "<webhook_endpoint_id>"
                }
              ]
            },
            "description": ""
          }
        }
      ]
    },
    {
      "name": "Matters",
      "item": [
        {
          "name": "Create matter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters"
              ],
              "variable": []
            },
            "description": "Creates a recovery matter and establishes the primary authority object container.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"mode\": \"string\",\n  \"lead_counsel\": \"string\",\n  \"economics\": {},\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List matters",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters"
              ],
              "variable": []
            },
            "description": "Lists matters available to the caller, filtered by role and matter permission."
          }
        },
        {
          "name": "Get matter",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters/{matter_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters",
                ":matter_id"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Gets a matter with summary status."
          }
        },
        {
          "name": "Update matter",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters/{matter_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters",
                ":matter_id"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Updates matter metadata, mode, counsel, economics, and retention settings.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"status\": \"string\",\n  \"lead_counsel\": \"string\",\n  \"economics\": {},\n  \"retention_policy\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get matter dashboard",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters/{matter_id}/dashboard",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters",
                ":matter_id",
                "dashboard"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Returns command dashboard metrics for a matter."
          }
        },
        {
          "name": "Close matter",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters/{matter_id}/close",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters",
                ":matter_id",
                "close"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Closes a matter as paid, settled, exhausted, stayed, or administratively closed.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"reason\": \"paid\",\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Judgments",
      "item": [
        {
          "name": "Intake judgment",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/intake",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                "intake"
              ],
              "variable": []
            },
            "description": "Creates a structured judgment record from entered fields and optional uploaded source references.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"court\": \"string\",\n  \"case_number\": \"string\",\n  \"jurisdiction\": \"string\",\n  \"creditor\": \"string\",\n  \"debtor\": \"string\",\n  \"amount\": {\n    \"amount\": 123.45,\n    \"currency\": \"string\",\n    \"valuation_time\": \"2026-06-01 12:00:00+00:00\"\n  },\n  \"date_entered\": \"2026-06-01\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get judgment",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/{judgment_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                ":judgment_id"
              ],
              "variable": [
                {
                  "key": "judgment_id",
                  "value": "<judgment_id>"
                }
              ]
            },
            "description": "Gets judgment, validation, deadlines, linked matter, and balance summary."
          }
        },
        {
          "name": "Update judgment",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/{judgment_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                ":judgment_id"
              ],
              "variable": [
                {
                  "key": "judgment_id",
                  "value": "<judgment_id>"
                }
              ]
            },
            "description": "Updates judgment metadata and review flags.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"string\",\n  \"appeal_stay_status\": \"string\",\n  \"bankruptcy_status\": \"string\",\n  \"renewal_deadline\": \"2026-06-01\",\n  \"review_state\": {\n    \"review_required\": true,\n    \"review_status\": \"not_required\",\n    \"review_owner\": \"string\",\n    \"review_notes\": \"string\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Validate judgment readiness",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/{judgment_id}/validate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                ":judgment_id",
                "validate"
              ],
              "variable": [
                {
                  "key": "judgment_id",
                  "value": "<judgment_id>"
                }
              ]
            },
            "description": "Runs authority, stay/appeal/bankruptcy, consumer/commercial, and required-document gates.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"checks\": [\n    \"string\"\n  ],\n  \"consumer_debt\": true,\n  \"bankruptcy_known\": true,\n  \"appeal_stay_known\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get judgment deadlines",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/{judgment_id}/deadlines",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                ":judgment_id",
                "deadlines"
              ],
              "variable": [
                {
                  "key": "judgment_id",
                  "value": "<judgment_id>"
                }
              ]
            },
            "description": "Returns renewal, service, response, hearing, packet, and monitoring deadlines."
          }
        },
        {
          "name": "Set enforcement profile",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/{judgment_id}/enforcement-profile",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                ":judgment_id",
                "enforcement-profile"
              ],
              "variable": [
                {
                  "key": "judgment_id",
                  "value": "<judgment_id>"
                }
              ]
            },
            "description": "Sets Measured, Assertive, or Maximum Lawful posture after compliance gates.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"profile\": \"measured\",\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Generate enforcement plan",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/judgments/{judgment_id}/enforcement-plan",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "judgments",
                ":judgment_id",
                "enforcement-plan"
              ],
              "variable": [
                {
                  "key": "judgment_id",
                  "value": "<judgment_id>"
                }
              ]
            },
            "description": "Generates a lawful action plan from judgment, debtor graph, crypto map, exchange opportunities, issuer opportunities, sanctions gates, and selected profile.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"profile\": \"measured\",\n  \"constraints\": {\n    \"consumer_debt\": true,\n    \"bankruptcy_known\": true,\n    \"appeal_stay_known\": true,\n    \"sanctions_review_required\": true\n  },\n  \"known_wallets\": [\n    \"string\"\n  ],\n  \"known_exchanges\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Claimants",
      "item": [
        {
          "name": "Add claimant",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters/{matter_id}/claimants",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters",
                ":matter_id",
                "claimants"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Adds claimant, creditor, assignee, or recovery interest holder to a matter.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"role\": \"string\",\n  \"economics\": {},\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List claimants",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/matters/{matter_id}/claimants",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "matters",
                ":matter_id",
                "claimants"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Lists matter claimants and recovery economics."
          }
        },
        {
          "name": "Get claimant",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claimants/{claimant_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claimants",
                ":claimant_id"
              ],
              "variable": [
                {
                  "key": "claimant_id",
                  "value": "<claimant_id>"
                }
              ]
            },
            "description": "Gets claimant and economics terms."
          }
        },
        {
          "name": "Update claimant",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claimants/{claimant_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claimants",
                ":claimant_id"
              ],
              "variable": [
                {
                  "key": "claimant_id",
                  "value": "<claimant_id>"
                }
              ]
            },
            "description": "Updates claimant terms and review status.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string\",\n  \"economics\": {},\n  \"review_state\": {\n    \"review_required\": true,\n    \"review_status\": \"not_required\",\n    \"review_owner\": \"string\",\n    \"review_notes\": \"string\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Debtors",
      "item": [
        {
          "name": "Create debtor/adversary",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/debtors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "debtors"
              ],
              "variable": []
            },
            "description": "Creates a debtor, adversary, nominee, entity, or related enforcement subject.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"type\": \"string\",\n  \"legal_name\": \"string\",\n  \"aliases\": [\n    \"string\"\n  ],\n  \"identifiers\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List debtors",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/debtors",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "debtors"
              ],
              "variable": []
            },
            "description": "Lists debtors/adversaries available to the caller."
          }
        },
        {
          "name": "Get debtor/adversary",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/debtors/{debtor_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "debtors",
                ":debtor_id"
              ],
              "variable": [
                {
                  "key": "debtor_id",
                  "value": "<debtor_id>"
                }
              ]
            },
            "description": "Gets profile, aliases, wallets, assets, and review status."
          }
        },
        {
          "name": "Update debtor/adversary",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/debtors/{debtor_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "debtors",
                ":debtor_id"
              ],
              "variable": [
                {
                  "key": "debtor_id",
                  "value": "<debtor_id>"
                }
              ]
            },
            "description": "Updates profile and linked identifiers.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"legal_name\": \"string\",\n  \"aliases\": [\n    \"string\"\n  ],\n  \"identifiers\": {},\n  \"review_state\": {\n    \"review_required\": true,\n    \"review_status\": \"not_required\",\n    \"review_owner\": \"string\",\n    \"review_notes\": \"string\"\n  }\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Build debtor graph",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/debtors/{debtor_id}/graph",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "debtors",
                ":debtor_id",
                "graph"
              ],
              "variable": [
                {
                  "key": "debtor_id",
                  "value": "<debtor_id>"
                }
              ]
            },
            "description": "Builds debtor/adversary graph with aliases, entities, wallets, service targets, public records, and source-linked claims.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"include_sources\": [\n    \"string\"\n  ],\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create asset hypotheses",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/debtors/{debtor_id}/asset-hypotheses",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "debtors",
                ":debtor_id",
                "asset-hypotheses"
              ],
              "variable": [
                {
                  "key": "debtor_id",
                  "value": "<debtor_id>"
                }
              ]
            },
            "description": "Generates source-linked asset hypotheses from debtor graph, judgment data, relationship data, and crypto attribution.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"asset_classes\": [\n    \"string\"\n  ],\n  \"min_confidence\": 123.45\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Relationships",
      "item": [
        {
          "name": "Create relationship",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/relationships",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "relationships"
              ],
              "variable": []
            },
            "description": "Creates an exchange, issuer, counsel, vendor, LE-only channel, receiver, special master, claimant, or counterparty relationship object.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"counterparty_type\": \"string\",\n  \"counterparty_name\": \"string\",\n  \"channel_type\": \"string\",\n  \"usable_by_meridian\": true,\n  \"usable_by_counsel\": true,\n  \"usable_by_law_enforcement\": true,\n  \"authorized_submitter_required\": true,\n  \"packet_types_supported\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List relationships",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/relationships",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "relationships"
              ],
              "variable": []
            },
            "description": "Lists relationship registry objects."
          }
        },
        {
          "name": "Get relationship",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/relationships/{relationship_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "relationships",
                ":relationship_id"
              ],
              "variable": [
                {
                  "key": "relationship_id",
                  "value": "<relationship_id>"
                }
              ]
            },
            "description": "Gets channel type, allowed users, packet support, and contact history."
          }
        },
        {
          "name": "Update relationship",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/relationships/{relationship_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "relationships",
                ":relationship_id"
              ],
              "variable": [
                {
                  "key": "relationship_id",
                  "value": "<relationship_id>"
                }
              ]
            },
            "description": "Updates channel metadata, allowed use, and risk levels.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"channel_type\": \"string\",\n  \"packet_types_supported\": [\n    \"string\"\n  ],\n  \"risk_level\": \"string\",\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Add contact log",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/relationships/{relationship_id}/contact-log",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "relationships",
                ":relationship_id",
                "contact-log"
              ],
              "variable": [
                {
                  "key": "relationship_id",
                  "value": "<relationship_id>"
                }
              ]
            },
            "description": "Records a relationship contact attempt, authorized sender, packet ID, outcome, and response state.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"contact_type\": \"string\",\n  \"packet_id\": \"string\",\n  \"outcome\": \"string\",\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get counterparty relationships",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/relationships/counterparties/{counterparty_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "relationships",
                "counterparties",
                ":counterparty_id"
              ],
              "variable": [
                {
                  "key": "counterparty_id",
                  "value": "<counterparty_id>"
                }
              ]
            },
            "description": "Gets all relationships, packets, and response history for an exchange, issuer, vendor, or other counterparty."
          }
        }
      ]
    },
    {
      "name": "Attribution",
      "item": [
        {
          "name": "Import wallets",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/attribution/wallets/import",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "attribution",
                "wallets",
                "import"
              ],
              "variable": []
            },
            "description": "Imports wallet addresses with matter, evidence, source, role, and confidence context.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallets\": [\n    {\n      \"wallet_id\": \"...\",\n      \"address\": \"...\",\n      \"network\": \"...\",\n      \"role\": \"...\",\n      \"confidence\": \"...\",\n      \"source_refs\": \"...\"\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create attribution graph",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/attribution/graph",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "attribution",
                "graph"
              ],
              "variable": []
            },
            "description": "Creates or refreshes a source-linked graph of wallets, entities, exchanges, claims, contradictions, and confidence scores.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallet_ids\": [\n    \"string\"\n  ],\n  \"include_contradictions\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create attribution claim",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/attribution/claims",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "attribution",
                "claims"
              ],
              "variable": []
            },
            "description": "Creates a single attribution claim with subject, predicate, object, source basis, confidence, and review state.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"subject\": \"string\",\n  \"predicate\": \"string\",\n  \"object\": \"string\",\n  \"source_type\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"confidence\": 123.45,\n  \"basis\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get attribution graph",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/attribution/graphs/{graph_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "attribution",
                "graphs",
                ":graph_id"
              ],
              "variable": [
                {
                  "key": "graph_id",
                  "value": "<graph_id>"
                }
              ]
            },
            "description": "Gets an attribution graph and source manifest."
          }
        },
        {
          "name": "Score attribution",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/attribution/confidence-score",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "attribution",
                "confidence-score"
              ],
              "variable": []
            },
            "description": "Scores attribution claims based on evidence hierarchy, corroboration, contradictions, source type, and review status.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"claim_id\": \"string\",\n  \"evidence_tier\": \"string\",\n  \"corroboration\": [\n    \"string\"\n  ],\n  \"contradictions\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Network Attribution",
      "item": [
        {
          "name": "Add network attribution signal",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/network-attribution/signals",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "network-attribution",
                "signals"
              ],
              "variable": []
            },
            "description": "Adds lawful auxiliary IP/network/provider signal with source restrictions and confidence level.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"signal_type\": \"string\",\n  \"source\": \"string\",\n  \"wallet_address\": \"string\",\n  \"legal_process_id\": \"string\",\n  \"timestamp\": \"2026-06-01 12:00:00+00:00\",\n  \"raw_value_redacted\": \"string\",\n  \"privacy_restrictions\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Correlate network signals",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/network-attribution/correlate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "network-attribution",
                "correlate"
              ],
              "variable": []
            },
            "description": "Correlates wallet, exchange, provider, claimant, domain, cloud, and telemetry signals without treating IP as standalone proof.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallet_ids\": [\n    \"string\"\n  ],\n  \"signal_ids\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get network attribution",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/network-attribution/{network_attribution_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "network-attribution",
                ":network_attribution_id"
              ],
              "variable": [
                {
                  "key": "network_attribution_id",
                  "value": "<network_attribution_id>"
                }
              ]
            },
            "description": "Gets a network signal/correlation result with privacy restrictions and legal process provenance."
          }
        }
      ]
    },
    {
      "name": "Crypto",
      "item": [
        {
          "name": "Create crypto asset map",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/crypto/asset-map",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "crypto",
                "asset-map"
              ],
              "variable": []
            },
            "description": "Maps known and suspected crypto exposure: wallets, token balances, transaction timelines, exchange hypotheses, stablecoins, NFTs, DeFi, bridges, and confidence scores.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"chains\": [\n    \"string\"\n  ],\n  \"include_stablecoins\": true,\n  \"include_exchanges\": true,\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create transaction timeline",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/crypto/transaction-timeline",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "crypto",
                "transaction-timeline"
              ],
              "variable": []
            },
            "description": "Builds a source-linked transaction timeline for a wallet set, matter, token, chain, or target cluster.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"from\": \"2026-06-01 12:00:00+00:00\",\n  \"to\": \"2026-06-01 12:00:00+00:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create exchange hypotheses",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/crypto/exchange-hypotheses",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "crypto",
                "exchange-hypotheses"
              ],
              "variable": []
            },
            "description": "Creates exchange/VASP off-ramp hypotheses with confidence, evidence, and packet readiness.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"min_confidence\": 123.45\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Analyze stablecoin exposure",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/crypto/stablecoin-exposure",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "crypto",
                "stablecoin-exposure"
              ],
              "variable": []
            },
            "description": "Identifies freeze-capable or issuer-remediation-relevant stablecoin exposure and packet opportunities.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"assets\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get crypto asset map",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/crypto/asset-map/{map_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "crypto",
                "asset-map",
                ":map_id"
              ],
              "variable": [
                {
                  "key": "map_id",
                  "value": "<map_id>"
                }
              ]
            },
            "description": "Gets crypto asset map and source manifest."
          }
        }
      ]
    },
    {
      "name": "Claw",
      "item": [
        {
          "name": "Create Claw campaign",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns"
              ],
              "variable": []
            },
            "description": "Creates a lawful enforcement campaign around a judgment, target set, exchange/issuer opportunities, sanctions gates, and economics.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"mode\": \"string\",\n  \"target_set\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List Claw campaigns",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns"
              ],
              "variable": []
            },
            "description": "Lists Claw campaigns accessible to caller."
          }
        },
        {
          "name": "Get Claw campaign",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Gets campaign configuration, pressure level, action board, gates, and metrics."
          }
        },
        {
          "name": "Update Claw campaign",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Updates campaign mode, target set, operator state, and review flags.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"mode\": \"string\",\n  \"target_set\": {},\n  \"pressure_level\": 123\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Focus Claw",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}/focus",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id",
                "focus"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Ranks wallets, exchanges, issuers, packets, actions, and operator tasks by actionability.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"criteria\": [\n    \"string\"\n  ],\n  \"weights\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Expand Claw",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}/expand",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id",
                "expand"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Adds lawful graph expansion leads, attribution leads, legal process targets, and counterparty opportunities.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"expansion_types\": [\n    \"string\"\n  ],\n  \"max_leads\": 123\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Set pressure level",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}/pressure",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id",
                "pressure"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Moves campaign across lawful pressure levels: observe, prepare, preserve, discover, freeze/block, seize/turn over, recover/distribute.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"pressure_level\": 123,\n  \"reason\": \"string\",\n  \"counsel_approval_id\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create Claw action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}/actions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id",
                "actions"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Creates a campaign action: watch, packet, discovery, exchange, issuer, sanctions, legal process, ledger, or reporting task.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"owner_id\": \"string\",\n  \"due_at\": \"2026-06-01 12:00:00+00:00\",\n  \"linked_packet_id\": \"string\",\n  \"review_required\": true\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get Claw board",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/claw/campaigns/{campaign_id}/board",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "claw",
                "campaigns",
                ":campaign_id",
                "board"
              ],
              "variable": [
                {
                  "key": "campaign_id",
                  "value": "<campaign_id>"
                }
              ]
            },
            "description": "Gets operator board with focus queue, expand queue, pressure state, legal packets, alerts, and blockers."
          }
        }
      ]
    },
    {
      "name": "Packets",
      "item": [
        {
          "name": "Create exchange intercept packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/exchange-intercept",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "exchange-intercept"
              ],
              "variable": []
            },
            "description": "Prepares a source-linked packet for exchange/VASP preservation, freeze, information request, turnover, or remittance workflows.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create VASP legal process packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/vasp-legal-process",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "vasp-legal-process"
              ],
              "variable": []
            },
            "description": "Prepares counsel-reviewed subpoena, records request, preservation, or VASP response packet.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create exchange freeze packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/exchange-freeze",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "exchange-freeze"
              ],
              "variable": []
            },
            "description": "Prepares exchange freeze/hold request packet subject to court/counsel/authorized-channel review.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create exchange turnover packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/exchange-turnover",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "exchange-turnover"
              ],
              "variable": []
            },
            "description": "Prepares turnover request packet for court/counsel/exchange workflows.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create self-custody turnover workflow",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/turnover-workflow",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "turnover-workflow"
              ],
              "variable": []
            },
            "description": "Prepares court-supervised self-custody turnover workflow with proof-of-control evidence and noncompliance tracker.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create sanctions review packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/sanctions-review",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "sanctions-review"
              ],
              "variable": []
            },
            "description": "Prepares OFAC/SDN/DPRK/Lazarus/TCO evidence packet and blocked-property review queue.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create law enforcement referral packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/law-enforcement-referral",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                "law-enforcement-referral"
              ],
              "variable": []
            },
            "description": "Prepares referral packet for authorized counsel/LE workflows. Does not impersonate or use LE-only channels.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get packet",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/{packet_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                ":packet_id"
              ],
              "variable": [
                {
                  "key": "packet_id",
                  "value": "<packet_id>"
                }
              ]
            },
            "description": "Gets packet, source manifest, review state, authorized sender, and export state."
          }
        },
        {
          "name": "Export packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/packets/{packet_id}/export",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "packets",
                ":packet_id",
                "export"
              ],
              "variable": [
                {
                  "key": "packet_id",
                  "value": "<packet_id>"
                }
              ]
            },
            "description": "Exports packet to PDF/ZIP/JSON bundle and records export audit event.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"format\": \"pdf\",\n  \"redaction_profile\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Issuer Remediation",
      "item": [
        {
          "name": "Create issuer freeze packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/issuer-remediation/freeze-packet",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "issuer-remediation",
                "freeze-packet"
              ],
              "variable": []
            },
            "description": "Prepares issuer-controlled freeze/preserve packet for stablecoin issuer workflows.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create burn/reissue packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/issuer-remediation/burn-reissue-packet",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "issuer-remediation",
                "burn-reissue-packet"
              ],
              "variable": []
            },
            "description": "Prepares order-backed burn/reissue workflow packet. Micron Delta does not burn, mint, freeze, transfer, or redeem tokens.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"judgment_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"packet_type\": \"string\",\n  \"authorized_sender\": \"string\",\n  \"legal_authority_id\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ],\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create destination wallet certificate",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/issuer-remediation/destination-wallet-certificate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "issuer-remediation",
                "destination-wallet-certificate"
              ],
              "variable": []
            },
            "description": "Creates custody, purpose, chain, signers, sanctions screen, and approval certificate for remittance/reissue destination wallet.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallet_address\": \"string\",\n  \"network\": \"string\",\n  \"purpose\": \"string\",\n  \"owner\": \"string\",\n  \"custodian\": \"string\",\n  \"signer_model\": \"string\",\n  \"allowed_assets\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get issuer remediation",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/issuer-remediation/{remediation_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "issuer-remediation",
                ":remediation_id"
              ],
              "variable": [
                {
                  "key": "remediation_id",
                  "value": "<remediation_id>"
                }
              ]
            },
            "description": "Gets issuer remediation status: freeze, burn, reissue, remit, reject, close."
          }
        }
      ]
    },
    {
      "name": "Sanctions",
      "item": [
        {
          "name": "Run sanctions screen",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/sanctions/screen",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "sanctions",
                "screen"
              ],
              "variable": []
            },
            "description": "Screens wallets, entities, addresses, exchanges, and counterparties for SDN/DPRK/Lazarus/TCO/sanctions risk.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"wallets\": [\n    \"string\"\n  ],\n  \"entities\": [\n    \"string\"\n  ],\n  \"counterparties\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create sanctions review packet",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/sanctions/review-packet",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "sanctions",
                "review-packet"
              ],
              "variable": []
            },
            "description": "Creates sanctions review packet with source manifest, wallet/entity matches, blocked-property issue, and counsel review queue.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"screen_id\": \"string\",\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create OFAC report workflow",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/sanctions/ofac-report-workflow",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "sanctions",
                "ofac-report-workflow"
              ],
              "variable": []
            },
            "description": "Creates OFAC reporting/licensing/remittance workflow tracker when sanctions counsel flags potential blocked property.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"sanctions_review_id\": \"string\",\n  \"report_type\": \"string\",\n  \"counsel_owner\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get sanctions review",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/sanctions/{review_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "sanctions",
                ":review_id"
              ],
              "variable": [
                {
                  "key": "review_id",
                  "value": "<review_id>"
                }
              ]
            },
            "description": "Gets sanctions review state, matches, required gates, and packet status."
          }
        }
      ]
    },
    {
      "name": "Monitoring",
      "item": [
        {
          "name": "Create watchlist",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/watchlists",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "watchlists"
              ],
              "variable": []
            },
            "description": "Creates matter-tied wallet/token/exchange watchlist.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"name\": \"string\",\n  \"chains\": [\n    \"string\"\n  ],\n  \"thresholds\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List watchlists",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/watchlists",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "watchlists"
              ],
              "variable": []
            },
            "description": "Lists matter-tied watchlists."
          }
        },
        {
          "name": "Get watchlist",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/watchlists/{watchlist_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "watchlists",
                ":watchlist_id"
              ],
              "variable": [
                {
                  "key": "watchlist_id",
                  "value": "<watchlist_id>"
                }
              ]
            },
            "description": "Gets watchlist and alert rules."
          }
        },
        {
          "name": "Add watchlist addresses",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/watchlists/{watchlist_id}/addresses",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "watchlists",
                ":watchlist_id",
                "addresses"
              ],
              "variable": [
                {
                  "key": "watchlist_id",
                  "value": "<watchlist_id>"
                }
              ]
            },
            "description": "Adds matter-linked addresses to monitoring watchlist.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"addresses\": [\n    \"string\"\n  ],\n  \"reason\": \"string\",\n  \"source_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List alerts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/alerts",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "alerts"
              ],
              "variable": []
            },
            "description": "Lists wallet movement, exchange proximity, stablecoin exposure, sanctions, deadline, and compliance alerts."
          }
        },
        {
          "name": "Triage alert",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/alerts/{alert_id}/triage",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "alerts",
                ":alert_id",
                "triage"
              ],
              "variable": [
                {
                  "key": "alert_id",
                  "value": "<alert_id>"
                }
              ]
            },
            "description": "Marks alert actionability, creates linked actions/packets, or closes false positive.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"actionable\",\n  \"notes\": \"string\",\n  \"create_action\": true,\n  \"create_packet_type\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Actions",
      "item": [
        {
          "name": "Create action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions"
              ],
              "variable": []
            },
            "description": "Creates operator/counsel/vendor/review action.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"type\": \"string\",\n  \"title\": \"string\",\n  \"campaign_id\": \"string\",\n  \"owner_id\": \"string\",\n  \"priority\": \"string\",\n  \"due_at\": \"2026-06-01 12:00:00+00:00\",\n  \"linked_packet_id\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List actions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions"
              ],
              "variable": []
            },
            "description": "Lists actions filtered by owner, matter, campaign, status, and due date."
          }
        },
        {
          "name": "Get action",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions/{action_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions",
                ":action_id"
              ],
              "variable": [
                {
                  "key": "action_id",
                  "value": "<action_id>"
                }
              ]
            },
            "description": "Gets action details, requirements, status, and linked packet/evidence."
          }
        },
        {
          "name": "Update action",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions/{action_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions",
                ":action_id"
              ],
              "variable": [
                {
                  "key": "action_id",
                  "value": "<action_id>"
                }
              ]
            },
            "description": "Updates status, owner, priority, due date, and evidence requirements.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"title\": \"string\",\n  \"status\": \"string\",\n  \"priority\": \"string\",\n  \"owner_id\": \"string\",\n  \"due_at\": \"2026-06-01 12:00:00+00:00\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Assign action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions/{action_id}/assign",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions",
                ":action_id",
                "assign"
              ],
              "variable": [
                {
                  "key": "action_id",
                  "value": "<action_id>"
                }
              ]
            },
            "description": "Assigns action to operator, counsel, analyst, vendor, or reviewer.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"owner_id\": \"string\",\n  \"notes\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Complete action",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions/{action_id}/complete",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions",
                ":action_id",
                "complete"
              ],
              "variable": [
                {
                  "key": "action_id",
                  "value": "<action_id>"
                }
              ]
            },
            "description": "Completes action with completion evidence and audit event.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"completion_notes\": \"string\",\n  \"evidence_refs\": [\n    {\n      \"source_id\": \"...\",\n      \"source_type\": \"...\",\n      \"title\": \"...\",\n      \"uri\": \"...\",\n      \"hash\": \"...\",\n      \"chain_of_custody_id\": \"...\",\n      \"admissibility_notes\": \"...\"\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "List matter actions",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/actions/matters/{matter_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "actions",
                "matters",
                ":matter_id"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Lists actions for a matter."
          }
        }
      ]
    },
    {
      "name": "Ledger",
      "item": [
        {
          "name": "Create recovery event",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/ledger/recovery-events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ledger",
                "recovery-events"
              ],
              "variable": []
            },
            "description": "Records frozen, blocked, seized, turned over, remitted, settled, or recovered value.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"event_type\": \"frozen\",\n  \"asset\": \"string\",\n  \"gross_amount\": 123.45,\n  \"network\": \"string\",\n  \"usd_value\": 123.45,\n  \"source\": \"string\",\n  \"packet_id\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Create remittance event",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/ledger/remittance-events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ledger",
                "remittance-events"
              ],
              "variable": []
            },
            "description": "Records remittance to receiver, court registry, custodian, claimant, or waterfall account.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"destination\": \"string\",\n  \"amount\": 123.45,\n  \"asset\": \"string\",\n  \"waterfall_id\": \"string\",\n  \"source_recovery_event_id\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get matter ledger",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/ledger/matters/{matter_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "ledger",
                "matters",
                ":matter_id"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Gets recovery/remittance/collection ledger for a matter."
          }
        },
        {
          "name": "Calculate waterfall",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/waterfall/calculate",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "waterfall",
                "calculate"
              ],
              "variable": []
            },
            "description": "Calculates costs, counsel fees, Meridian economics, claimant distributions, holdbacks, and remittance constraints.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"recovery_event_ids\": [\n    \"string\"\n  ],\n  \"costs\": {},\n  \"meridian_percentage\": 123.45\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get matter waterfall",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/waterfall/matters/{matter_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "waterfall",
                "matters",
                ":matter_id"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Gets current matter economics and distribution waterfall."
          }
        }
      ]
    },
    {
      "name": "Reports",
      "item": [
        {
          "name": "Generate campaign brief",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/reports/campaign-brief",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "reports",
                "campaign-brief"
              ],
              "variable": []
            },
            "description": "Generates executive/counsel/operator campaign brief with board metrics, risks, next actions, and source-linked attachments.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"audience\": \"internal\",\n  \"include_sections\": [\n    \"string\"\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Generate claimant update",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/reports/claimant-update",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "reports",
                "claimant-update"
              ],
              "variable": []
            },
            "description": "Generates claimant-facing update with sanitized status, recovery events, and next milestones.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"claimant_id\": \"string\",\n  \"redaction_profile\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get report",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/reports/{report_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "reports",
                ":report_id"
              ],
              "variable": [
                {
                  "key": "report_id",
                  "value": "<report_id>"
                }
              ]
            },
            "description": "Gets report metadata and content pointers."
          }
        },
        {
          "name": "Export report",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/reports/{report_id}/export",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "reports",
                ":report_id",
                "export"
              ],
              "variable": [
                {
                  "key": "report_id",
                  "value": "<report_id>"
                }
              ]
            },
            "description": "Exports report to PDF/ZIP/JSON and writes audit event.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"format\": \"pdf\",\n  \"redaction_profile\": \"string\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "Audit",
      "item": [
        {
          "name": "Get matter audit",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/audit/matters/{matter_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit",
                "matters",
                ":matter_id"
              ],
              "variable": [
                {
                  "key": "matter_id",
                  "value": "<matter_id>"
                }
              ]
            },
            "description": "Gets audit events for a matter with filters by object, actor, event type, export state, and time range."
          }
        },
        {
          "name": "Create audit event",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              },
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/audit/events",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit",
                "events"
              ],
              "variable": []
            },
            "description": "Creates a custom audit event for external actions or manual events.",
            "body": {
              "mode": "raw",
              "raw": "{\n  \"matter_id\": \"string\",\n  \"event_type\": \"string\",\n  \"object_type\": \"string\",\n  \"object_id\": \"string\",\n  \"details\": {}\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            }
          }
        },
        {
          "name": "Get audit event",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Accept",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{base_url}}/v1/audit/events/{event_id}",
              "host": [
                "{{base_url}}"
              ],
              "path": [
                "v1",
                "audit",
                "events",
                ":event_id"
              ],
              "variable": [
                {
                  "key": "event_id",
                  "value": "<event_id>"
                }
              ]
            },
            "description": "Gets a single audit event."
          }
        }
      ]
    }
  ]
}