Cushion Partner API
Embed instant accident relief coverage into your product.
The Cushion Partner API lets you offer supplemental auto insurance to your users. Create policies, file claims, and receive real-time webhooks when payouts are deposited — all through a simple REST API.
https://api.getcushion.com/v1
Quick Start
- Get your API key from your partner dashboard
- Create a policy for your user
- When an accident occurs, file a claim
- Cushion auto-approves and deposits $500 instantly
# Create a policy for your user
curl https://api.getcushion.com/v1/policies \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json" \
-d '{
"external_customer_id": "usr_123",
"customer_email": "sarah@example.com",
"customer_first_name": "Sarah",
"customer_last_name": "Fischer",
"customer_zip": "48201"
}'
{
"id": "pol_a1b2c3d4e5f6g7h8",
"object": "policy",
"status": "active",
"customer": {
"email": "sarah@example.com",
"first_name": "Sarah",
"last_name": "Fischer",
"zip": "48201"
},
"payout_amount": 500.00,
"premium_cents": 900,
"effective_date": "2026-03-17T...",
"created_at": "2026-03-17T..."
}