Invoices
List my invoices
GET
/api/v1/invoices/meLists invoices issued to the signed-in seller for their subscription payments.
Requires Authorization
Session
Query parameters
pagenumber | Defaults to 1. |
limitnumber | Max 100. Defaults to 20. |
Request
curl --request GET \
--url https://api.swiftgoma.com/api/v1/invoices/me \
--header 'Authorization: Bearer <access_token>'200Example response
{
"success": true,
"data": {
"invoices": [
{
"id": "inv_1a2b3c",
"sellerProfileId": "sp_2b3c4d",
"number": "SWG-INV-2026-0042",
"amount": "10.00",
"currency": "USD",
"issuedAt": "2026-02-01T09:05:00.000Z",
"pdfUrl": "https://res.cloudinary.com/dx3wclabo/image/upload/v1/invoices/swg-inv-2026-0042.pdf"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 1,
"totalPages": 1
}
}
}