# Get leak by ID Returns a single leak with connections (resources, users, endpoints). Endpoint: GET /leaks/{leak_id} Version: 1.0.0 Security: ApiKeyAuth ## Query parameters: - `domain_id` (string) Domain UUID(s) to scope the request. Comma-separated for multiple. If omitted, all non-archived domains of the organization are used. Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890" ## Path parameters: - `leak_id` (string, required) ## Response 200 fields (application/json): - `data` (object) - `data.id` (string) Example: "f47ac10b-58cc-4372-a567-0e02b2c3d479" - `data.risk_level` (integer) Example: 5 - `data.risk_level_name` (string) Enum: "none", "low", "medium", "high" - `data.status` (string) Enum: "new", "investigating", "resolved", "false_positive" - `data.url` (string,null) Example: "https://example.com/login" - `data.login` (string) Example: "user@example.com" - `data.password` (string) Example: "***" - `data.first_seen` (string,null) ISO 8601 e.g. 2025-12-05T00:00:00.000Z Example: "2025-12-05T00:00:00.000Z" - `data.added_at` (string,null) ISO 8601 e.g. 2025-12-05T01:09:22.879Z Example: "2025-12-05T01:09:22.879Z" - `data.connections` (object) - `data.connections.resources` (array) - `data.connections.resources.resource` (string) Example: "api.example.com" - `data.connections.resources.type` (string) Enum: "domain", "ip", "apk" - `data.connections.users` (array) - `data.connections.users.identity_type` (string) Enum: "email", "username" - `data.connections.endpoints` (array) - `data.connections.endpoints.filename` (string) Example: "[US]93.101.28.33.rar" - `data.connections.endpoints.date` (string,null) Example: "2025-12-04T14:30:00.000Z" ## Response 401 fields (application/json): - `type` (string) Example: "validation_error" - `status` (integer) Example: 400 - `detail` (string) Example: "Invalid sort field: \"foo\". Valid: [\"risk_level\", \"first_seen\", \"added_at\"]." ## Response 403 fields (application/json): - `type` (string) Example: "validation_error" - `status` (integer) Example: 400 - `detail` (string) Example: "Invalid sort field: \"foo\". Valid: [\"risk_level\", \"first_seen\", \"added_at\"]." ## Response 404 fields (application/json): - `type` (string) Example: "validation_error" - `status` (integer) Example: 400 - `detail` (string) Example: "Invalid sort field: \"foo\". Valid: [\"risk_level\", \"first_seen\", \"added_at\"]."