Filevine Deadlines API

Manage the date-driven legal milestones on a project — statutes of limitations, court dates, response deadlines — with assignees and reminder notifications. Deadlines can chain off a parent deadline.

Operations 2

GET /core/projects/{projectId}/deadlines Filevine List Project Deadlines #
POST /core/projects/{projectId}/deadlines Filevine Create Deadline #

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/filevine-deadlines-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

filevine-deadlines-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Filevine Contacts Deadlines API
  description: 'Contact cards represent people and organizations associated with a project — clients, opposing parties, witnesses, adjusters, experts, and third parties. The Contacts API exposes the global contact list as well as project-scoped contact attachments and roles.

    '
  version: '2.0'
  contact:
    name: Filevine API Support
    url: https://developer.filevine.io/
  license:
    name: Filevine Terms of Service
    url: https://www.filevine.com/terms-of-service/
servers:
- url: https://api.filevine.io
  description: Filevine API Gateway (US)
- url: https://api.filevineapp.ca
  description: Filevine API Gateway (Canada)
security:
- BearerAuth: []
tags:
- name: Deadlines
  description: Project deadlines and reminders.
paths:
  /core/projects/{projectId}/deadlines:
    parameters:
    - name: projectId
      in: path
      required: true
      schema:
        type: integer
        format: int64
    get:
      summary: Filevine List Project Deadlines
      description: List deadlines for a project with optional status and date filters.
      operationId: listProjectDeadlines
      tags:
      - Deadlines
      parameters:
      - name: status
        in: query
        schema:
          type: string
          enum:
          - open
          - completed
          - missed
      - name: from
        in: query
        schema:
          type: string
          format: date
      - name: to
        in: query
        schema:
          type: string
          format: date
      responses:
        '200':
          description: Deadlines list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeadlineList'
    post:
      summary: Filevine Create Deadline
      description: Create a new deadline on a project, optionally with reminders and an assignee.
      operationId: createDeadline
      tags:
      - Deadlines
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDeadlineRequest'
      responses:
        '201':
          description: Deadline created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Deadline'
components:
  schemas:
    DeadlineList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Deadline'
        hasMore:
          type: boolean
    Deadline:
      type: object
      properties:
        deadlineId:
          type: integer
          format: int64
        projectId:
          type: integer
          format: int64
        name:
          type: string
        dueDate:
          type: string
          format: date-time
        status:
          type: string
          enum:
          - open
          - completed
          - missed
        assigneeId:
          type: integer
          format: int64
        reminders:
          type: array
          items:
            type: object
            properties:
              triggerOffsetMinutes:
                type: integer
              notifyUserIds:
                type: array
                items:
                  type: integer
                  format: int64
    CreateDeadlineRequest:
      type: object
      required:
      - name
      - dueDate
      properties:
        name:
          type: string
        dueDate:
          type: string
          format: date-time
        assigneeId:
          type: integer
          format: int64
        reminders:
          type: array
          items:
            type: object
            properties:
              triggerOffsetMinutes:
                type: integer
              notifyUserIds:
                type: array
                items:
                  type: integer
                  format: int64
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT