What can you do with it?

The Attio integration provides access to your data-driven customer relationship platform, allowing you to manage contacts, lists, and data workflows programmatically. You can retrieve all lists in your workspace, access object definitions including people and companies, and work with the structured data that powers Attio’s relationship management capabilities. This integration is perfect for teams that need to integrate their CRM data with other business processes and automate data workflows.

How to use it?

Basic Command Structure

/your-attio-connection [action] [required-parameters] [optional-parameters]

Parameters

Required:

  • action - The operation you want to perform (list_lists, list_objects)

Optional:

  • offset - Pagination offset for results
  • limit - Maximum number of results to return

Tools

List All Lists

Retrieve a paginated list of all lists in your workspace

Parameters:

  • action (required) - Set to “list_lists”
  • offset (optional) - Pagination offset (default: 0)
  • limit (optional) - Results per page (default: 20)

Example:

/your-attio-connection
action: list_lists
offset: 0
limit: 20

Response:

{
  "data": "[Array of list objects with id, type, name, and creation timestamp]",
  "offset": "[Current offset]",
  "limit": "[Results per page]",
  "total": "[Total number of lists]"
}

List Objects

Retrieve a paginated list of all objects in your workspace

Parameters:

  • action (required) - Set to “list_objects”
  • offset (optional) - Pagination offset (default: 0)
  • limit (optional) - Results per page (default: 20)

Example:

/your-attio-connection
action: list_objects
offset: 0
limit: 20

Response:

{
  "data": "[Array of object definitions with id, type, api_slug, singular_noun, and plural_noun]",
  "offset": "[Current offset]",
  "limit": "[Results per page]",
  "total": "[Total number of objects]"
}

Notes

Attio uses UUID-based identifiers for lists and workspace-scoped IDs for objects. All responses include pagination metadata with offset, limit, and total counts. Objects have both singular and plural noun forms for proper API usage. Lists are identified by UUID and include creation timestamps. The system supports standard pagination with configurable offset and limit parameters for efficient data retrieval.