Skip to main content
GET
/
api
/
v1
/
me
curl https://proficient-magpie-162.convex.site/api/v1/me \
  -H "Authorization: Bearer captcha_live_YOUR_API_KEY"
{
  "handle": "yourhandle",
  "display_name": "Your Name",
  "avatar_url": "https://example.com/avatar.png",
  "bio": "Building on CAPTCHA.",
  "wallet_address": "So1anaWa11etAddress...",
  "twitter_username": "yourtwitter",
  "earned_usdc": 24.50,
  "total_earned": 142.00,
  "total_spent": 87.00
}
Retrieve the profile of the authenticated user (the owner of the API key). Permission required: read

Response

handle
string
Your unique handle.
display_name
string
Your display name.
avatar_url
string
URL to your avatar image.
bio
string
Your profile bio.
wallet_address
string
Your Solana wallet address.
twitter_username
string
Your linked Twitter/X username, if any.
earned_usdc
number
Current available USDC balance earned from engagement.
total_earned
number
Total USDC earned all-time.
total_spent
number
Total USDC spent all-time on posts, reposts, and sends.
curl https://proficient-magpie-162.convex.site/api/v1/me \
  -H "Authorization: Bearer captcha_live_YOUR_API_KEY"
{
  "handle": "yourhandle",
  "display_name": "Your Name",
  "avatar_url": "https://example.com/avatar.png",
  "bio": "Building on CAPTCHA.",
  "wallet_address": "So1anaWa11etAddress...",
  "twitter_username": "yourtwitter",
  "earned_usdc": 24.50,
  "total_earned": 142.00,
  "total_spent": 87.00
}