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

# List objects of a type

> Returns a paginated list of objects for the given type. Objects are returned as card-shaped summaries.



## OpenAPI

````yaml /openapi.json get /{type_name}
openapi: 3.1.0
info:
  title: Doris Ontology API
  version: 1.0.0
  description: >-
    REST API for querying the Doris deal intelligence ontology. Resolve
    entities, traverse relationships, and search across all indexed objects.
servers:
  - url: https://server.meetdoris.com/api/v1/ontology
    description: Ontology API
security:
  - BearerAuth: []
paths:
  /{type_name}:
    get:
      tags:
        - Query
      summary: List objects of a type
      description: >-
        Returns a paginated list of objects for the given type. Objects are
        returned as card-shaped summaries.
      operationId: listObjects
      parameters:
        - name: type_name
          in: path
          required: true
          schema:
            type: string
            enum:
              - deal
              - account
              - meeting
              - commitment
              - objection
              - competitor
              - tactic
              - strategy
              - document
              - person
              - artifact
              - pipeline
              - lead
              - insight
        - name: limit
          in: query
          schema:
            type: integer
            default: 25
            maximum: 100
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
        - name: sort
          in: query
          schema:
            type: string
          description: Sort field
      responses:
        '200':
          description: Object list
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                        id:
                          type: string
                        title:
                          type: string
                        snippet:
                          type: string
                        updated_at:
                          type: string
                          format: date-time
                  total:
                    type: integer
                  count:
                    type: integer
                  offset:
                    type: integer
                  limit:
                    type: integer
              example:
                ok: true
                results:
                  - type: deal
                    id: 8c1caea6-8e76-58eb-b897-6ddda9bc6897
                    title: Class Schedule & Instructor Optimizer
                    snippet: Class Schedule & Instructor Optimizer
                    updated_at: '2026-05-06T16:57:08.327429+00:00'
                  - type: deal
                    id: a6c30b44-92d5-5e0b-b64a-290fb5f03db4
                    title: Recycling Contamination Detector
                    snippet: Recycling Contamination Detector
                    updated_at: '2026-05-06T16:57:08.275551+00:00'
                total: 244
                count: 2
                offset: 0
                limit: 2
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key with `sk-live-` prefix. Generate keys from Console → API Keys in
        the Doris app.

````