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

# Domain to Everything

> Extract comprehensive information from a domain including metadata, available review platforms, and domain reviews with SSE response.



## OpenAPI

````yaml POST /domain-to-everything-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:
  /domain-to-everything-continues/reviews:
    post:
      description: >-
        Extract comprehensive information from a domain including metadata,
        available review platforms, and domain reviews with SSE response.
      requestBody:
        description: Domain information extraction parameters
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DomainToEverythingRequest'
            examples:
              example1:
                value:
                  query: https://www.linkedin.com/feed/
        required: true
      responses:
        '200':
          description: Information extracted successfully (Server-Sent Events)
          content:
            text/event-stream:
              schema:
                type: object
                properties:
                  extra_information:
                    type: object
                    properties:
                      favicon_icon_url:
                        type: string
                        description: URL of the favicon icon
                      logo_url:
                        type:
                          - string
                          - 'null'
                        description: URL of the logo if available
                      title:
                        type: string
                        description: Page title
                      description:
                        type: string
                        description: Page description
                      theme_color:
                        type:
                          - string
                          - 'null'
                        description: Theme color if available
                  api_available_platforms:
                    type: object
                    description: Available review platforms for the domain
                  domain_reviews:
                    type: object
                    properties:
                      favicon_url:
                        type:
                          - string
                          - 'null'
                        description: URL of the favicon
                      reviews:
                        type: array
                        description: Array of reviews
                  status:
                    type: string
                    description: Final status of the operation
        '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:
    DomainToEverythingRequest:
      type: object
      required:
        - query
      properties:
        query:
          type: string
          description: URL of the domain to extract information from
    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

````