v1
latestOpenAPI 3.1.02026-07-2684271522.2 KBList Disputes
Returns a list of your disputes, most recent first.
Evidence is omitted by default; pass expand=evidence to include the parsed evidence for each dispute.
Query parameters
Maximum number of disputes to return (default 20, max 100).
Maximum number of disputes to return (default 20, max 100).
A cursor for use in pagination. starting_after is a dispute ID that defines your place in the list. For instance, if you make a list request and receive 20 disputes, ending with fdp_xyz, your subsequent call can include starting_after=fdp_xyz to fetch the next page of the list.
A cursor for use in pagination. starting_after is a dispute ID that defines your place in the list. For instance, if you make a list request and receive 20 disputes, ending with fdp_xyz, your subsequent call can include starting_after=fdp_xyz to fetch the next page of the list.
A cursor for use in pagination. ending_before is a dispute ID that defines your place in the list. For instance, if you make a list request and receive 20 disputes, starting with fdp_abc, your subsequent call can include ending_before=fdp_abc to fetch the previous page of the list.
A cursor for use in pagination. ending_before is a dispute ID that defines your place in the list. For instance, if you make a list request and receive 20 disputes, starting with fdp_abc, your subsequent call can include ending_before=fdp_abc to fetch the previous page of the list.
Filter by charge ID.
Filter by charge ID.
Filter by payment intent ID.
Filter by payment intent ID.
Filter by dispute statuses (comma-separated, e.g. ?statuses=needs_response,under_review).
Comma-separated list of fields to expand (e.g., ?expand=evidence).
Comma-separated list of fields to expand (e.g., ?expand=evidence).
Response
An envelope wrapping a list of dispute objects.
Example response
{
"disputes": [
{
"dispute_id": "fdp_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"payment_intent_id": "fpi_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"checkout_session_id": "fcs_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"amount": 2500,
"currency": "usd",
"charge_id": "fch_01J9XR8M3K7VZ8N2YB4WJ6T0RA",
"metadata": {
"order_id": "8842",
"channel": "shopify"
},
"created_at": "2026-06-15T14:30:00Z",
"reason": "bank_cannot_process",
"is_charge_refundable": false,
"test_mode": false,
"client_reference_id": "obj_01J9XR8M3K7VZ8N2YB4WJ6T0RA"
}
]
}