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

# Thread Post 

> Fetch Threads post details, media, stats, and related attachments.



## OpenAPI

````yaml POST /threads/post
openapi: 3.1.0
info:
  title: OpenAPI Plant Store
  description: >-
    A sample API that uses a plant store as an example to demonstrate features
    in the OpenAPI specification
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.hobbo.ai
    description: Main API server
  - url: https://py-api.hobbo.ai
    description: Python API server for scraper endpoints
security:
  - ApiKeyAuth: []
paths:
  /threads/post:
    post:
      description: Fetch Threads post details, media, stats, and related attachments.
      requestBody:
        description: Threads post fetch parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ThreadsPostRequest'
        required: true
      responses:
        '200':
          description: Post fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThreadsPostResponse'
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    error: <string>
      servers:
        - url: https://py-api.hobbo.ai
components:
  schemas:
    ThreadsPostRequest:
      type: object
      required:
        - query
      properties:
        query:
          type: string
          description: Provide proper Threads post URL
        is_text_formatted:
          type: boolean
          description: Controls text formatting in output
          default: true
    ThreadsPostResponse:
      type: object
      properties:
        all_reviews:
          type: array
          description: Array of fetched post data
          items:
            type: object
            properties:
              query:
                type: string
                description: Original query URL
              thread_id:
                type:
                  - string
                  - number
                  - 'null'
                description: Identifier of the post
              author_id:
                type:
                  - string
                  - number
                  - 'null'
                description: Identifier of the author
              author_profile_image_url:
                type:
                  - string
                  - 'null'
                description: URL to the author's profile image
              author_name:
                type:
                  - string
                  - 'null'
                description: Name of the review author
              author_profile_url:
                type:
                  - string
                  - 'null'
                description: URL of the author's profile
              author_full_name:
                type:
                  - string
                  - 'null'
                description: Full name of the author
              is_verified_account:
                type:
                  - boolean
                  - 'null'
                description: Whether the review is verified
              audio:
                type:
                  - object
                  - 'null'
                description: Audio metadata
              post_date:
                type:
                  - string
                  - 'null'
                description: Date when the review was posted
              post_captions:
                type:
                  - string
                  - 'null'
                description: Content of the review
              post_stats:
                type: object
                properties:
                  reply_count:
                    type: number
                    description: Number of comments on the review
                  repost_count:
                    type: number
                    description: Number of reshares
                  quote_count:
                    type: number
                    description: Number of quotes
                  reshare_count:
                    type: number
                    description: Number of reshares
                  likes_count:
                    type: number
                    description: Number of likes for the review
              review_media:
                type: array
                description: Array of media items (images/videos)
                items:
                  type: object
                  properties:
                    review_media_type:
                      type: string
                      description: Type of media (image or video)
                    review_media_url:
                      type: string
                      description: URL of the media
                    thumbnail_url:
                      type:
                        - string
                        - 'null'
                      description: URL of the review video thumbnail
              attachement:
                type:
                  - object
                  - 'null'
                description: Attachment metadata
              post_info:
                type: object
                properties:
                  is_spoiler_media:
                    type: boolean
                    description: Whether the review is verified
                  linked_inline_media:
                    type:
                      - object
                      - 'null'
                    description: Linked media metadata
                  accessibility_caption:
                    type:
                      - string
                      - 'null'
                    description: Accessibility caption
                  usertags:
                    type:
                      - object
                      - array
                      - 'null'
                    description: User tags
              attached_post_data:
                type: object
                properties:
                  post_info:
                    type: object
                    description: Post attributes
                  review_text:
                    type:
                      - string
                      - 'null'
                    description: Content of the review
                  post_stats:
                    type: object
                    description: Post statistics
                  attachements:
                    type:
                      - object
                      - 'null'
                    description: Attachment metadata
    Error:
      type: object
      properties:
        status:
          type: integer
          description: HTTP status code
        data:
          type: object
          description: Empty object or additional error data
        success:
          type: boolean
          description: Indicates operation failed
          example: false
        message:
          type: string
          description: Error message describing what went wrong

````