---
title: "Get recent offramp events for the authenticated user"
method: GET
path: "/v1/offramp/status"
tags: ["offramp"]
---

# Get recent offramp events for the authenticated user

`GET /v1/offramp/status`

Returns the authenticated user's recent offramp withdrawal events with their
current status. Useful for showing withdrawal history and tracking in-progress
offramp operations.

## Query parameters

- `limit` integer — Maximum number of events to return

## Headers

- `authorization` string, nullable — Bearer JWT issued by Grove.

## Response `200`

Successful Response

- OfframpStatusResponse — Response model for GET /v1/offramp/status.
  - `account_id` string, required — Account ID
  - `events` OfframpEventSummary[] — Recent offramp events
    - `event_id` string, required — Withdrawal event ID
    - `status` string, required — Event status (pending, submitted, confirmed, failed, stale)
    - `amount` string, nullable — Amount in USD
    - `network` string, nullable — Network (e.g., base, base-sepolia)
    - `created_at` string, nullable — When the event was created (ISO 8601)
    - `coinbase_to_address` string, nullable — Coinbase deposit address (if available)
    - `tx_hash` string, nullable — Transaction hash (if available)

## Other responses

- `401` — Missing or invalid JWT
- `422` — Validation Error

---

[API](https://skmtc.net/grove/apis/grove-api.md) · [All operations](https://skmtc.net/grove/apis/grove-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/grove/grove-api/revisions/f286b48a8105/schema)
