> ## 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 a saved tool result

> Retrieve a payload saved from a synchronous `/tools/<tool>/all` request with `save: true`.



## OpenAPI

````yaml /tools-reference/openapi.json get /tools/results/{id}
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/results/{id}:
    get:
      tags:
        - Tools Catalog
      summary: Get a saved tool result
      description: >-
        Retrieve a payload saved from a synchronous `/tools/<tool>/all` request
        with `save: true`.
      operationId: getSavedToolResult
      parameters:
        - $ref: '#/components/parameters/SavedToolResultId'
      responses:
        '200':
          $ref: '#/components/responses/SavedToolResultResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/PlanFeatureRequired'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    SavedToolResultId:
      name: id
      in: path
      required: true
      schema:
        type: string
        format: uuid
  responses:
    SavedToolResultResponse:
      description: Saved tool result response
      content:
        application/json:
          schema:
            type: object
            required:
              - data
              - meta
              - operation
              - query
              - tool
            properties:
              data:
                additionalProperties: true
              meta:
                $ref: '#/components/schemas/ResponseMeta'
              operation:
                type: string
              query:
                type: object
                additionalProperties: true
              tool:
                type: string
            additionalProperties: true
    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'
  schemas:
    ResponseMeta:
      type: object
      required:
        - timestamp
      properties:
        timestamp:
          type: string
          format: date-time
        savedResult:
          $ref: '#/components/schemas/SavedToolResult'
      additionalProperties: true
    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'
    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

````