Create a list
data, including its id. Use that id to add and read entries.
Add entries
Entries are the resources a list contains. Add companies, deals, or people by referencing theirid.
Read entries
Fetch the entries in a list to read their current values, including any enriched columns. Entries are paginated like other collections.Lists can hold many entries. Page through them with
limit and lt as described in pagination.Manage the list
| Action | Endpoint |
|---|---|
| List all lists | GET /v1/lists |
| Get one list | GET /v1/lists/{id} |
| Rename or update | PUT /v1/lists/{id} |
| Delete | DELETE /v1/lists/{id} |
| Read entries | GET /v1/lists/{id}/entries |
| Add entries | POST /v1/lists/{id}/entries |
A common workflow
Assemble the universe
Search for relevant companies and add the matches as entries.
Enrich in bulk
Enrich at the list level so every entry gets firmographics and financials. See enrich companies.

