# GET /api/v1/pending-actions

> List held confirmation-tier actions

- Group: meta
- Tier: R
- Required scope: read:account
- Docs: https://api.inleed.com/reference/meta/list-pending-actions

## Description

Returns `{data, hasMore, nextCursor, total}` of the account's pending actions, newest first. Optionally filter by `status` (`pending`, `executed`, `declined`, `expired`, …).

## Query parameters

- `status` — enum. One of pending, approved, executed, failed, unverified, expired, declined.
- `limit` — integer. Page size for a collection. Range 1–100.

## Request

```bash
curl -X GET "https://mcp.inleed.com/api/v1/pending-actions?status=pending&limit=3" \
  -H "Authorization: Bearer inl_live_…"
```

## Response · 200

```json
{
  "data": [
    "example.se"
  ],
  "hasMore": true,
  "nextCursor": "example.se",
  "total": 3
}
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- GET /api/v1/pending-actions/{pendingAction} — https://api.inleed.com/reference/meta/get-pending-action
- POST /api/v1/pending-actions/{pendingAction}/cancel — https://api.inleed.com/reference/meta/cancel-pending-action

