Attio List Entries API
Entries within a list, referencing a parent record.
Entries within a list, referencing a parent record.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/attio-list-entries-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Attio REST Attributes List Entries API
description: 'The Attio REST API exposes the Attio CRM''s object/attribute/record data model over HTTPS. Attio is an AI-native CRM built on flexible objects (people, companies, deals, users, workspaces, and custom objects), typed attributes, records, and lists. This specification covers the core data-model, activity, collaboration, and platform endpoints: objects, records, attributes, lists, list entries, notes, tasks, comments, threads, webhooks, workspace members, and token identification. All requests are authenticated with a Bearer access token (API key or OAuth) and scoped by granular permissions. Endpoints marked modeled in the repository review were derived from Attio''s published endpoint reference and follow Attio''s documented /v2 path conventions.'
version: '2.0'
contact:
name: Attio
url: https://attio.com
license:
name: Proprietary
url: https://attio.com/legal
servers:
- url: https://api.attio.com/v2
description: Attio REST API v2
security:
- bearerAuth: []
tags:
- name: List Entries
description: Entries within a list, referencing a parent record.
paths:
/lists/{list}/entries/query:
parameters:
- $ref: '#/components/parameters/List'
post:
operationId: listEntries
tags:
- List Entries
summary: List entries
description: Lists entries in a given list, with the option to filter and sort results.
requestBody:
content:
application/json:
schema:
type: object
responses:
'200':
description: A page of list entries.
/lists/{list}/entries:
parameters:
- $ref: '#/components/parameters/List'
post:
operationId: createEntry
tags:
- List Entries
summary: Create an entry
description: Adds a record to a list as a new list entry.
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: The created list entry.
put:
operationId: assertEntry
tags:
- List Entries
summary: Assert a list entry by parent
description: Creates or updates a list entry, keyed by its parent record.
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: The asserted list entry.
/lists/{list}/entries/{entry_id}:
parameters:
- $ref: '#/components/parameters/List'
- $ref: '#/components/parameters/EntryId'
get:
operationId: getEntry
tags:
- List Entries
summary: Get a list entry
description: Gets a single list entry by its entry_id.
responses:
'200':
description: The requested list entry.
patch:
operationId: updateEntryAppend
tags:
- List Entries
summary: Update a list entry (append multiselect values)
description: Updates a list entry, appending values to multiselect attributes.
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: The updated list entry.
put:
operationId: updateEntryOverwrite
tags:
- List Entries
summary: Update a list entry (overwrite multiselect values)
description: Updates a list entry, overwriting values on multiselect attributes.
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: The updated list entry.
delete:
operationId: deleteEntry
tags:
- List Entries
summary: Delete a list entry
description: Deletes a list entry by its entry_id.
responses:
'200':
description: The list entry was deleted.
components:
parameters:
EntryId:
name: entry_id
in: path
required: true
schema:
type: string
List:
name: list
in: path
required: true
description: The list ID or slug.
schema:
type: string
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: Attio access token (API key or OAuth 2.0 bearer token) with the required scopes.