GET /pub_api/v3/invoices/:id read:invoices
Response fields
FieldTypeDescription
dataobjectAll fields from List Invoices, plus the additional fields below.
data.tax_breakdownobject | nullFull tax calculation: commission, taxes (IGST/SGST/CGST/TDS with percentages and values), gross_amount, net_amount. For singapore billing the taxes.tds entry is omitted (no Indian TDS on Singapore payouts).
data.monthly_bifurcationobject | nullEarnings broken down by month (e.g. {"March 2026": 3000.0}).
data.rejection_messagestring | nullReason for rejection, if status is rejected.
data.updated_atstringISO 8601 timestamp.
Request
curl https://developers.cuelinks.com/pub_api/v3/invoices/1234 \
  -H "Authorization: Token YOUR_API_KEY"
200 OK200
{
  "data": {
    "id": 1234,
    "invoice_number": "100420261-567",
    "status": "paid",
    "amount": "5000",
    "net_payment": "5800",
    "tax_breakdown": {
      "commission": 5000.0,
      "taxes": {
        "igst": { "percentage": 18, "value": 900.0 },
        "tds": { "percentage": 2, "value": 100.0 }
      },
      "gross_amount": 5900.0,
      "net_amount": 5800.0
    },
    "monthly_bifurcation": {
      "March 2026": 3000.0,
      "February 2026": 2000.0
    }
  }
}