# CueFrame Account Profile (GET /v1/me)

> CueFrame Account Profile (GET /v1/me) is a paid API for AI agents from api.cueframe.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the authenticated caller's account details including identity, subscription plan, feature entitlements, and cost ceilings

## Facts

- Endpoint: GET https://api.cueframe.ai/v1/me
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cueframe-account-profile-get-v1-me-68479e6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LauZNSQWx3Wwch9BenY-5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cueframe-account-profile-get-v1-me-68479e6f
```

Example prompt: What's my current CueFrame account — show me my plan, what features I'm entitled to, and what my cost ceiling is.

## When to prefer this

Use this endpoint when an agent needs to confirm the authenticated user's identity, determine which CueFrame features are available (entitlements), check the active plan tier before attempting a higher-tier operation, or retrieve cost ceiling configuration to avoid budget overruns. Prefer this over sibling endpoints (projects, renders, media) when the goal is account introspection rather than resource management.

## Known failure modes

- 401 Unauthorized — missing or invalid API credentials
- 403 Forbidden — valid credentials but insufficient permissions to read account
- 402 Payment Required — x402 micropayment of $0.01 USDC not fulfilled
- 404 Not Found — account does not exist for the given credentials
- 500 Internal Server Error — upstream account service unavailable

## How this service works

Return the caller's account: identity, plan, entitlements, cost ceilings

## Output

Returns a JSON object describing the authenticated caller's account: their identity (user/org info), current subscription plan tier, list of feature entitlements, and configured cost or spending ceilings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cueframe-account-profile-get-v1-me-68479e6f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.cueframe.ai](https://www.zero.xyz/host/api.cueframe.ai/llms.txt)
