RevKeen Docs
Api reference

Get open disputes requiring action

Retrieve disputes that need evidence submission, ordered by due date (most urgent first). Use this to prioritize dispute responses.


Related endpoints

  • GET /disputes — List disputes
  • GET /disputes/{id} — Get dispute by ID

Common errors

  • 401 unauthenticated — missing, malformed, or revoked API key.

Pagination

Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.

GET
/disputes/open
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Query Parameters

limit?number

Number of results to return

Default20
Range1 <= value <= 100

Response Body

application/json

curl "https://api.revkeen.com/v2/disputes/open" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "public_id": "string",
      "payment_id": "d43b87f9-9e28-4802-8eaa-6ee91a40ea71",
      "parent_transaction_id": "2862f816-fb62-4845-833b-6951bbef56b3",
      "gateway": "string",
      "amount_minor": 0,
      "currency": "string",
      "reason": "string",
      "customer_name": "string",
      "card_brand": "string",
      "card_last4": "string",
      "evidence_due_by": "string",
      "days_until_due": 0,
      "is_overdue": true,
      "disputed_at": "string"
    }
  ],
  "meta": {
    "total_open": 0,
    "overdue_count": 0
  }
}
Empty
Empty