Evisort

Evisort is an AI-powered contract lifecycle management (CLM) and contract intelligence platform that lets teams upload, search, and extract data from contracts, and automate contract generation and review workflows. Evisort was acquired by Workday in 2024 and is now offered as Workday Contract Lifecycle Management, powered by Evisort. Its REST API supports document upload and retrieval, field and metadata extraction, search, workflow automation, and webhooks, authenticated with an Evisort API key exchanged for a JWT bearer token.

5 APIs 0 Features
Contract Lifecycle ManagementCLMContract IntelligenceDocument AILegal Tech

APIs

Evisort Documents API

Upload contracts and supporting files into Evisort, retrieve and download document content (PDF, DOCX, with optional OCR), and manage documents stored in a workspace.

Evisort Field and Metadata Extraction API

Read and write the AI-extracted fields, clauses, and metadata associated with a document, supporting import and export of structured contract data.

Evisort Workflow API

Streamline and scale contract processes by initiating contract generation and review, and managing workflow tickets and their associated documents.

Evisort Search API

Query contracts across a workspace by type, category, field values, clauses, and full-text terms, with pagination and optional unique field-value aggregation.

Evisort Webhooks

Subscribe to events occurring in an Evisort workspace so external systems can react to document, field, and workflow changes in near real time.

Collections

Pricing Plans

Evisort Plans Pricing

1 plans

PLANS

Rate Limits

Evisort Rate Limits

2 limits

RATE LIMITS

FinOps

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Evisort API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Authentication
    type: folder
  items:
  - info:
      name: Generate a JWT token from an Evisort API key.
      type: http
    http:
      method: POST
      url: https://api.evisort.com/v1/auth/token
      body:
        type: json
        data: '{}'
    docs: Exchanges an Evisort API key (sent in the EVISORT-API-KEY header) for a short-lived JWT bearer token used on subsequent
      requests.
- info:
    name: Search
    type: folder
  items:
  - info:
      name: Search documents in a workspace.
      type: http
    http:
      method: POST
      url: https://api.evisort.com/v1/search
      body:
        type: json
        data: '{}'
    docs: Searches contracts by type, category, field filters, clauses, and free-text terms. Supports page, pageSize, includeMapping,
      and returnUniqueFieldValues query parameters.
- info:
    name: Documents
    type: folder
  items:
  - info:
      name: Upload a document.
      type: http
    http:
      method: POST
      url: https://api.evisort.com/v1/documents
      body:
        type: multipart-form
        data: []
    docs: Uploads a contract or supporting file into Evisort for AI processing, field extraction, and search indexing.
  - info:
      name: Download document content.
      type: http
    http:
      method: GET
      url: https://api.evisort.com/v1/documents/{evisortId}/content
    docs: Downloads the file content of a document by its Evisort document ID. Supports ocr and type (pdf|docx) query parameters.
- info:
    name: Fields
    type: folder
  items:
  - info:
      name: Get extracted fields and metadata for a document.
      type: http
    http:
      method: GET
      url: https://api.evisort.com/v1/documents/{evisortId}/fields
    docs: Returns the AI-extracted fields, clauses, and metadata associated with a document. Field definitions are workspace-specific.
bundled: true