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

# List Grants

> Returns all grants for the authenticated organization. Filter by externalEmployeeID in the response to get grants for a specific employee.



## OpenAPI

````yaml GET /listGrants
openapi: 3.0.0
info:
  title: Toku API
  version: 1.0.0
  description: >-
    The Toku API lets you programmatically manage token grants, wallets,
    employees, payroll, and invoices. Build custom integrations and automate
    your token compensation workflows.
servers:
  - url: https://app.toku.com/api/tokuApi/v1
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Grants
    description: Create, list, terminate, and revert token grants
  - name: Wallets
    description: Manage recipient wallets, verification, and distributions
  - name: Employees
    description: Manage user roles within your organization
  - name: Tokens & Networks
    description: Configure token types and blockchain networks for your organization
  - name: Invoices
    description: Submit and settle invoice payments
  - name: Organization
    description: Configure organization settings
  - name: Distributions
    description: >-
      Approve vestings, add tax details, update FMV, finalize, submit
      settlements, and track status
  - name: Custody
    description: >-
      Connect custody providers (Fireblocks, Anchorage, Safe), manage custody
      wallets, and allocate to grants
  - name: Authentication
    description: Partner API token management
  - name: Payroll
    description: Payroll run creation, management, and state transitions
  - name: EOR
    description: Employer of Record employee onboarding and management
  - name: Payslips
    description: Payslip generation, upload, and retrieval
  - name: Webhooks
    description: Webhook endpoint management and event delivery
  - name: Stablecoin Funding
    description: Token payroll creation and stablecoin settlement
paths:
  /listGrants:
    get:
      tags:
        - Grants
      summary: List Grants
      description: >-
        Returns all grants for the authenticated organization. Filter by
        externalEmployeeID in the response to get grants for a specific
        employee.
      operationId: listGrants
      parameters:
        - name: x-role-type
          in: header
          required: true
          description: >-
            Role context for the request. Use CLIENT_ORG_ADMIN for most
            integrations.
          example: CLIENT_ORG_ADMIN
          schema:
            type: string
            enum:
              - CLIENT_ORG_ADMIN
              - PAYROLL_ADMIN
              - FINANCE_ADMIN
              - TOKU_ADMIN
      responses:
        '200':
          description: List of grants
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Grant'
        '401':
          description: Authentication failed — token missing, invalid, or expired
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Caller does not have the required role
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded (100 req/min per IP)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Grant:
      type: object
      properties:
        grantID:
          type: string
          format: uuid
          description: Unique identifier
          example: 550e8400-e29b-41d4-a716-446655440000
        grantName:
          type: string
          description: Human-readable name
          example: Q1 2026 Token Grant - Jane Smith
        externalEmployeeID:
          type: string
          nullable: true
          description: External HRIS identifier
          example: EMP-001
        grantAmount:
          type: number
          description: Total token units (0 for fiat grants)
          example: 50000
        grantStatus:
          type: string
          enum:
            - PENDING
            - REJECTED
            - ACCEPTED
            - COMPLETED
            - TERMINATED
            - PAUSED
            - MARKED_FOR_FUTURE_TERMINATION
          example: ACCEPTED
        grantAmountInFiat:
          type: number
          description: Fiat value of the grant
          example: 25000
        grantConfigurationName:
          type: string
          description: Template name
          example: Standard 4-Year RTU
        vestingStartDate:
          type: string
          format: date-time
          example: '2026-01-01T00:00:00.000Z'
        vestingPeriods:
          type: integer
          example: 48
        vestingFrequencyType:
          type: string
          enum:
            - MONTHLY
            - QUARTERLY
            - ANNUALLY
          example: MONTHLY
        vestingCliffPeriods:
          type: integer
          example: 12
        vestingCliffPercentage:
          type: number
          example: 25
        percentageOfUnitsVested:
          type: number
          description: Percentage vested to date
          example: 16.67
        recipientFullName:
          type: string
          example: Jane Smith
        grantDate:
          type: string
          format: date-time
          example: '2025-12-15T00:00:00.000Z'
        tags:
          type: array
          items:
            type: string
          example:
            - engineering
            - '2026'
        roleInOrgID:
          type: string
          format: uuid
          example: 660e8400-e29b-41d4-a716-446655440001
        roleInOrgExternalID:
          type: integer
          example: 12345
        hasGrantDocuments:
          type: boolean
          example: false
        createdAt:
          type: string
          format: date-time
          example: '2025-12-15T10:30:00.000Z'
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Short error message
        details:
          type: string
          description: Additional debugging information
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Personal API token. Create via createUserApiToken endpoint.

````