> ## Documentation Index
> Fetch the complete documentation index at: https://ionet-cca8037f-confidential-compute.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Entities

> Lists all entities in the graph with pagination support.



## OpenAPI

````yaml openapi/rag-graphs-entities/list-graph-entities.json get /api/r2r/v3/graphs/{collection_id}/entities
openapi: 3.1.0
info:
  title: IO Intelligence
  version: '1.0'
servers:
  - url: https://api.intelligence.io.solutions
security:
  - sec0: []
paths:
  /api/r2r/v3/graphs/{collection_id}/entities:
    get:
      summary: Get Entities
      description: Lists all entities in the graph with pagination support.
      operationId: list-graph-entities
      parameters:
        - name: collection_id
          in: path
          description: Collection ID to fetch entities for
          schema:
            type: string
          required: true
        - name: offset
          in: query
          description: Specifies the number of objects to skip. Defaults to 0. >=0
          schema:
            type: integer
            format: int32
            default: 0
        - name: limit
          in: query
          description: >-
            Specifies a limit on the number of objects to return, ranging
            between 1 and 100. Defaults to 100. >=1 <=1000
          schema:
            type: integer
            format: int32
            default: 100
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    results:
                      - name: name
                        description: description
                        category: category
                        metadata:
                          key: value
                        id: id
                        parent_id: parent_id
                        description_embedding:
                          - 1.1
                        chunk_ids:
                          - chunk_ids
                    total_entries: 1
              schema:
                type: object
                properties:
                  results:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: name
                        description:
                          type: string
                          example: description
                        category:
                          type: string
                          example: category
                        metadata:
                          type: object
                          properties:
                            key:
                              type: string
                              example: value
                        id:
                          type: string
                          example: id
                        parent_id:
                          type: string
                          example: parent_id
                        description_embedding:
                          type: array
                          items:
                            type: number
                            example: 1.1
                            default: 0
                        chunk_ids:
                          type: array
                          items:
                            type: string
                            example: chunk_ids
                  total_entries:
                    type: integer
                    example: 1
                    default: 0
        '404':
          description: '404'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
        '422':
          description: '422'
          content:
            text/plain:
              examples:
                Result:
                  value: ''
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: oauth2
      flows: {}

````