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

# Real Time Search

> Access real-time search with Dappier's AI models — from live web search and breaking news to stock prices and financial insights. Fast, reliable, and ready for monetization.



## OpenAPI

````yaml post /app/aimodel/{ai_model_id}
openapi: 3.1.0
info:
  title: Dappier Datamodel API
  version: 0.1.0
servers:
  - url: https://api.dappier.com
security: []
paths:
  /app/aimodel/{ai_model_id}:
    post:
      summary: Query Real-Time Search
      description: >-
        Access real-time search with Dappier's AI models — from live web search
        and breaking news to stock prices and financial insights. Fast,
        reliable, and ready for monetization.
      operationId: query_RealTimeData_data
      parameters:
        - name: ai_model_id
          in: path
          required: true
          description: >-
            The ID of the AI model to query (e.g.,
            am_01j06ytn18ejftedz6dyhz2b15). Browse and find AI models in the
            [Dappier Marketplace](https://platform.dappier.com/marketplace).
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QueryRequest'
        required: true
      responses:
        '200':
          description: Returns HTTP Status Code 200 (OK).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryResponse'
      security:
        - ApiKeyBearer: []
components:
  schemas:
    QueryRequest:
      properties:
        query:
          type: string
          title: Query message
          description: The query text to be passed to the AI model.
      type: object
      required:
        - query
      title: QueryRequest
    QueryResponse:
      properties:
        message:
          type: string
          title: Query message
          description: The response of the query sent, generated by the AI model.
      type: object
      required:
        - message
      title: QueryResponse
  securitySchemes:
    ApiKeyBearer:
      type: http
      scheme: bearer
      description: >-
        Bearer token authentication using your Dappier API key. Get your API key
        at https://platform.dappier.com/profile/api-keys.

````