---
title: "Retrieve Token User Info"
method: GET
path: "/userinfo"
tags: ["Resources"]
---

# Retrieve Token User Info

`GET /userinfo`

After a client application has obtained an access token, it can make a request to the /userinfo endpoint to get user-related information. The data returned include the user's ID, email, username, and other profile details along with the scopes granted to the token.

## Headers

- `x-as-user-email` string
- `x-as-user-id` string

## Response `200`

200

- object
  - `sub` string, required — Subject identifier as defined by the OIDC specification. Equal to the user's Ironclad ID.
  - `id` string, required
  - `email` string, required
  - `username` string, required
  - `firstName` string, required
  - `lastName` string, required
  - `displayName` string, required
  - `title` string, required
  - `companyId` string, required
  - `companyName` string, required
  - `scopes` string[], required

## Other responses

- `401` — 401
- `404` — 404

---

[API](https://skmtc.net/ironcladapp/apis/ironclad-public-api.md) · [All operations](https://skmtc.net/ironcladapp/apis/ironclad-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ironcladapp/ironclad-public-api/versions/9459b4cfc1e0/schema)
