Skip to main content
GET
/
disputes
List disputes
curl --request GET \
  --url https://app.disputeninja.io/api/v1/disputes \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "object": "dispute",
      "initiated_at": "2023-11-07T05:31:56Z",
      "response_due_by": "2023-11-07T05:31:56Z",
      "amount": 123,
      "currency": "<string>",
      "reason": "<string>",
      "status": "<string>",
      "provider": "<string>",
      "evidence": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

Number of disputes to return (default: 10, max: 100)

Required range: 1 <= x <= 100
offset
integer

Number of disputes to skip (default: 0)

Required range: x >= 0

Response

List of disputes

data
object[]