Skip to main content
GET
/
api
/
v1
/
billing
/
invoices
List billing invoices
curl --request GET \
  --url https://neo.api.projectdiscovery.io/api/v1/billing/invoices \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "invoices": [
    {
      "amount_cents": 123,
      "amount_display": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "currency": "<string>",
      "description": "<string>",
      "id": "<string>",
      "invoice_pdf": "<string>",
      "invoice_url": "<string>",
      "paid_at": "2023-11-07T05:31:56Z",
      "status": "<string>",
      "type": "purchase"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT authentication token

Query Parameters

limit
integer
default:25

Maximum number of invoices to return (default 25, max 100)

Required range: 1 <= x <= 100
starting_after
string

Cursor for pagination - Stripe invoice ID to start after

Response

List of invoices

has_more
boolean
required

Whether there are more invoices to fetch

invoices
object[]
required