# Invoices API Reference

> Source: https://centric-api-docs.certn.co/#invoices

Endpoints for retrieving billing invoices associated with your account.


## Endpoints

| Method | Path | Description |
|--------|------|-------------|
| `GET` | `/api/public/invoices/` |  |
| `GET` | `/api/public/invoices/{id}/` |  |

### GET /api/public/invoices/

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `billing_profile__id__in` | query | array | No | Multiple values may be separated by commas. |
| `issue_date` | query | string | No |  |
| `issue_date__range` | query | array | No | Multiple values may be separated by commas. |
| `ordering` | query | string | No | Which field to use when ordering the results. |
| `page` | query | integer | No | A page number within the paginated result set. |
| `page_size` | query | integer | No | Number of results to return per page. Defaults to 10, maximum 100. |
| `status` | query | array | No | Multiple values may be separated by commas. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/invoices/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

### GET /api/public/invoices/{id}/

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `id` | path | string | Yes |  |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/invoices/{id}/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

---

*See the [interactive documentation](https://centric-api-docs.certn.co/#invoices) for more details.*