Get Actor Self

GET /actors/self

Returns the bearer-authenticated actor identity resolved for the current API request.


Conventions

Authentication

All endpoints require a Bearer token. Pass it in the Authorization header as Bearer <token>. Tokens are issued from the API settings page in your workspace.

Base URL

All paths are relative to https://api.allsign.app. The spec includes full paths; strip the base when constructing requests.

Versioning

The current version is 0.1.0. Breaking changes are documented in the Changelog and announced before taking effect.

Specification

The API follows OpenAPI Specification 3.x. All documentation on this page is generated directly from the spec.


Example

Bash
curl "https://api.allsign.app/actors/self" \
-H "Authorization: Bearer {token}"

Responses

200 OK

Authenticated actor summary.

{
  "data": {
    "actor": {
      "avatar_url": "",
      "email": "",
      "family_name": "",
      "given_name": "",
      "job_title": "",
      "kind": "",
      "name": "",
      "organization": "",
      "ref": "00000000-0000-4000-8000-000000000000"
    }
  }
}
data

objectrequired
data.actor

Canonical actor identity summary for bearer authentication.

objectrequired
data.actor.avatar_url

stringnullrequired
data.actor.email

string,null (email)required
data.actor.family_name

stringnullrequired
data.actor.given_name

stringnullrequired
data.actor.job_title

stringnullrequired
data.actor.kind

stringrequired
data.actor.name

stringrequired
data.actor.organization

stringnullrequired
data.actor.ref

Public stable resource reference.

string (uuid)required
401 Unauthorized

{
  "error": {
    "code": "",
    "message": "",
    "request_id": "",
    "status": 1
  }
}
error

objectrequired
error.code

stringrequired
error.message

stringrequired
error.request_id

stringrequired
error.status

integerrequired
error.fields

object[]optional

© 2026 AllSign. All rights reserved.