---
title: "Get user basic profile data"
method: POST
path: "/public/get-user-basic-profile-data"
tags: ["User"]
---

# Get user basic profile data

`POST /public/get-user-basic-profile-data`

Get basic user data like name, profile photo url, username, etc. using this resolver.

Authentication with the "FERMION-API-KEY" header is required to use this endpoint.

Rate limit: Maximum 60 requests in a window of 1m.

## Request body

- object
  - `data` object[], required
    - `data` object, required
      - `userId` string — Internal userId you have been using for the user in your database
      - `userEmail` string, email — Email of the user

## Response `200`

API Response Body

- object[]
  - `output` union, required
    - object
      - `status` 'ok', required
      - `data` object, required
        - `name` string, required — Name of the user
        - `username` string, required — Username for the user
        - `email` union, required — Email of the user
          - string, email
          - unknown
          - unknown
        - `profilePictureUrl` string, uri, required — Profile photo URL of the user
    - object
      - `status` 'error', required
      - `errorMessage` string, required

---

[API](https://skmtc.net/fermion/apis/fermion-backend-api.md) · [All operations](https://skmtc.net/fermion/apis/fermion-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fermion/fermion-backend-api/versions/7ce364c8820b/schema)
