> ## 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.

# Browse an owned saved Reddit result without additional search charges

> Free for saved lookup/all results. Verifies creator and API-key ownership before reading cache or calling providers. Account is derived from the saved result. Does not mutate the saved snapshot. Defaults inherit the saved query; options starts a new view. Reuse nextCursor without options for pagination. A cursor is not authorization. Archived coverage and throughput depend on providers.



## OpenAPI

````yaml /tools-reference/openapi.json post /tools/reddit/browse
openapi: 3.1.0
info:
  title: Osintly Tools API
  version: 1.0.0
  description: >-
    OpenAPI specification for Osintly Epic Games, Vehicle History Finder, Xbox,
    PlayStation Network, Roblox, Steam, Social Club, and Reddit 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.
  - name: PlayStation Network
    description: Direct PlayStation Network account validation and enrichment endpoints.
  - name: Roblox
    description: Direct Roblox account validation and enrichment endpoints.
  - name: Steam
    description: Direct Steam account validation and enrichment endpoints.
  - name: Social Club
    description: Direct Rockstar Social Club account validation and enrichment endpoints.
  - name: Reddit
    description: >-
      Reddit profile and public archived activity validation and enrichment
      endpoints.
paths:
  /tools/reddit/browse:
    post:
      tags:
        - Reddit
      summary: Browse an owned saved Reddit result without additional search charges
      description: >-
        Free for saved lookup/all results. Verifies creator and API-key
        ownership before reading cache or calling providers. Account is derived
        from the saved result. Does not mutate the saved snapshot. Defaults
        inherit the saved query; options starts a new view. Reuse nextCursor
        without options for pagination. A cursor is not authorization. Archived
        coverage and throughput depend on providers.
      operationId: browseRedditResult
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RedditBrowseRequest'
            example:
              resultId: 1349352c-4306-4d7f-a712-8622d5793515
              section: posts
      responses:
        '200':
          description: >-
            Section data; posts/comments include pagination.nextCursor (null at
            end).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedditBrowseResponse'
        '400':
          $ref: '#/components/responses/ValidationError'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/PlanFeatureRequired'
        '404':
          description: >-
            Saved result unavailable, deleted, belongs to another owner/key, or
            is not Reddit
        '409':
          description: >-
            RESULT_BROWSING_NOT_INCLUDED: use a saved lookup/all result, or
            complete a saved profile through feed
        '502':
          $ref: '#/components/responses/ProviderError'
        '504':
          $ref: '#/components/responses/ProviderTimeout'
components:
  schemas:
    RedditBrowseRequest:
      type: object
      additionalProperties: false
      required:
        - resultId
        - section
      properties:
        resultId:
          type: string
          format: uuid
        section:
          type: string
          enum:
            - posts
            - comments
            - activity
            - communities
        options:
          $ref: '#/components/schemas/RedditBrowseOptions'
        cursor:
          type: string
          minLength: 1
          maxLength: 4096
          pattern: ^[A-Za-z0-9_-]+$
          description: >-
            Opaque nextCursor from the same result/section; never combine with
            options.
      allOf:
        - if:
            required:
              - cursor
          then:
            not:
              required:
                - options
            properties:
              section:
                enum:
                  - posts
                  - comments
    RedditBrowseResponse:
      type: object
      required:
        - tool
        - operation
        - query
        - data
        - meta
      properties:
        tool:
          const: reddit
        operation:
          enum:
            - posts
            - comments
            - activity
            - communities
        query:
          type: object
          additionalProperties: true
        data:
          type: object
          additionalProperties: true
          properties:
            pagination:
              type: object
              additionalProperties: true
              properties:
                hasMore:
                  type: boolean
                nextCursor:
                  type:
                    - string
                    - 'null'
                limit:
                  type: integer
        meta:
          type: object
          required:
            - timestamp
            - resultId
          properties:
            timestamp:
              type: string
              format: date-time
            resultId:
              type: string
              format: uuid
    RedditBrowseOptions:
      type: object
      additionalProperties: false
      properties:
        limit:
          type: integer
          minimum: 1
          maximum: 100
          default: 25
        sort:
          type: string
          enum:
            - asc
            - desc
          default: desc
        after:
          oneOf:
            - type: string
            - type: number
        before:
          oneOf:
            - type: string
            - type: number
        subreddit:
          type: string
          maxLength: 64
        keywords:
          type: string
          maxLength: 200
        deletedOnly:
          type: boolean
          default: false
        nsfwOnly:
          type: boolean
          default: 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
    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:
    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'
    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'
    ProviderError:
      description: An upstream Reddit provider request failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: PROVIDER_ERROR
              message: Data unavailable
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
    ProviderTimeout:
      description: An upstream Reddit provider request timed out
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: PROVIDER_TIMEOUT
              message: Request timed out
            meta:
              timestamp: '2026-06-28T12:00:00.000Z'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````