Skip to main content
GET
/
public
/
v1
/
me
Get current identity
curl --request GET \
  --url https://api.callin.io/api/public/v1/me \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "userId": "<string>",
    "email": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Send your Callin API key in the x-api-key header.

Response

Identity payload for the authenticated API key.

Who the current API key belongs to (userId, email).

success
boolean

Indicates if the request was successful

Example:

true

data
object