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]="2024-10-16 05:58:52PM 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]="2026-09-02 05:35:54AM 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': '2024-11-06 02:17:01AM 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-08-07 04:39:09PM 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-03-05 03:43:57PM 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-01-20 02:40:46AM 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' => '2026-01-20 04:07:19AM UTC',
'currency' => 'USD',
'currency_sign' => '$',
'customer_email' => 'susie@test-example.org',
'customer_name' => 'Susie Chargeback',
'customer_purchase_ip' => '8.17.94.166',
'disputed_at' => '2025-01-12 04:16:56PM 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": "2026-06-04 07:00:57AM 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-08-22 11:45:05AM 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", "2022-10-28 04:01:22AM 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", "2026-08-09 03:11:47PM UTC");
chargehound.disputes.submit("dp_123",
new Dispute.UpdateParams.Builder()
.template("example")
.fields(fields)
.finish()
);
Read our getting started guide and detailed API reference.