A complete overhaul of our API with better developer experience, comprehensive SDKs, and improved documentation.
New API v2
RESTful Design
The new API follows REST best practices:
- Consistent resource naming
- Proper HTTP methods
- Predictable pagination
- Standardized error responses
Example Request
curl -X POST https://api.conduitt.io/v2/invoices \
-H "Authorization: Bearer ck_live_..." \
-H "Content-Type: application/json" \
-d '{
"customer_id": "cus_abc123",
"line_items": [
{
"description": "Consulting Services",
"quantity": 10,
"unit_price": 15000
}
],
"due_date": "2026-02-28"
}'
Official SDKs
We now offer official SDKs for:
| Language | Package |
|---|
| Node.js | @corinthian/sdk |
| Python | corinthian-python |
| Ruby | corinthian-ruby |
| Go | github.com/Oppulence-Engineering/go |
| PHP | corinthian/corinthian-php |
Developer Portal
- Interactive API explorer
- Webhook testing tools
- API key management
- Usage analytics dashboard
Deprecation Notice
API v1 will be deprecated on March 1, 2026. Please migrate to v2 before then.