Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHubOpen Standards
Resources
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / Westlaw API
Westlaw API logo

Clarivate Westlaw API

★ Only Publicly Available OpenAPI DocumentData EnrichmentData TransformationapiKey4 EndpointsREST

For Agents

Search and retrieve cases, statutes, and full legal documents from Westlaw so an agent can ground legal answers in primary sources via four focused endpoints.

Use for: Search Westlaw for case law on employment non-compete clauses, Retrieve the full text of Westlaw document 12345, Find recent statutes on data privacy in California, Get the case opinion cited in a contract dispute

Not supported: Does not handle e-filing, document drafting, or matter management - use for searching and retrieving Westlaw cases, statutes, and legal documents only.

Jentic publishes the only available OpenAPI specification for Westlaw API, keeping it validated and agent-ready. The Westlaw API from Clarivate provides programmatic access to legal research and analytics, exposing search and document-retrieval endpoints for cases, statutes, and full legal documents. It uses an Authorization-header API key and is targeted at legal-tech tools, in-house legal teams, and AI assistants that need to ground answers in primary legal sources rather than free-text scraping. The endpoint surface is intentionally small - search, retrieve, and filter by document type.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Westlaw API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Westlaw API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fclarivate.com%2Fclarivate" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fclarivate.com%2Fclarivate" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Westlaw API.

Search legal documents across Westlaw's corpus with POST /search

Retrieve a specific document by documentId for full-text legal citations

Search case law specifically through GET /cases for litigation research

Search statutes through GET /statutes for regulatory and compliance research

Filter searches by jurisdiction and date range using query parameters

Pull primary-source legal text for AI grounding rather than relying on training data

Use Cases

Patterns agents use Westlaw API for, with concrete tasks.

★ Grounded legal research for AI assistants

An AI legal assistant calls POST /search with the user's natural-language question, gets back a ranked list of Westlaw documents, then calls GET /documents/{documentId} for the top results to extract authoritative passages. The assistant cites Westlaw as the source rather than hallucinating from training data, which is the difference between a usable legal tool and a liability.

Call POST /search with the query 'employment non-compete enforceability California', retrieve the top 3 documentIds, and pull each through GET /documents/{documentId}.

Litigation case-law lookup

A litigator preparing a brief calls GET /cases with the parties' names and a date range to find directly-on-point precedents, then pulls the full opinion through GET /documents/{documentId}. This replaces minutes of manual searching in the Westlaw web UI with a single API workflow that can also be scripted into a brief-preparation tool.

Call GET /cases with a party-name query and a date range covering the last 10 years, then retrieve the top result via GET /documents/{documentId}.

Regulatory monitoring across statutes

A compliance team polls GET /statutes regularly with a topic query (for example 'data privacy California') to surface newly enacted or amended statutes. New documentIds trigger a notification, and the full text is pulled via GET /documents/{documentId} for the compliance reviewer.

Call GET /statutes with topic='data privacy' and jurisdiction='California', diff against yesterday's documentId list, and forward new statutes to the compliance reviewer.

AI agent legal grounding via Jentic

A general-purpose AI agent connects to Westlaw through Jentic. When a user asks a legal question, the agent searches by intent ('search Westlaw case law'), loads the schema for POST /search, and executes the call. The user gets a citation-backed answer instead of a confidently wrong summary, and the API key never leaves your Jentic One instance.

Through Jentic, search 'search Westlaw case law', load the schema for POST /search, and execute the call with the user's legal question as the query string.

Key Endpoints

4 endpoints — jentic publishes the only available openapi specification for westlaw api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/search

Search legal documents

GET

/documents/{documentId}

Get a legal document by ID

GET

/cases

Search cases

GET

/statutes

Search statutes

POST

/search

Search legal documents

GET

/documents/{documentId}

Get a legal document by ID

GET

/cases

Search cases

GET

/statutes

Search statutes

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Westlaw API by hand means managing its API key and threading legal search, case, statute, and document retrieval through the right endpoints yourself. Through Jentic you install once, import the Westlaw API from the API Directory, store the API key once, and your agent calls it.

Permission scoping

Permission scoping

Westlaw is a search-and-retrieve API that puts the document id in the URL path (/documents/{documentId}) and takes search terms in the request body, so scope the agent to the operations it needs, such as searching and reading documents. You choose the operations it may call, so it runs only the retrieval operations you include.

Credential management

Credential isolation

Your Westlaw API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'search Westlaw cases' or 'retrieve a statute document', and Jentic returns the matching Westlaw operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

UniCourt Legal Data API

→

Open-access US case law and court document API, free for many use cases

Choose CourtListener when budget rules out Westlaw or when public US federal case law is sufficient for the task.

Complementary

OpenAI API

→

LLM that summarises Westlaw documents into answers

Use OpenAI alongside Westlaw to convert retrieved case opinions into a plain-English answer with citations.

Complementary

Anthropic API

→

Long-context LLM useful for reasoning over multiple Westlaw opinions

Use Anthropic when the legal answer requires synthesising multiple long Westlaw documents into one analysis.

FAQs

Specific to using Westlaw API through Jentic.

Why is there no official OpenAPI spec for Westlaw API?

Clarivate does not publish a public OpenAPI specification for Westlaw. Jentic generates and maintains this spec so that AI agents and developers can call Westlaw API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Westlaw API use?

The Westlaw API uses an API key sent in the Authorization request header. Through Jentic, the key is stored encrypted in your Jentic One instance and injected at execution time - the agent's context never holds the raw key.

Can I retrieve the full text of a case opinion or statute?

Yes. After calling /search, /cases, or /statutes to get a documentId, GET /documents/{documentId} returns the full document text. This is the canonical way to pull the primary source for citation in a brief or AI answer.

Can I search case law and statutes separately?

Yes. GET /cases is the dedicated case-law search endpoint and GET /statutes is the dedicated statute-search endpoint. POST /search performs a cross-document search across the full Westlaw corpus when the document type is not known in advance.

What are the rate limits for the Westlaw API?

The OpenAPI spec does not declare explicit rate limits. Clarivate gates Westlaw API access by contract, with per-account quotas. For production usage, add retry-with-backoff on 429 responses and confirm specific limits with your Clarivate account team.

How do I ground an AI agent's legal answers in Westlaw through Jentic?

Run pip install jentic, then have the agent search 'search Westlaw case law', load the schema for POST /search, execute the call with the user's question, and pull the top documents through GET /documents/{documentId}. Jentic resolves the API key automatically - the agent only sees the search results.

Can I limit what my agent is allowed to do with the Westlaw API?

Yes. Because you run Jentic One yourself, you decide which Westlaw operations the agent may call, so you can grant only the ones it needs, such as POST /search, GET /cases, or GET /statutes to find documents and GET /documents/{documentId} to read full text. If a use case only requires reading case law, you can include the case-search and document-retrieval operations and leave out the rest, and the agent runs only the operations you include. Your Westlaw API key stays under your own rules and is injected at execution time rather than exposed to the agent.

GET STARTED

Start building with Westlaw API

Explore with Jentic One
View OpenAPI Document