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

# List native tools

> Returns native tools available to the authenticated user's company. If the company has no tool restrictions configured, all native tools are returned. Sys-admins can pass `company_id` to inspect another company's allowed tools.



## OpenAPI

````yaml /api-reference/openapi-v3.yaml get /api/v3/tools
openapi: 3.0.3
info:
  title: Paradigm API
  version: xenial-xerus (v3)
  description: >-
    A versatile and adaptable tool designed to integrate Generative AI into your
    applications
servers:
  - url: https://paradigm.lighton.ai
security: []
tags:
  - name: Agents
    description: Operations about agents
  - name: Threads
    description: Operations about agents conversation threads
  - name: Tools
    description: Operations about native tools
  - name: Models
    description: Operations about AI models
  - name: MCP
    description: Operations about MCP servers
  - name: Sources
    description: Operations about sources used by agents conversation threads
  - name: Artifacts
    description: Operations about artifacts generated by agents conversation threads
  - name: Agent
    description: >-
      Operations about agents (deprecated). Please use the 'Agents' API
      component instead.
  - name: Files
    description: Operations about files
  - name: Files Processing
    description: Operations about files processing
  - name: Tags
    description: Operations about tags
  - name: Workspaces
    description: Operations about workspaces
  - name: Users
    description: Operations about users
  - name: User Groups
    description: Operations about user groups
  - name: Companies
    description: Operations about companies
  - name: SCIM
    description: Operations about SCIM
paths:
  /api/v3/tools:
    get:
      tags:
        - Tools
      summary: List native tools
      description: >-
        Returns native tools available to the authenticated user's company. If
        the company has no tool restrictions configured, all native tools are
        returned. Sys-admins can pass `company_id` to inspect another company's
        allowed tools.
      operationId: api_v3_tools_retrieve
      parameters:
        - in: query
          name: company_id
          schema:
            type: integer
          description: Filter by company allowlist (sys-admins only).
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NativeToolListResponse'
          description: ''
        '400':
          content:
            application/json:
              schema:
                description: Invalid company_id parameter
          description: ''
        '403':
          content:
            application/json:
              schema:
                description: Permission denied
          description: ''
        '404':
          content:
            application/json:
              schema:
                description: Company not found
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    NativeToolListResponse:
      type: object
      properties:
        tools:
          type: array
          items:
            $ref: '#/components/schemas/NativeToolResponse'
      required:
        - tools
    NativeToolResponse:
      type: object
      properties:
        id:
          type: string
        object:
          type: string
          default: tool
        name:
          type: string
        type:
          $ref: '#/components/schemas/Type310Enum'
        require_document:
          type: boolean
          nullable: true
        accepted_file_types:
          type: array
          items:
            type: string
          nullable: true
      required:
        - id
        - name
        - type
    Type310Enum:
      enum:
        - native
        - mcp
      type: string
      description: |-
        * `native` - native
        * `mcp` - mcp
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is your auth token.

````