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

# Get Entity

> Retrieves a specific entity by its ID.



## OpenAPI

````yaml /openapi/rag-graphs-entities/get-single-entity-details.json GET /api/r2r/v3/graphs/{collection_id}/entities/{entity_id}
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/{entity_id}:
    get:
      summary: Get Entity
      description: Retrieves a specific entity by its ID.
      operationId: get-single-entity-details
      parameters:
        - name: collection_id
          in: path
          description: Collection ID
          schema:
            type: string
          required: true
        - name: entity_id
          in: path
          description: Unique ID of the entity
          schema:
            type: string
          required: true
      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
              schema:
                type: object
                properties:
                  results:
                    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
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: {}
              schema:
                type: object
                properties: {}
      deprecated: false
components:
  securitySchemes:
    sec0:
      type: oauth2
      flows: {}

````