curl --request GET \
--url https://api-sandbox.rinne.com.br/core/v1/disputes/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api-sandbox.rinne.com.br/core/v1/disputes/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api-sandbox.rinne.com.br/core/v1/disputes/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.rinne.com.br/core/v1/disputes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.rinne.com.br/core/v1/disputes/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.rinne.com.br/core/v1/disputes/{id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.rinne.com.br/core/v1/disputes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "123e4567-e89b-12d3-a456-426614174000",
"transaction_id": "123e4567-e89b-12d3-a456-426614174001",
"company_id": "123e4567-e89b-12d3-a456-426614174002",
"company_name": "Acme",
"company_full_name": "Acme Payments LTDA",
"organization_id": "123e4567-e89b-12d3-a456-426614174003",
"provider": "CELCOIN",
"type": "PIX_INFRACTION",
"status": "OPEN",
"outcome": null,
"amount": 9500,
"provider_dispute_id": "aaaaaaaa-bbbb-4ccc-8ddd-eeeeeeeeeeee",
"dispute_details": "the reporting institution describes an unauthorised transfer",
"deadline_at": null,
"concluded_at": null,
"created_at": "2026-08-05T15:16:57.000Z",
"updated_at": "2026-08-05T15:16:57.000Z",
"timeline": [
{
"id": "123e4567-e89b-12d3-a456-426614174010",
"type": "DISPUTE_RECEIVED",
"created_at": "2026-08-05T15:16:57.000Z"
}
]
}{
"error": {
"code": "AUTHENTICATION_ERROR",
"message": "Authentication required to access this resource",
"status": 401,
"details": {
"reason": "Invalid API key"
},
"path": "/companies/me",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}{
"error": {
"code": "AUTHORIZATION_ERROR",
"message": "You need 'admin' permissions to access this resource",
"status": 403,
"path": "/companies",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}{
"error": {
"code": "RESOURCE_NOT_FOUND",
"message": "Company with ID '123' not found",
"status": 404,
"path": "/companies/me",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}{
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error occurred",
"status": 500,
"path": "/companies",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}Get a single dispute by ID
Requires the dispute.view permission.
Returns a single dispute by its ID, including its timeline of events.
curl --request GET \
--url https://api-sandbox.rinne.com.br/core/v1/disputes/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api-sandbox.rinne.com.br/core/v1/disputes/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api-sandbox.rinne.com.br/core/v1/disputes/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-sandbox.rinne.com.br/core/v1/disputes/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-sandbox.rinne.com.br/core/v1/disputes/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-sandbox.rinne.com.br/core/v1/disputes/{id}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.rinne.com.br/core/v1/disputes/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "123e4567-e89b-12d3-a456-426614174000",
"transaction_id": "123e4567-e89b-12d3-a456-426614174001",
"company_id": "123e4567-e89b-12d3-a456-426614174002",
"company_name": "Acme",
"company_full_name": "Acme Payments LTDA",
"organization_id": "123e4567-e89b-12d3-a456-426614174003",
"provider": "CELCOIN",
"type": "PIX_INFRACTION",
"status": "OPEN",
"outcome": null,
"amount": 9500,
"provider_dispute_id": "aaaaaaaa-bbbb-4ccc-8ddd-eeeeeeeeeeee",
"dispute_details": "the reporting institution describes an unauthorised transfer",
"deadline_at": null,
"concluded_at": null,
"created_at": "2026-08-05T15:16:57.000Z",
"updated_at": "2026-08-05T15:16:57.000Z",
"timeline": [
{
"id": "123e4567-e89b-12d3-a456-426614174010",
"type": "DISPUTE_RECEIVED",
"created_at": "2026-08-05T15:16:57.000Z"
}
]
}{
"error": {
"code": "AUTHENTICATION_ERROR",
"message": "Authentication required to access this resource",
"status": 401,
"details": {
"reason": "Invalid API key"
},
"path": "/companies/me",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}{
"error": {
"code": "AUTHORIZATION_ERROR",
"message": "You need 'admin' permissions to access this resource",
"status": 403,
"path": "/companies",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}{
"error": {
"code": "RESOURCE_NOT_FOUND",
"message": "Company with ID '123' not found",
"status": 404,
"path": "/companies/me",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}{
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error occurred",
"status": 500,
"path": "/companies",
"timestamp": "2023-12-01T10:00:00.000Z",
"requestId": "req_123456789"
}
}Authorizations
Company API key for authentication
Path Parameters
The dispute ID
Response
Dispute details with timeline
Dispute with its timeline of events, oldest first
Internal dispute ID
"123e4567-e89b-12d3-a456-426614174000"
ID of the disputed transaction
"123e4567-e89b-12d3-a456-426614174001"
Merchant the claim is filed against
"123e4567-e89b-12d3-a456-426614174002"
Trading name of the merchant the claim is filed against
"Acme"
Legal name of the merchant the claim is filed against
"Acme Payments LTDA"
Organization the merchant belongs to
"123e4567-e89b-12d3-a456-426614174003"
Provider that processed the disputed transaction
CELCOIN, RINNE, CAPPTA "CELCOIN"
Rail the dispute arrived on
PIX_INFRACTION, CHARGEBACK "PIX_INFRACTION"
Ordered progression; a dispute only moves forward. CLOSED is terminal, so a finished dispute is exactly status == CLOSED.
OPEN, UNDER_REVIEW, CLOSED "OPEN"
The verdict. Null until the dispute closes, and always set once it has. UPHELD means the claim succeeded and funds are returned; DISMISSED means it failed; WITHDRAWN means it ceased before a verdict, or the provider closed out a dismissed claim. A closed dispute's outcome may move between DISMISSED and WITHDRAWN without a further dispute.status-changed event; UPHELD never changes.
UPHELD, DISMISSED, WITHDRAWN null
Amount at risk in cents. Derived from the disputed transaction when the dispute is created (an upper bound rather than an exact figure); once the provider reports the exact amount it set out to hold, that figure supersedes the derived one.
9500
The provider's own identifier for the dispute
"aaaaaaaa-bbbb-4ccc-8ddd-eeeeeeeeeeee"
Free text describing the dispute, directly or indirectly, as supplied by the reporting side. The author is not recorded and may be the payer, a risk analyst or a system.
"the reporting institution describes an unauthorised transfer"
Provider-stated response deadline. Null where the rail states none.
null
When the dispute concluded. Set exactly when status becomes CLOSED.
null
"2026-08-05T15:16:57.000Z"
"2026-08-05T15:16:57.000Z"
Timeline of dispute events, oldest first
Show child attributes
Show child attributes

