Skip to main content
GET
/
api
/
v1
/
external
/
companies
/
{companyId}
/
files
/
{fileId}
/
placements
List File Placements
curl --request GET \
  --url https://app.aiinsurance.io/api/v1/external/companies/{companyId}/files/{fileId}/placements \
  --header 'Authorization: <api-key>'
{
  "placements": [
    {
      "placementId": "550e8400-e29b-41d4-a716-446655440031",
      "entityType": "Event",
      "entityId": "550e8400-e29b-41d4-a716-446655440010",
      "entityDisplayName": "Warehouse Fire",
      "folderId": null,
      "category": "Evidence",
      "createdAt": "2026-06-11T09:14:30.000Z"
    },
    {
      "placementId": "550e8400-e29b-41d4-a716-446655440032",
      "entityType": "Submission",
      "entityId": "550e8400-e29b-41d4-a716-446655440011",
      "entityDisplayName": "SUB-001",
      "folderId": "550e8400-e29b-41d4-a716-446655440001",
      "category": "Loss Runs",
      "createdAt": "2026-06-11T10:02:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Send your raw API key as the Authorization header value with NO scheme prefix — Authorization: YOUR-API-KEY. Do NOT prefix it with Bearer or ApiKey, and do not use an X-API-Key header; those are not accepted.

Path Parameters

companyId
string<uuid>
required

Company identifier

fileId
string<uuid>
required

File identifier

Response

The file's placements, oldest first

placements
object[]