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

# List My Grants

> Returns active authorization grants where the authenticated workspace is the grantee



## OpenAPI

````yaml /api-reference/openapi.json get /private-api/v1/me/grants
openapi: 3.1.0
info:
  title: Nonce Private API
  description: |-
    Nonce Private API documentation - Internal endpoints for system integration

    Generated by NestJS Swagger Module with nestjs-zod
    Scope: Private API endpoints only (/private-api/*)
    Do not edit this file manually - regenerate with: pnpm run docs:openapi
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.nonce.app
    description: Production server
security: []
tags: []
paths:
  /private-api/v1/me/grants:
    get:
      tags:
        - Private API
        - Workspace
      summary: List My Grants
      description: >-
        Returns active authorization grants where the authenticated workspace is
        the grantee
      operationId: GetMyGrants
      parameters: []
      responses:
        '200':
          description: Successfully retrieved grants
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                    description: Indicates if the request was successful
                  data:
                    type: array
                    description: Array of items
                    items:
                      def:
                        type: object
                        shape:
                          id:
                            def:
                              type: string
                              checks:
                                - def:
                                    type: string
                                    format: uuid
                                    check: string_format
                                    abort: false
                                    pattern: {}
                                  type: string
                                  format: uuid
                                  minLength: null
                                  maxLength: null
                            type: string
                            format: uuid
                            minLength: null
                            maxLength: null
                          grantor_workspace_id:
                            def:
                              type: string
                            type: string
                            format: null
                            minLength: null
                            maxLength: null
                          grantor_workspace_slug:
                            def:
                              type: nullable
                              innerType:
                                def:
                                  type: string
                                type: string
                                format: null
                                minLength: null
                                maxLength: null
                            type: nullable
                          grantor_workspace_name:
                            def:
                              type: nullable
                              innerType:
                                def:
                                  type: string
                                type: string
                                format: null
                                minLength: null
                                maxLength: null
                            type: nullable
                          farms:
                            def:
                              type: array
                              element:
                                def:
                                  type: object
                                  shape:
                                    id:
                                      def:
                                        type: string
                                      type: string
                                      format: null
                                      minLength: null
                                      maxLength: null
                                    name:
                                      def:
                                        type: nullable
                                        innerType:
                                          def:
                                            type: string
                                          type: string
                                          format: null
                                          minLength: null
                                          maxLength: null
                                      type: nullable
                                type: object
                            type: array
                            element:
                              def:
                                type: object
                                shape:
                                  id:
                                    def:
                                      type: string
                                    type: string
                                    format: null
                                    minLength: null
                                    maxLength: null
                                  name:
                                    def:
                                      type: nullable
                                      innerType:
                                        def:
                                          type: string
                                        type: string
                                        format: null
                                        minLength: null
                                        maxLength: null
                                    type: nullable
                              type: object
                          created_at:
                            def:
                              type: date
                              coerce: true
                            type: date
                            minDate: null
                            maxDate: null
                          updated_at:
                            def:
                              type: date
                              coerce: true
                            type: date
                            minDate: null
                            maxDate: null
                      type: object
                  error:
                    type: 'null'
                    example: null
                    description: Error object (null on success)
                required:
                  - success
                  - data
                  - error
        '400':
          description: Bad Request - Invalid parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    description: HTTP status code
                    example: 400
                  message:
                    type: string
                    description: Error message
                    example: Invalid request parameters
                  error:
                    type: string
                    description: Error type
                    example: Bad Request
                required:
                  - statusCode
                  - message
                  - error
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    description: HTTP status code
                    example: 401
                  message:
                    type: string
                    description: Error message
                    example: Invalid or missing API key
                  error:
                    type: string
                    description: Error type
                    example: Unauthorized
                required:
                  - statusCode
                  - message
                  - error
        '403':
          description: Forbidden - Valid API key but insufficient permissions
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    description: HTTP status code
                    example: 403
                  message:
                    type: string
                    description: Error message
                    example: Access denied to workspace
                  error:
                    type: string
                    description: Error type
                    example: Forbidden
                required:
                  - statusCode
                  - message
                  - error
        '404':
          description: Not Found - Resource does not exist
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    type: number
                    description: HTTP status code
                    example: 404
                  message:
                    type: string
                    description: Error message
                    example: Resource not found
                  error:
                    type: string
                    description: Error type
                    example: Not Found
                required:
                  - statusCode
                  - message
                  - error
      security:
        - clerk-api-key: []
components:
  securitySchemes:
    clerk-api-key:
      scheme: bearer
      bearerFormat: API Key
      type: http
      description: Clerk Machine API Key for authentication

````