API Documentation
Quick Start Guide
Get started with Carapis Tax API in just a few steps
Get API Key
Sign up and obtain your API key from the dashboard
Choose SDK
Select the SDK for your programming language
Install & Configure
Install the SDK and configure with your API key
Make First Request
Start making API calls to calculate customs duties
Comprehensive Documentation
Everything you need to integrate customs duty calculations
API Reference
Complete API documentation with examples and endpoints.
SDK Documentation
Software development kits for multiple programming languages.
Integration Guides
Step-by-step integration tutorials and examples.
Best Practices
Development and usage best practices for optimal results.
Documentation Sections
Explore our comprehensive documentation resources
API Reference
Complete API documentation with all endpoints and parameters
SDK Documentation
Software development kits for easy integration
Integration Guides
Step-by-step tutorials for different platforms
Best Practices
Development and usage guidelines for optimal results
Quick Code Example
Calculate customs duties with just a few lines of code
JavaScript SDK Example
Simple example of calculating customs duties
// Install the SDK npm install @carapis/tax-sdk // Import and initialize import { CarapisTax } from '@carapis/tax-sdk'; const tax = new CarapisTax('your-api-key'); // Calculate customs duties const result = await tax.calculate({ originCountry: 'US', destinationCountry: 'CA', productType: 'electronics', value: 1000, weight: 5 }); console.log('Duty Rate:', result.dutyRate); console.log('Total Duty:', result.totalDuty);