Skip to main content
GET
/
v1
/
me
Get Current User
curl --request GET \
  --url https://api.polydata.live/v1/me \
  --header 'Authorization: <authorization>'
{
  "data.id": "<string>",
  "data.email": "<string>",
  "data.plan": "<string>",
  "data.plan_active": true,
  "data.plan_expires_at": "<string>",
  "data.data_access_days": 123,
  "data.rate_limit_daily": 123,
  "data.requests_today": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.polydata.live/llms.txt

Use this file to discover all available pages before exploring further.

Returns details about your account, including plan, expiration, and usage.

Authentication

Authorization
string
required
Bearer pd_live_xxxxx

Response

data.id
string
User ID (UUID)
data.email
string
Email if provided during registration
data.plan
string
Current plan: free, daily, monthly, or unlimited
data.plan_active
boolean
Whether the plan is active
data.plan_expires_at
string
ISO timestamp when plan expires (null for free)
data.data_access_days
number
How many days of historical data you can access
data.rate_limit_daily
number
Daily request limit
data.requests_today
number
Requests used today

Example

curl https://api.polydata.live/v1/me \
  -H "Authorization: Bearer pd_live_xxxxx"

Sample response

{
  "success": true,
  "data": {
    "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "email": "you@example.com",
    "plan": "monthly",
    "plan_active": true,
    "plan_expires_at": "2026-06-25T00:00:00+00:00",
    "data_access_days": 30,
    "rate_limit_daily": 50000,
    "requests_today": 1247
  }
}