Load Evisort data to DuckDB
Build a Evisort to DuckDB pipeline with your coding agent. One prompt scaffolds it with the dltHub AI harness, plus the Evisort API base URL, auth, endpoints, and incremental loading.
Evisort is an AI-powered contract lifecycle management and contract-analysis platform exposing REST APIs to manage contract documents and workspace resources. Everything needed to build a working Evisort → DuckDB pipeline is on this page: the API's base URL, authentication, endpoints, pagination and incremental field — plus a prompt that hands the whole job to your coding agent.
Build your Evisort to DuckDB pipeline
Paste this prompt into Claude, Codex, or Cursor. The agent does the rest.
PromptRunuvx dlthub-init@latestto build a pipeline from Evisort to DuckDB and run it on dltHub
That scaffolds a dltHub workspace and installs the dltHub AI harness — the project rules, the secrets-management skill, and the dlt MCP server your agent needs to work safely. From there it reads the Evisort API, proposes the endpoints to load, then writes, runs and validates the pipeline while you review rather than type. Credentials are inspected through MCP tools, so your agent never reads secrets.toml itself. How the LLM-native workflow works →
Prefer to write it yourself? Every fact the agent uses is below.
Evisort API at a glance
| Base URL | https://api.evisort.com/v1 |
| Example endpoint | GET v1/auditlogs/records |
| Authentication | API key exchanged for a short-lived JWT bearer token — sent in the Authorization header, prefixed Bearer |
| Pagination | Page-number |
| API reference | https://developers.evisort.com/ |
These values come from the Evisort API reference — the authoritative source if anything here looks out of date.
How do I authenticate with the Evisort API?
Authentication requires two steps: first, exchange an Evisort API key (sent in the 'EVISORT-API-KEY' header) by calling POST /auth/token to receive a JWT. Then, use this JWT in all subsequent requests by setting the 'Authorization' header to 'Bearer {token}'.
1. Get your credentials
- Log in to your Evisort web dashboard. 2. Navigate to the Admin Console from the navigation bar. 3. Select 'API Management'. 4. Click the button to generate a new API key and copy the value provided. Use this key to authenticate your requests by sending it to the /auth/token endpoint to receive a short-lived JWT bearer token.
2. Add them to .dlt/secrets.toml
[sources.evisort_source] evisort_api_key = "your_evisort_api_key_here"
dlt reads this file automatically at runtime. With the harness, the setup-secrets skill prompts you for the values and never handles the raw credential in chat. For production, see setting up credentials with dlt.
What Evisort data can I load into DuckDB?
These are the Evisort endpoints dlt can load into DuckDB:
| Resource | Endpoint | Method | Data selector | Description |
|---|---|---|---|---|
| documents | /v1/documents | GET | List multiple document records | |
| document | /v1/documents/{docId} | GET | List a document record by docId | |
| provisions | /v1/provisions | GET | List all provisions | |
| audit_logs | /v1/auditlogs/records | GET | records | Bulk retrieval of audit logs |
| fields | /v1/fields | GET | List all the fields | |
| search | /v1/search | POST | documents | Composite search for documents |
How do I load only new Evisort records?
The Evisort API reference does not document a timestamp or sequence field for these endpoints, so there is nothing to advertise here as verified. Pick a field from the endpoints table above that increases with every write, then set it as the cursor_path.
{"name": "audit_logs", "endpoint": { "path": "v1/auditlogs/records", # Replace with a field that increases on every write. "incremental": {"cursor_path": "REPLACE_ME", "initial_value": "2024-01-01T00:00:00Z"}, }}
On the first run dlt loads everything from initial_value; on every run after that it requests only what changed and appends with write_disposition="merge" if you set a primary key. See incremental loading.
What does the generated Evisort pipeline look like?
A standard dlt REST API pipeline — the same code you would write by hand, loading /auth/token and /documents from the Evisort API into DuckDB:
import dlt from dlt.sources.rest_api import RESTAPIConfig, rest_api_resources @dlt.source def evisort_source(api_key=dlt.secrets.value): config: RESTAPIConfig = { "client": { "base_url": "https://api.evisort.com/v1", "auth": {"type": "bearer", "token": api_key}, }, "resources": [ {"name": "audit_logs", "endpoint": {"path": "v1/auditlogs/records"}}, {"name": "search", "endpoint": {"path": "v1/search"}} ], } yield from rest_api_resources(config) def load_evisort_to_duckdb() -> None: pipeline = dlt.pipeline( pipeline_name="evisort_pipeline", destination="duckdb", dataset_name="evisort_data", ) load_info = pipeline.run(evisort_source()) print(load_info) if __name__ == "__main__": load_evisort_to_duckdb()
Run it with python evisort_pipeline.py. The agent iterates on this until it loads cleanly — you review and approve, rather than write it from scratch.
How do I query Evisort data in DuckDB?
dlt creates one table per resource. Query the loaded data with Python or SQL — or ask your agent to, through the MCP server's execute_sql_query tool.
Python (pandas DataFrame):
import dlt data = dlt.pipeline("evisort_pipeline").dataset() df = data.audit_logs.df() print(df.head())
SQL:
SELECT * FROM evisort_data.audit_logs LIMIT 10;
See querying your data with dataset and exploring it in marimo notebooks.
How do I deploy the Evisort to DuckDB pipeline in production?
The pipeline runs locally, which is ideal for prototyping and one-off analysis. When you need it on a schedule, monitored on every load, and shared with your team, deploy the same dlt code on the dltHub platform — no infrastructure to maintain. The prompt above already ends with "run it on dltHub", so your agent can take it there directly.
- Deploy & schedule — run the pipeline as a managed job with automatic retries.
- Monitor — observable job queues, alerting, and load metrics for every run.
- Transform — promote raw Evisort loads into governed, documented models.
- Visualize & share — explore data in notebooks and publish live dashboards instead of static screenshots.
What other destinations can I load Evisort data to?
dlt loads into any of these — only the destination argument changes:
| Destination | Example value |
|---|---|
| PostgreSQL | "postgres" |
| BigQuery | "bigquery" |
| Snowflake | "snowflake" |
| Redshift | "redshift" |
| Databricks | "databricks" |
| Filesystem (S3, GCS, Azure) | "filesystem" |
Set dlt.pipeline(destination="snowflake") and add credentials in .dlt/secrets.toml. On the dltHub platform the same pipeline runs against a managed Iceberg lakehouse. See the full destinations list.
Next steps
Was this page helpful?
Community Hub
Need more dlt context for Evisort to DuckDB?
Request dlt skills, commands, AGENT.md files, and AI-native context.