> ## 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 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 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.
paths:
  /tools/epic-games/creator:
    post:
      tags:
        - Epic Games
      summary: Get Epic Games creator data
      operationId: runEpicGamesCreator
      requestBody:
        $ref: '#/components/requestBodies/GamingToolRequest'
      responses:
        '200':
          $ref: '#/components/responses/GamingToolResponse'
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/PlanFeatureRequired'
        '404':
          $ref: '#/components/responses/NotFoundResult'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'
        '502':
          $ref: '#/components/responses/ProviderError'
        '503':
          $ref: '#/components/responses/ProviderUnavailable'
        '504':
          $ref: '#/components/responses/ProviderTimeout'
components:
  requestBodies:
    GamingToolRequest:
      required: true
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/GamingToolRequest'
          example:
            value: some-player
            type: username
  responses:
    GamingToolResponse:
      description: Gaming tool response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/GamingToolResponse'
          example:
            tool: xbox
            operation: resolve
            query:
              value: SomeGamertag
              type: gamertag
              normalizedType: gamertag
            data: {}
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    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: domain
                  message: Invalid domain
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: UNAUTHORIZED
              message: Unauthorized
              details: A valid API key is required
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    PlanFeatureRequired:
      description: >-
        The authenticated account does not have a paid API subscription with
        tools access
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: PLAN_FEATURE_REQUIRED
              message: Plan feature required
              details: >-
                Tools require a paid API subscription with the tools feature
                enabled
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    NotFoundResult:
      description: The provider could not find a matching account or resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: NOT_FOUND
              message: Not found
              details: No results found
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    RateLimitExceeded:
      description: API usage limits have been reached.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: RATE_LIMIT_EXCEEDED
              message: Rate limit exceeded
              details: API usage limits have been reached
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    ProviderError:
      description: The upstream provider returned an error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: PROVIDER_ERROR
              message: Provider error
              details: Provider request failed
            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'
    ProviderTimeout:
      description: The upstream provider request timed out.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: PROVIDER_TIMEOUT
              message: Provider timeout
              details: Provider request timed out
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
  schemas:
    GamingToolRequest:
      type: object
      required:
        - value
        - type
      properties:
        value:
          type: string
          description: Account identifier to validate or enrich.
          example: some-player
        type:
          type: string
          description: >-
            Canonical search type or accepted alias for the selected gaming
            tool.
          example: username
        save:
          type: boolean
          description: >-
            Only used on `/all`. When true, saves the synchronous result for
            later retrieval.
          default: false
      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
            - socialclub
            - xbox
            - playstation
            - roblox
            - chess-com
            - osu
            - criminal-intelligence
      additionalProperties: false
    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
      example:
        error:
          code: UNAUTHORIZED
          message: Unauthorized
          details: A valid API key is required
        meta:
          timestamp: '2026-06-28T12:00:00.000Z'
    ResponseMeta:
      type: object
      required:
        - timestamp
      properties:
        timestamp:
          type: string
          format: date-time
        savedResult:
          $ref: '#/components/schemas/SavedToolResult'
      additionalProperties: true
    SavedToolResult:
      type: object
      required:
        - id
        - url
      properties:
        id:
          type: string
          format: uuid
        url:
          type: string
          format: uri
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````