Skip to main content
POST
/
get-user
Get a public user profile
curl --request POST \
  --url https://api.wanderersguide.app/functions/v1/get-user \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "_id": "<string>"
}
'
{
  "status": "success",
  "data": {
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "display_name": "<string>",
    "id": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "image_url": "<string>",
    "background_image_url": "<string>",
    "site_theme": {
      "color": "<string>"
    },
    "is_admin": true,
    "is_mod": true,
    "is_developer": true,
    "is_community_paragon": true,
    "deactivated": true,
    "summary": "<string>",
    "organized_play_id": "<string>",
    "subscribed_content_sources": [
      {
        "source_id": 123,
        "source_name": "<string>",
        "added_at": "<string>"
      }
    ],
    "patreon": {},
    "api": {
      "clients": [
        {
          "id": "<string>",
          "name": "<string>",
          "api_key": "<string>",
          "description": "<string>",
          "image_url": "<string>"
        }
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.wanderersguide.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key created in your Wanderer's Guide account settings. Send as Authorization: Bearer <key>. Used for direct API access from external tools and scripts.

Body

application/json
id
string<uuid>

Supabase auth user id.

_id
string

public_user.id (numeric) as a string.

Response

200 - application/json

JSend success with the public user.

status
enum<string>
Available options:
success
data
object