---
title: "Get current account information"
method: GET
path: "/v1/account/me"
tags: ["Account"]
---

# Get current account information

`GET /v1/account/me`

Retrieves detailed information about the currently authenticated account.

This endpoint returns:
- Account ID
- Account status and permissions (role, KYC level, frozen status)
- Account metadata (creation date, waitlist status)

Use this endpoint to:
- Display user profile information
- Check account permissions and limits
- Verify KYC status before performing restricted operations
- Determine feature availability based on account role

## Response `200`

Account information retrieved successfully

- MarketApiAccountMeResponse — Response body for the account/me endpoint.
  - `id` string, required — The unique identifier for the account
  - `role` string, required — The role assigned to this account
  - `is_frozen` boolean, required — Whether the account is currently frozen
  - `kyc` string, required — The KYC (Know Your Customer) verification level
  - `submitted_waitlist` boolean, required — Whether the user has submitted the waitlist form
  - `waitlist` boolean, required — Whether the user is on the waitlist
  - `kycb_form_submitted` boolean, required — Whether the KYC-B form has been submitted
  - `created_at` integer, required — When the account was created as a epoch unix timestamp

## Other responses

- `401` — Unauthorized - missing or invalid authentication token
- `404` — Account not found

---

[API](https://skmtc.net/sfcompute/apis/san-francisco-compute-documentation.md) · [All operations](https://skmtc.net/sfcompute/apis/san-francisco-compute-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sfcompute/san-francisco-compute-documentation/revisions/93dd7661e9bb/schema)
