Skip to main content
The Lasso API is built on REST principles. All requests use HTTPS and return JSON responses. Use Lasso to search for products, enrich partial data into complete records, extract structured data from files, and enhance it with AI — all through a single API.

Base URL

All requests contain the following base URL:

Quick examples

The fastest way to use Lasso — no setup required:

Authentication

To authenticate you need to add an Authorization header with the contents of the header being Bearer lasso_xxxxxxxxx where lasso_xxxxxxxxx is your API Key.
API keys are scoped to a single company. All resources accessed through a key belong to that company. See the Authentication page for more details on key management and security best practices.

SDKs

Official SDKs are available for TypeScript and Python.

Response codes

Lasso uses standard HTTP codes to indicate the success or failure of your requests. See Errors for the full error response format.

Pagination

List endpoints support page-based pagination with page and limit query parameters. The default page size is 25 and the maximum is 100.
See Pagination for details and iteration examples.

Webhooks

Configure a webhook_url on search, enrich, or table creation to receive HTTP POST notifications when processing completes. Webhook payloads are signed with HMAC-SHA256 and retried up to 3 times with exponential backoff. See Webhooks for delivery format, signature verification, and retry policy.