v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Infringement Claims

List infringement claims for a DIR

Return the trademark or copyright claims filed against this DIR. Each claim's status is pending (newly filed; DIR auto-suspended), contested (you have submitted contest evidence; awaiting resolution), or resolved (final). Resolution outcomes: upheld (claim accepted; DIR stays suspended/permanently_rejected), rejected (claim dismissed; DIR restored to verified), modified (partial outcome).

get/dir/{dir_id}/infringement_claims

Path parameters

dir_idstring uuid required
Example:16635d38-75a6-4481-82e8-69af60e05011

The DIR id. Lowercase UUID.

Query parameters

page[number]integer
Example:1

1-based page number. Out-of-range values return an empty page with correct meta.

page[size]integer
Example:20

Items per page. Maximum 250; values above are clamped to 250.

Response

Paginated list of claims for this DIR.

Example response

{
  "data": [
    {
      "claim_date": "2026-04-22T02:12:54Z",
      "claim_description": "Alleged infringement on trademark XYZ.",
      "claimant_contact": "legal@testclaimant.example.com",
      "claimant_name": "Test Claimant LLC",
      "contest_documents": [
        {
          "description": "Certificate of incorporation.",
          "document_id": "2a7e8337-e803-4057-a4ae-26c40eb0bc6c",
          "document_type": "business_registration"
        }
      ],
      "contest_history": [
        {
          "document_count": 1,
          "notes": "We own the trademark outright; our registration precedes the claimant by three years.",
          "submitted_at": "2026-04-22T02:13:06.629473Z"
        }
      ],
      "created_at": "2026-04-22T02:12:55.908411Z",
      "dir": {
        "display_name": "Acme Plumbing",
        "enterprise_id": "7eca8226-8081-4e11-abdc-437b5f53a81f",
        "id": "42a3f554-7ce3-44c2-bfe9-6e1afe0d7991"
      },
      "dir_id": "42a3f554-7ce3-44c2-bfe9-6e1afe0d7991",
      "enterprise_id": "7eca8226-8081-4e11-abdc-437b5f53a81f",
      "id": "e379fbc8-cd83-4bef-a280-a0ac9d00dcf8",
      "updated_at": "2026-04-22T02:12:55.908417Z"
    }
  ],
  "meta": {
    "page_number": 1,
    "page_size": 20,
    "total_pages": 3,
    "total_results": 42
  }
}