Let us do the hard work. We know where to find all the relevant fields and can submit responses to your disputes automatically. We support one-click integrations with Braintree, PayPal, Stripe, and Vantiv — as well as custom integrations with other processors.
Chargehound is a trusted partner of Braintree, PayPal, Stripe, and Vantiv. Our integrations are facilitated via their official OAuth applications and APIs. Read our security policy for more details.
Use one of our beautiful and comprehensive templates or make your own from scratch. We provide an array of helpful content sections that can be populated with your data and added to any template via simple drag n’ drop.
Available content sections:
Use the Dashboard or our API to automatically generate and submit responses. Our SDKs will make your API integration a breeze.
curl https://api.chargehound.com/v1/disputes/dp_123/submit \
-u API_KEY: \
-d template=example \
-d fields[card_brand]=Visa \
-d fields[card_exp_month]=10 \
-d fields[card_exp_year]=18 \
-d fields[card_last_four]=4242 \
-d fields[charge_amount]=5000 \
-d fields[charge_statement_descriptor]="CHARGE_STATEMENT" \
-d fields[charged_at]="2025-11-06 11:23:55PM UTC" \
-d fields[currency]=USD \
-d fields[currency_sign]="$" \
-d fields[customer_email]="susie@test-example.org" \
-d fields[customer_name]="Susie Chargeback" \
-d fields[customer_purchase_ip]="8.17.94.166" \
-d fields[disputed_at]="2025-06-04 10:38:39AM UTC"
var chargehound = require('chargehound')(
'API_KEY'
);
chargehound.Disputes.submit('dp_123', {
template: 'example',
fields: {
'card_brand': 'Visa',
'card_exp_month': '10',
'card_exp_year': '18',
'card_last_four': '4242',
'charge_amount': 5000,
'charge_statement_descriptor': 'CHARGE_STATEMENT',
'charged_at': '2023-01-21 02:45:17PM UTC',
'currency': 'USD',
'currency_sign': '$',
'customer_email': 'susie@test-example.org',
'customer_name': 'Susie Chargeback',
'customer_purchase_ip': '8.17.94.166',
'disputed_at': '2023-11-18 06:45:41PM UTC'
}
}, function (err, res) {
// ...
});
import chargehound
chargehound.api_key = 'API_KEY'
chargehound.Disputes.submit('dp_123',
template = 'example',
fields = {
'card_brand': 'Visa',
'card_exp_month': '10',
'card_exp_year': '18',
'card_last_four': '4242',
'charge_amount': 5000,
'charge_statement_descriptor': 'CHARGE_STATEMENT',
'charged_at': '2024-12-06 05:43:59AM UTC',
'currency': 'USD',
'currency_sign': '$',
'customer_email': 'susie@test-example.org',
'customer_name': 'Susie Chargeback',
'customer_purchase_ip': '8.17.94.166',
'disputed_at': '2023-06-11 07:11:57PM UTC'
}
)
require 'chargehound'
Chargehound.api_key = 'API_KEY'
Chargehound::Disputes.submit('dp_123',
template: 'example',
fields: {
'card_brand' => 'Visa',
'card_exp_month' => '10',
'card_exp_year' => '18',
'card_last_four' => '4242',
'charge_amount' => 5000,
'charge_statement_descriptor' => 'CHARGE_STATEMENT',
'charged_at' => '2024-08-19 10:24:12PM UTC',
'currency' => 'USD',
'currency_sign' => '$',
'customer_email' => 'susie@test-example.org',
'customer_name' => 'Susie Chargeback',
'customer_purchase_ip' => '8.17.94.166',
'disputed_at' => '2022-08-18 06:50:17PM UTC'
}
)
import (
"github.com/chargehound/chargehound-go"
)
ch := chargehound.New("API_KEY", nil)
params := chargehound.UpdateDisputeParams{
ID: "dp_123",
Template: "example",
Fields: {
"card_brand": "Visa",
"card_exp_month": "10",
"card_exp_year": "18",
"card_last_four": "4242",
"charge_amount": 5000,
"charge_statement_descriptor": "CHARGE_STATEMENT",
"charged_at": "2023-08-08 10:28:11AM UTC",
"currency": "USD",
"currency_sign": "$",
"customer_email": "susie@test-example.org",
"customer_name": "Susie Chargeback",
"customer_purchase_ip": "8.17.94.166",
"disputed_at": "2026-12-05 08:49:55AM UTC",
},
}
ch.Disputes.Submit(¶ms)
import com.chargehound.Chargehound;
import com.chargehound.models.Dispute;
Chargehound chargehound = new Chargehound("API_KEY");
Map<String, Object> fields = new HashMap<String, Object>();
fields.put("card_brand", "Visa");
fields.put("card_exp_month", "10");
fields.put("card_exp_year", "18");
fields.put("card_last_four", "4242");
fields.put("charge_amount", 5000);
fields.put("charge_statement_descriptor", "CHARGE_STATEMENT");
fields.put("charged_at", "2023-03-24 12:25:49AM UTC");
fields.put("currency", "USD");
fields.put("currency_sign", "$");
fields.put("customer_email", "susie@test-example.org");
fields.put("customer_name", "Susie Chargeback");
fields.put("customer_purchase_ip", "8.17.94.166");
fields.put("disputed_at", "2023-09-23 08:01:04PM UTC");
chargehound.disputes.submit("dp_123",
new Dispute.UpdateParams.Builder()
.template("example")
.fields(fields)
.finish()
);
Read our getting started guide and detailed API reference.