Skip to main content
GET
/
v1
/
me
Python
from auriko import Client

client = Client()
identity = client.me.get()
print(f"Workspace: {identity.workspace_id}, Tier: {identity.tier}")
{
  "object": "api_key_identity",
  "user_id": "550e8400-e29b-41d4-a716-446655440000",
  "workspace_id": "6ba7b810-9dad-11d1-80b4-00c04fd430c8",
  "tier": "free",
  "rate_limit_rpm": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.auriko.ai/llms.txt

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

Returns the identity associated with your API key, including your workspace_id and account tier.

Authorizations

Authorization
string
header
required

API key authentication. Keys start with ak_ prefix. Example: Authorization: Bearer ak_live_xxxxxxxxxxxx

Response

API key identity

object
enum<string>
required
Available options:
api_key_identity
user_id
string | null
required
workspace_id
string | null
required
tier
string | null
required

Subscription tier of the workspace.

rate_limit_rpm
integer | null
required