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

# Get all document details on the account

> Returns all documents owned by the user associated with the provided API key. Each document includes its metadata, a presigned public URL, and recipient information.



## OpenAPI

````yaml GET /getAllDocuments
openapi: 3.1.0
info:
  title: Inkless API
  description: >-
    API for the Inkless document signing service. Create documents from
    templates, manage webhooks, and retrieve document status.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.useinkless.com
security:
  - apiKeyAuth: []
paths:
  /getAllDocuments:
    get:
      summary: Retrieve all documents
      description: >-
        Returns all documents owned by the user associated with the provided API
        key. Each document includes its metadata, a presigned public URL, and
        recipient information.
      operationId: getAllDocuments
      responses:
        '200':
          description: Successfully retrieved all documents for the user.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAllDocumentsResponse'
        '401':
          description: Unauthorized (API key missing or invalid)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKeyAuth: []
components:
  schemas:
    GetAllDocumentsResponse:
      type: object
      properties:
        message:
          type: string
          description: Status message
        documents:
          type: array
          items:
            $ref: '#/components/schemas/DashboardDocument'
      required:
        - message
        - documents
    Error:
      type: object
      required:
        - message
      properties:
        error:
          type: integer
          format: int32
          description: Optional error code.
        message:
          type: string
          description: A human-readable error message.
    DashboardDocument:
      type: object
      properties:
        id:
          type: string
          description: Unique document identifier
        name:
          type: string
          description: Name or title of the document
        status:
          type: string
          description: Current status of the document (e.g., draft, signed, etc.)
        publicUrl:
          type:
            - string
            - 'null'
          description: Presigned URL for accessing the document, or null if unavailable
        recipients:
          type: array
          description: List of recipients for this document
          items:
            $ref: '#/components/schemas/DocumentRecipient'
      required:
        - id
        - recipients
    DocumentRecipient:
      type: object
      properties:
        name:
          type: string
          description: Recipient's name
        email:
          type: string
          format: email
          description: Recipient's email address
      required:
        - name
        - email
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````