Skip to main content
GET
/
projects
/
{project_id}
/
invoices
Get Invoices
curl --request GET \
  --url https://app.usequeue.com/api/v1/projects/{project_id}/invoices \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "invoices": [
    {
      "id": "abc123",
      "name": "Invoice May 2025",
      "amount": 1500,
      "bill_to": "[email protected]",
      "bill_from": "[email protected]",
      "address": "123 fake st. blvd",
      "tax": 7.5,
      "payment_terms": "Net 30",
      "due": "2025-08-15",
      "issued": "2025-07-25",
      "payment_method": "wire",
      "invoice_number": "INV-1234",
      "credit_type": "none",
      "recurring_invoice_items": [
        {}
      ],
      "invoice_items": [
        {}
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "user": {
        "username": "Masud",
        "email": "[email protected]"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

Response

200 - application/json

Successful response

success
boolean
Example:

true

invoices
object[]