Feathery Document Templates API

PDF and document template management

Operations 5

POST /api/document/fill/ Fill/sign document template #
GET /api/document/template/ List document templates #
POST /api/document/template/ Bulk upload document templates #
GET /api/document/envelope/ List document envelopes #
DELETE /api/document/envelope/{envelope_id}/ Delete document envelope #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/feathery-document-templates-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

feathery-document-templates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Feathery REST Account Document Templates API
  description: 'RESTful API for managing forms, fields, submissions, documents, end users, and workflows. Feathery is an enterprise form SDK and AI-driven data intake platform purpose-built for financial services including insurance and wealth management. Supports multi-region deployments across US, Canada, Europe, and Australia with token-based authentication.

    '
  version: 1.0.0
  contact:
    url: https://www.feathery.io
  license:
    name: Proprietary
servers:
- url: https://api.feathery.io
  description: US (default)
- url: https://api-ca.feathery.io
  description: Canada
- url: https://api-eu.feathery.io
  description: Europe
- url: https://api-au.feathery.io
  description: Australia
security:
- TokenAuth: []
tags:
- name: Document Templates
  description: PDF and document template management
paths:
  /api/document/fill/:
    post:
      operationId: fillDocument
      summary: Fill/sign document template
      description: Fill or sign a document template.
      tags:
      - Document Templates
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - document
              properties:
                document:
                  type: string
                  description: Document template ID
                user:
                  type: string
                  description: User or submission ID
                signer:
                  type: string
                  format: email
                  description: Email of the signer
                fields:
                  type: object
                  additionalProperties: true
                  description: Field values to fill in the document
      responses:
        '201':
          description: Document filled successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentEnvelope'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /api/document/template/:
    get:
      operationId: listDocumentTemplates
      summary: List document templates
      description: Retrieve a list of all document templates.
      tags:
      - Document Templates
      parameters:
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/Page'
      responses:
        '200':
          description: List of document templates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedDocumentTemplates'
        '401':
          $ref: '#/components/responses/Unauthorized'
    post:
      operationId: uploadDocumentTemplates
      summary: Bulk upload document templates
      description: Bulk upload document templates (multipart/form-data).
      tags:
      - Document Templates
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - file
              properties:
                file:
                  type: string
                  format: binary
                  description: Document template file
                name:
                  type: string
                  description: Name for the template
                tags:
                  type: array
                  items:
                    type: string
                  description: Tags for the template
      responses:
        '201':
          description: Template uploaded successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentTemplate'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /api/document/envelope/:
    get:
      operationId: listDocumentEnvelopes
      summary: List document envelopes
      description: Retrieve a list of all document envelopes.
      tags:
      - Document Templates
      parameters:
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/CreatedAfter'
      - $ref: '#/components/parameters/CreatedBefore'
      responses:
        '200':
          description: List of document envelopes
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedDocumentEnvelopes'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /api/document/envelope/{envelope_id}/:
    delete:
      operationId: deleteDocumentEnvelope
      summary: Delete document envelope
      description: Delete a specific document envelope.
      tags:
      - Document Templates
      parameters:
      - name: envelope_id
        in: path
        required: true
        schema:
          type: string
        description: Unique envelope identifier
      responses:
        '204':
          description: Envelope deleted successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    PaginatedResponse:
      type: object
      properties:
        count:
          type: integer
          description: Total number of available records
        next:
          type:
          - string
          - 'null'
          format: uri
          description: URL for the next page
        previous:
          type:
          - string
          - 'null'
          format: uri
          description: URL for the previous page
        total_pages:
          type: integer
          description: Total number of pages
        current_page:
          type: integer
          description: Current page number
    Error:
      type: object
      properties:
        detail:
          type: string
          description: Error detail message
        errors:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: Field-level validation errors
    PaginatedDocumentEnvelopes:
      allOf:
      - $ref: '#/components/schemas/PaginatedResponse'
      - type: object
        properties:
          results:
            type: array
            items:
              $ref: '#/components/schemas/DocumentEnvelope'
    DocumentTemplate:
      type: object
      properties:
        id:
          type: string
          description: Template identifier
        name:
          type: string
          description: Template name
        type:
          type: string
          enum:
          - pdf
          - docx
          - xlsx
          - pptx
          - idml
          description: Document type
        file:
          type: string
          format: uri
          description: URL to the template file
        tags:
          type: array
          items:
            type: string
          description: Template tags
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
    PaginatedDocumentTemplates:
      allOf:
      - $ref: '#/components/schemas/PaginatedResponse'
      - type: object
        properties:
          results:
            type: array
            items:
              $ref: '#/components/schemas/DocumentTemplate'
    DocumentEnvelope:
      type: object
      properties:
        id:
          type: string
          description: Envelope identifier
        document:
          type: string
          description: Template ID
        user:
          type: string
          description: Submission identifier
        signer:
          type: string
          format: email
          description: Signer email address
        sender:
          type: string
          format: email
          description: Sender email address
        file:
          type: string
          format: uri
          description: URL to the envelope file
        type:
          type: string
          description: Envelope type
        viewed:
          type: boolean
          description: Whether the envelope has been viewed
        signed:
          type: boolean
          description: Whether the envelope has been signed
        tags:
          type: array
          items:
            type: string
          description: Envelope tags
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
  parameters:
    CreatedAfter:
      name: created_after
      in: query
      schema:
        type: string
        format: date-time
      description: Filter by creation date (after)
    CreatedBefore:
      name: created_before
      in: query
      schema:
        type: string
        format: date-time
      description: Filter by creation date (before)
    PageSize:
      name: page_size
      in: query
      schema:
        type: integer
        maximum: 1000
        default: 100
      description: Number of results per page (max 1000)
    Page:
      name: page
      in: query
      schema:
        type: integer
        default: 1
      description: Page number
  responses:
    Unauthorized:
      description: Unauthorized - invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: Bad Request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    TokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Token-based authentication. Format: Token <API KEY>'