Build invoicing
into your app.
Generate professional PDF invoices programmatically in seconds. Secure, reliable, and designed for developers.
curl -X POST https://rasid.in/api/v1/invoices/generate \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"buyer": {
"name": "Acme Corp",
"email": "billing@acme.com",
"address": "123 Tech Park, India"
},
"items": [
{
"description": "Software Development",
"quantity": 160,
"unitPrice": 2500,
"taxRate": 18
}
],
"notes": "Thank you for your business"
}'