## credits/transactions

`GET /v1/credits/transactions`

Your credit ledger, newest first: grants, purchases, spends and refunds with the balance after each. Cursor-paginated; free to call.

*Credit transactions*

| Parameter | Required | Description |
| --- | --- | --- |
| `limit` | no | Rows per page (default 25, max 100) — e.g. `25` |
| `cursor` | no | Opaque cursor from the previous page — e.g. `18432` |
| `request_id` | no | Only ledger rows tied to this API request id — e.g. `req_1a2b3c` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** free — 0 credits.

```bash
curl "https://www.monocrawl.com/v1/credits/transactions" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "items": [],
  "count": 0,
  "cursor": null,
  "has_more": false
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/credits/transactions#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/credits/transactions.json)
