> ## 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 tool info

> Read public metadata for one tool.



## OpenAPI

````yaml /tools-reference/openapi.json get /tools/{tool}/infos
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/{tool}/infos:
    get:
      tags:
        - Tools Catalog
      summary: Get tool info
      description: Read public metadata for one tool.
      operationId: getToolInfo
      parameters:
        - $ref: '#/components/parameters/ToolPath'
      responses:
        '200':
          description: Tool metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolInfo'
              example:
                name: Epic Games
                description: >-
                  Validate Epic Games account search inputs and retrieve player
                  autocomplete suggestions.
                image: /tools/epic-games.png
                routePath: /epic-games
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/PlanFeatureRequired'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    ToolPath:
      name: tool
      in: path
      required: true
      schema:
        type: string
        enum:
          - domain-intelligence
          - ip-intelligence
          - epic-games
          - socialclub
          - xbox
          - playstation
  schemas:
    ToolInfo:
      type: object
      required:
        - description
        - image
        - name
        - routePath
      properties:
        description:
          type: string
        image:
          type: string
        name:
          type: string
        routePath:
          type: string
      additionalProperties: true
      example:
        name: Epic Games
        description: >-
          Validate Epic Games account search inputs and retrieve player
          autocomplete suggestions.
        image: /tools/epic-games.png
        routePath: /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
      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
  responses:
    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'
    NotFound:
      description: Tool not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: NOT_FOUND
              message: Tool not found
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````