Account

See your Account Details with Our API
Notes
Expert level
The API key should be sent as a Bearer token in the Authorization header of the request. Get your API key.


Show

API endpoint:

GET
https://webzender.com/api/v1/account


Request example:

curl --location --request GET 'https://webzender.com/api/v1/account' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'


Response example:


{
  "data": {
    "id": 1,
    "name": "Example",
    "email": "example@gmail.com",
    "avatar_url": "https://www.gravatar.com/avatar/75d23af433e0cea4c0e45a56dba18b30?s=96&d=identicon&r=g",
    "locale": "en",
    "timezone": "UTC",
    "plan": {
      "id": 4,
      "name": "Enterprise",
      "features": {
        "reports": "-1",
        "branded_reports": "1",
        "white_label_reports": "1",
        "research_tools": "1",
        "developer_tools": "1",
        "content_tools": "1",
        "data_export": "1",
        "api": "1"
      }
    },
    "created_at": "2023-07-08T23:48:11.000000Z"
  },
  "status": 200
}