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

# Get Epic Games creator and public profile data



## OpenAPI

````yaml /tools-reference/openapi.json post /tools/epic-games/creator
openapi: 3.1.0
info:
  title: Osintly Tools API
  version: 1.0.0
  description: >-
    OpenAPI specification for Osintly Epic Games, Vehicle History Finder, and
    Xbox tools and catalog endpoints.
  contact:
    name: Osintly
    url: https://docs.osint.ly/tools-reference/introduction
servers:
  - url: https://api.osint.ly
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Tools Catalog
    description: Discover available tools, metadata, and route costs.
  - name: Epic Games
    description: Direct Epic Games account validation and enrichment endpoints.
  - name: Vehicle History Finder
    description: >-
      Vehicle history enrichment endpoints for US VINs and French license
      plates.
  - name: Xbox
    description: Direct Xbox Live account validation and enrichment endpoints.
paths:
  /tools/epic-games/creator:
    post:
      tags:
        - Epic Games
      summary: Get Epic Games creator and public profile data
      operationId: runEpicGamesCreator
      requestBody:
        $ref: '#/components/requestBodies/EpicGamesRequest'
      responses:
        '200':
          $ref: '#/components/responses/EpicGamesCreatorResponse'
        '400':
          $ref: '#/components/responses/ValidationError'
        '503':
          $ref: '#/components/responses/ProviderUnavailable'
components:
  requestBodies:
    EpicGamesRequest:
      required: true
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/EpicGamesRequest'
          example:
            value: some-player
            type: epic_display_name
  responses:
    EpicGamesCreatorResponse:
      description: >-
        Epic Games creator response. Creator profile fields are public and
        nullable when unavailable.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/EpicGamesCreatorResponse'
    ValidationError:
      description: Invalid request body or parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: VALIDATION_ERROR
              message: Invalid request body
              details:
                - path: value
                  message: Invalid value
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    ProviderUnavailable:
      description: Required enrichment source configuration is missing
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: PROVIDER_UNAVAILABLE
              message: Provider unavailable
              details: A required enrichment source is unavailable for this operation
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
  schemas:
    EpicGamesRequest:
      type: object
      required:
        - value
        - type
      properties:
        value:
          type: string
          description: Epic identifier to enrich.
          examples:
            - some-player
            - some-player#1234
        type:
          type: string
          description: Canonical type or accepted alias.
          enum:
            - epic_display_name
            - epic_account_id
            - creator_code
            - psn_username
            - steam_username
            - xbox_username
            - psn_account_id
            - steam_id
            - nintendo_account_id
            - epic
            - epic_id
            - creator
            - psn
            - playstation
            - steam
            - steamid
            - xbox
            - xbl
            - xlb
            - nintendo
          example: epic_display_name
        save:
          type: boolean
          description: >-
            Only used on `/all`. When true, saves the synchronous result for
            later retrieval.
          default: false
      additionalProperties: false
    EpicGamesCreatorResponse:
      allOf:
        - $ref: '#/components/schemas/GamingToolResponse'
        - type: object
          properties:
            data:
              $ref: '#/components/schemas/EpicGamesCreatorData'
            operation:
              const: creator
            tool:
              const: epic-games
    ErrorResponse:
      type: object
      required:
        - error
        - meta
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            details: {}
          additionalProperties: true
        meta:
          $ref: '#/components/schemas/ResponseMeta'
      additionalProperties: false
    GamingToolResponse:
      type: object
      required:
        - data
        - meta
        - operation
        - query
        - tool
      properties:
        data:
          type: object
          additionalProperties: true
        meta:
          $ref: '#/components/schemas/ResponseMeta'
        operation:
          type: string
        query:
          type: object
          required:
            - value
            - type
          properties:
            value:
              type: string
            type:
              type: string
            normalizedType:
              type: string
          additionalProperties: true
        tool:
          type: string
          enum:
            - epic-games
            - vehicle-history-finder
            - xbox
      additionalProperties: false
    EpicGamesCreatorData:
      type: object
      required:
        - accountId
        - affiliate
        - islands
        - profile
      properties:
        accountId:
          type: string
        affiliate:
          type: object
          required:
            - found
          properties:
            found:
              type: boolean
          additionalProperties: true
        islands:
          type: object
          additionalProperties: true
        profile:
          $ref: '#/components/schemas/EpicGamesCreatorProfile'
      additionalProperties: false
    ResponseMeta:
      type: object
      required:
        - timestamp
      properties:
        timestamp:
          type: string
          format: date-time
        savedResult:
          $ref: '#/components/schemas/SavedToolResult'
      additionalProperties: true
    EpicGamesCreatorProfile:
      type: object
      required:
        - data
        - error
        - found
        - pageProps
        - publishedIslands
        - raw
        - social
      properties:
        data:
          oneOf:
            - $ref: '#/components/schemas/EpicGamesCreatorProfileData'
            - type: 'null'
        error:
          type: 'null'
        found:
          type: boolean
        pageProps:
          type: 'null'
        publishedIslands:
          type: array
          items: {}
        raw:
          type: 'null'
        social:
          $ref: '#/components/schemas/EpicGamesCreatorSocial'
      additionalProperties: false
    SavedToolResult:
      type: object
      required:
        - id
        - url
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
          format: uri
      additionalProperties: false
    EpicGamesCreatorProfileData:
      type: object
      required:
        - bio
        - creatorPageUrl
        - displayName
        - followerCount
        - images
        - title
      properties:
        bio:
          type:
            - string
            - 'null'
        creatorPageUrl:
          type: string
          format: uri
        displayName:
          type:
            - string
            - 'null'
        followerCount:
          type:
            - integer
            - 'null'
        images:
          $ref: '#/components/schemas/EpicGamesCreatorImages'
        title:
          type:
            - string
            - 'null'
      additionalProperties: false
    EpicGamesCreatorSocial:
      type: object
      required:
        - discord
        - instagram
        - tiktok
        - twitch
        - twitter
        - website
        - youtube
      properties:
        discord:
          type:
            - string
            - 'null'
          format: uri
        instagram:
          type:
            - string
            - 'null'
          format: uri
        tiktok:
          type:
            - string
            - 'null'
          format: uri
        twitch:
          type:
            - string
            - 'null'
          format: uri
        twitter:
          type:
            - string
            - 'null'
          format: uri
        website:
          type:
            - string
            - 'null'
          format: uri
        youtube:
          type:
            - string
            - 'null'
          format: uri
      additionalProperties: false
    EpicGamesCreatorImages:
      type: object
      required:
        - avatar
        - banner
      properties:
        avatar:
          type:
            - string
            - 'null'
          format: uri
        banner:
          type:
            - string
            - 'null'
          format: uri
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````