Skip to main content
GET
/
organization
/
invoices
Retrieve organization invoices
curl --request GET \
  --url https://api.getfernand.com/organization/invoices \
  --header 'X-API-Key: <api-key>'
{
  "invoices": [
    {
      "id": "in_1A2B3C4D5E6F7G8H",
      "amount": 4900,
      "url": "https://pay.stripe.com/invoice/...",
      "reference": "ABC-1234",
      "members": 5,
      "paid": "2025-01-15T10:30:00+00:00"
    }
  ],
  "details": {
    "name": "Early Adopter Discount",
    "offer": 1000
  }
}
Returns a list of all invoices for the organization.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Response

200 - application/json

Invoices retrieved successfully.

invoices
object[]

List of invoices.

details
object

Active discount details (optional).