---
title: "List grants."
method: GET
path: "/v2/grants"
tags: ["Grants"]
---

# List grants.

`GET /v2/grants`

## Query parameters

- `limit` integer
- `starting_after` string — Return records created after this resource id, ordered by created_at then id.
- `currency` string

## Response `200`

Page of resources.

- GrantList
  - `data` Grant[], required
    - `id` string, required — LedgerUp grant identifier.
    - `description` string, nullable, required — Optional description. Maximum 2048 Unicode scalar values.
    - `account_id` string, required — LedgerUp account identifier.
    - `metric_id` string, nullable, required — LedgerUp metric identifier. Null for currency grants.
    - `currency` string, nullable, required — Three-letter lowercase currency code. Amount is expressed in major currency units, not minor units. Null for metric grants.
    - `amount` string, required — Decimal amount serialized as a string.
    - `expires_at` integer, required — Unix timestamp in seconds.
    - `accepted_at` integer, required — Unix timestamp in seconds.
    - `created_at` integer, required — Unix timestamp in seconds.
    - `updated_at` integer, required — Unix timestamp in seconds.
    - `status` 'active' | 'scheduled' | 'voided' | 'archived' | 'expired', required — Derived grant status. Voided and archived take precedence over expiration and scheduled activation.
    - `archived_at` integer, required — Unix timestamp in seconds.
    - `contract_v1_id` string, uuid, nullable, required — Optional public.contracts identifier.
    - `effective_at` integer, required — Unix timestamp in seconds.
  - `has_more` boolean, required — True when additional records are available after the returned page.

## Other responses

- `400` — Bad request, invalid header, invalid amount/quantity/currency, or text validation failure.
- `401` — Missing or invalid API key.
- `403` — API key lacks the required permission, or reset was attempted outside the test namespace.
- `408` — Request exceeded the 30 second timeout.
- `429` — Rate limit exceeded.
- `500` — Internal server error or queue failure.

---

[API](https://skmtc.dev/ledgerup/apis/ledgerup-api.md) · [All operations](https://skmtc.dev/ledgerup/apis/ledgerup-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ledgerup/ledgerup-api/revisions/be257191807b/schema)
