DataPress logo
API Reference

Whoami

Version:  1.0
Updated:  27th August 2025

The "who am i?" endpoint returns information about the current user. Use this to verify your API key, and see your team memberships.

  • Admin users have admin: true in the response. They have full access to all private & archived datasets.
GET
https://data.website/api/v3/whoami
HTTP Headers
AuthorizationAPI key.stringOptional
HTTP Return Codes
200Returns JSON object, or null if not logged in.
/api/v3/whoami
{
  // My user ID:
  "id": 382,
  // My identity:
  "title": "Stevie Spreadsheets",
  "email": "[email protected]",
  // If this is true, memberships is redundant.
  "admin": false,
  // The list of teams IDs I am a member of,
  // granting control over their datasets:
  "memberships": [
    "ab123",
    "59m9r",
    "tm123",
  ]
}