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

# Continues description for endpoint

> The continuous endpoint streams review data in real-time using Server-Sent Events (SSE). Unlike traditional endpoints that wait for the entire scraping process to complete, this endpoint returns reviews as they are fetched from the source, allowing clients to receive and process data incrementally without waiting for the full response.



## OpenAPI

````yaml POST /{endpoint}-continues/reviews
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:
  /{endpoint}-continues/reviews:
    post:
      tags:
        - Reviews
        - Streaming
      summary: Stream reviews in real-time using Server-Sent Events
      description: >-
        The continuous endpoint streams review data in real-time using
        Server-Sent Events (SSE). Unlike traditional endpoints that wait for the
        entire scraping process to complete, this endpoint returns reviews as
        they are fetched from the source, allowing clients to receive and
        process data incrementally without waiting for the full response.
      parameters:
        - name: endpoint
          in: path
          required: true
          description: >-
            The scraper endpoint name (e.g., 'avvo', 'yelp', 'google',
            'amazon'). This corresponds to any available review scraper in our
            system.
          schema:
            type: string
            example: https://py-api.hobbo.ai/avvo-continues/reviews
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                query:
                  type: string
                  format: uri
                  description: The URL of the page to scrape reviews from
              required:
                - query
      responses:
        '200':
          description: >-
            Reviews streamed successfully via Server-Sent Events. Each event
            contains review data as it becomes available.
          content:
            text/event-stream:
              schema:
                type: string
                description: Server-Sent Events stream containing review data chunks
              examples:
                streaming_response:
                  summary: Example SSE stream with review data
                  value: >-
                    data: {"review_rating": 5, "review_title": "Excellent
                    service!", "review_text": "Great attorney, highly
                    recommended."}}
        '400':
          description: Validation error or unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                validationError:
                  value:
                    status: 400
                    data: {}
                    success: false
                    message: <string>
      servers:
        - url: https://py-api.hobbo.ai
components:
  schemas:
    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

````