Skip to main content
GET
/
api
/
v1
/
user
/
profile
Get profile and usage
curl --request GET \
  --url https://www.itsconvo.com/api/v1/user/profile \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "profile": {
      "name": "<string>",
      "email": "<string>",
      "timezone": "<string>",
      "language": "<string>",
      "profilePictureUrl": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    },
    "subscription": {
      "tier": "starter",
      "status": "<string>",
      "currentPeriodEnd": "2023-11-07T05:31:56Z"
    },
    "apiUsage": {
      "aiGenerations": {
        "used": 123,
        "limit": 123,
        "remaining": 123,
        "resetsAt": "2023-11-07T05:31:56Z"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

API key as Bearer token. Generate keys in your Convo dashboard settings.

Response

User profile and usage stats

data
object