> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.dumgum.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Profile Endpoint

> Get a profile by ID.

> ⚠️ **Important Note: Image Accessibility**
>
> We do not download or store images on our servers. Therefore, your profile images must be publicly accessible so that our server can retrieve them whenever needed during response generation.

> 🕒 **Important Note: Time Zone**
>
> Always return the `timeZone` field, **especially on the persona profile**. The Persona reads the current local time from its own profile's `timeZone`. If it is omitted, the Persona falls back to **UTC**, producing incorrect time-of-day references (e.g. saying it's 4am when it's 6am locally). See [Supported Time Zones](/api-reference/content-creation/additional-resources/supported-time-zones).


## OpenAPI

````yaml WEBHOOK ContentCreationProfileEndpoint
openapi: 3.1.0
info:
  title: DumGum
  version: '2.0'
servers:
  - url: https://api.dumgum.com
security:
  - bearerAuth: []
paths: {}
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is an access key.


        Example: `Authorization: Bearer sk-proj-XXXXXXXXX`
      scheme: bearer
      bearerFormat: JWT | Access Key

````