{
  "schemaVersion": "1.0",
  "item": {
    "slug": "attio-api",
    "name": "Attio",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/attio-api",
    "canonicalUrl": "https://clawhub.ai/byungkyu/attio-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/attio-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=attio-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/attio-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/attio-api",
    "agentPageUrl": "https://openagent3.xyz/skills/attio-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attio-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attio-api/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Attio",
        "body": "Access the Attio REST API with managed OAuth authentication. Manage CRM objects, records, tasks, notes, comments, lists, list entries, meetings, call recordings, and workspace data."
      },
      {
        "title": "Quick Start",
        "body": "# List all objects in workspace\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/attio/v2/objects')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/attio/{native-api-path}\n\nReplace {native-api-path} with the actual Attio API endpoint path. The gateway proxies requests to api.attio.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Attio OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=attio&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'attio'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"67b77f19-206e-494c-82c2-8668396fc1f1\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-06T03:13:17.061608Z\",\n    \"last_updated_time\": \"2026-02-06T03:13:17.061617Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"attio\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Attio connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/attio/v2/objects')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '67b77f19-206e-494c-82c2-8668396fc1f1')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Objects",
        "body": "Objects are the schema definitions (like People, Companies, or custom objects).\n\nList Objects\n\nGET /attio/v2/objects\n\nReturns all system-defined and custom objects in your workspace.\n\nGet Object\n\nGET /attio/v2/objects/{object}\n\nGet a specific object by slug (e.g., people, companies) or UUID."
      },
      {
        "title": "Attributes",
        "body": "Attributes define the fields on objects.\n\nList Attributes\n\nGET /attio/v2/objects/{object}/attributes\n\nReturns all attributes for an object."
      },
      {
        "title": "Records",
        "body": "Records are the actual data entries (people, companies, etc.).\n\nQuery Records\n\nPOST /attio/v2/objects/{object}/records/query\nContent-Type: application/json\n\n{\n  \"limit\": 50,\n  \"offset\": 0,\n  \"filter\": {},\n  \"sorts\": []\n}\n\nQuery parameters in body:\n\nlimit: Maximum results (default 500)\noffset: Number of results to skip\nfilter: Filter criteria object\nsorts: Array of sort specifications\n\nGet Record\n\nGET /attio/v2/objects/{object}/records/{record_id}\n\nCreate Record\n\nPOST /attio/v2/objects/{object}/records\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"values\": {\n      \"name\": [{\"first_name\": \"John\", \"last_name\": \"Doe\", \"full_name\": \"John Doe\"}],\n      \"email_addresses\": [\"john@example.com\"]\n    }\n  }\n}\n\nNote: For personal-name type attributes (like name on people), you must include full_name along with first_name and last_name.\n\nUpdate Record\n\nPATCH /attio/v2/objects/{object}/records/{record_id}\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"values\": {\n      \"job_title\": \"Software Engineer\"\n    }\n  }\n}\n\nDelete Record\n\nDELETE /attio/v2/objects/{object}/records/{record_id}"
      },
      {
        "title": "Tasks",
        "body": "List Tasks\n\nGET /attio/v2/tasks?limit=50\n\nQuery parameters:\n\nlimit: Maximum results (default 500)\noffset: Number to skip\nsort: created_at:asc or created_at:desc\nlinked_object: Filter by object type (e.g., people)\nlinked_record_id: Filter by specific record\nassignee: Filter by assignee email/ID\nis_completed: Filter by completion status (true/false)\n\nGet Task\n\nGET /attio/v2/tasks/{task_id}\n\nCreate Task\n\nPOST /attio/v2/tasks\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"content\": \"Follow up with customer\",\n    \"format\": \"plaintext\",\n    \"deadline_at\": \"2026-02-15T00:00:00.000000000Z\",\n    \"is_completed\": false,\n    \"assignees\": [],\n    \"linked_records\": [\n      {\n        \"target_object\": \"companies\",\n        \"target_record_id\": \"16f2fc57-5d22-48b8-b9db-8b0e6d99e9bc\"\n      }\n    ]\n  }\n}\n\nRequired fields: content, format, deadline_at, assignees, linked_records\n\nUpdate Task\n\nPATCH /attio/v2/tasks/{task_id}\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"is_completed\": true\n  }\n}\n\nDelete Task\n\nDELETE /attio/v2/tasks/{task_id}"
      },
      {
        "title": "Workspace Members",
        "body": "List Workspace Members\n\nGET /attio/v2/workspace_members\n\nGet Workspace Member\n\nGET /attio/v2/workspace_members/{workspace_member_id}"
      },
      {
        "title": "Self (Token Info)",
        "body": "Identify Current Token\n\nGET /attio/v2/self\n\nReturns workspace info and OAuth scopes for the current access token."
      },
      {
        "title": "Comments",
        "body": "Create Comment on Record\n\nPOST /attio/v2/comments\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"format\": \"plaintext\",\n    \"content\": \"This is a comment\",\n    \"author\": {\n      \"type\": \"workspace-member\",\n      \"id\": \"{workspace_member_id}\"\n    },\n    \"record\": {\n      \"object\": \"companies\",\n      \"record_id\": \"{record_id}\"\n    }\n  }\n}\n\nRequired fields: format, content, author\n\nPlus one of:\n\nrecord: Object with object slug and record_id (for record comments)\nentry: Object with list slug and entry_id (for list entry comments)\nthread_id: UUID of existing thread (for replies)\n\nReply to Comment Thread\n\nPOST /attio/v2/comments\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"format\": \"plaintext\",\n    \"content\": \"This is a reply\",\n    \"author\": {\n      \"type\": \"workspace-member\",\n      \"id\": \"{workspace_member_id}\"\n    },\n    \"thread_id\": \"{thread_id}\"\n  }\n}"
      },
      {
        "title": "Lists",
        "body": "List All Lists\n\nGET /attio/v2/lists\n\nGet List\n\nGET /attio/v2/lists/{list_id}"
      },
      {
        "title": "List Entries",
        "body": "Query List Entries\n\nPOST /attio/v2/lists/{list}/entries/query\nContent-Type: application/json\n\n{\n  \"limit\": 50,\n  \"offset\": 0,\n  \"filter\": {},\n  \"sorts\": []\n}\n\nQuery parameters in body:\n\nlimit: Maximum results (default 500)\noffset: Number of results to skip\nfilter: Filter criteria object\nsorts: Array of sort specifications\n\nCreate List Entry\n\nPOST /attio/v2/lists/{list}/entries\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"parent_record_id\": \"{record_id}\",\n    \"parent_object\": \"companies\",\n    \"entry_values\": {}\n  }\n}\n\nGet List Entry\n\nGET /attio/v2/lists/{list}/entries/{entry_id}\n\nUpdate List Entry\n\nPATCH /attio/v2/lists/{list}/entries/{entry_id}\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"entry_values\": {\n      \"status\": \"Active\"\n    }\n  }\n}\n\nDelete List Entry\n\nDELETE /attio/v2/lists/{list}/entries/{entry_id}"
      },
      {
        "title": "Notes",
        "body": "List Notes\n\nGET /attio/v2/notes?limit=50\n\nQuery parameters:\n\nlimit: Maximum results (default 10, max 50)\noffset: Number to skip\nparent_object: Object slug containing notes\nparent_record_id: Filter by specific record\n\nGet Note\n\nGET /attio/v2/notes/{note_id}\n\nCreate Note\n\nPOST /attio/v2/notes\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"format\": \"plaintext\",\n    \"title\": \"Meeting Summary\",\n    \"content\": \"Discussed Q1 goals and roadmap priorities.\",\n    \"parent_object\": \"companies\",\n    \"parent_record_id\": \"{record_id}\",\n    \"created_by_actor\": {\n      \"type\": \"workspace-member\",\n      \"id\": \"{workspace_member_id}\"\n    }\n  }\n}\n\nRequired fields: format, content, parent_object, parent_record_id\n\nDelete Note\n\nDELETE /attio/v2/notes/{note_id}"
      },
      {
        "title": "Meetings",
        "body": "List Meetings\n\nGET /attio/v2/meetings?limit=50\n\nQuery parameters:\n\nlimit: Maximum results (default 50, max 200)\ncursor: Pagination cursor from previous response\n\nUses cursor-based pagination.\n\nGet Meeting\n\nGET /attio/v2/meetings/{meeting_id}"
      },
      {
        "title": "Call Recordings",
        "body": "Call recordings are accessed through meetings.\n\nList Call Recordings for Meeting\n\nGET /attio/v2/meetings/{meeting_id}/call_recordings?limit=50\n\nQuery parameters:\n\nlimit: Maximum results (default 50, max 200)\ncursor: Pagination cursor from previous response\n\nGet Call Recording\n\nGET /attio/v2/meetings/{meeting_id}/call_recordings/{call_recording_id}"
      },
      {
        "title": "Pagination",
        "body": "Attio supports two pagination methods:"
      },
      {
        "title": "Limit/Offset Pagination",
        "body": "GET /attio/v2/tasks?limit=50&offset=0\nGET /attio/v2/tasks?limit=50&offset=50\nGET /attio/v2/tasks?limit=50&offset=100"
      },
      {
        "title": "Cursor-Based Pagination (for some endpoints)",
        "body": "GET /attio/v2/meetings?limit=50\nGET /attio/v2/meetings?limit=50&cursor={next_cursor}\n\nResponse includes pagination.next_cursor when more results exist."
      },
      {
        "title": "JavaScript",
        "body": "// Query company records\nconst response = await fetch(\n  'https://gateway.maton.ai/attio/v2/objects/companies/records/query',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'Content-Type': 'application/json'\n    },\n    body: JSON.stringify({ limit: 10 })\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\n# Query company records\nresponse = requests.post(\n    'https://gateway.maton.ai/attio/v2/objects/companies/records/query',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    json={'limit': 10}\n)\ndata = response.json()"
      },
      {
        "title": "Usage Notes",
        "body": "Object slugs are lowercase snake_case (e.g., people, companies)\nRecord IDs and other IDs are UUIDs\nFor personal-name attributes, always include full_name when creating records\nTask creation requires format: \"plaintext\", deadline_at, assignees array (can be empty), and linked_records array (can be empty)\nNote creation requires format, content, parent_object, and parent_record_id\nComment creation requires format, content, author, plus one of record, entry, or thread_id\nMeetings use cursor-based pagination\nSome endpoints require additional OAuth scopes (lists, notes, webhooks)\nRate limits: 100 read requests/second, 25 write requests/second\nPagination uses limit and offset parameters (or cursor for meetings)\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Attio connection or validation error401Invalid or missing Maton API key403Insufficient OAuth scopes404Resource not found429Rate limited4xx/5xxPassthrough error from Attio API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Insufficient Scopes",
        "body": "If you receive a 403 error about missing scopes, contact Maton support at support@maton.ai with the specific operations/APIs you need and your use-case."
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with attio. For example:\n\nCorrect: https://gateway.maton.ai/attio/v2/objects\nIncorrect: https://gateway.maton.ai/v2/objects"
      },
      {
        "title": "Resources",
        "body": "Attio API Overview\nAttio API Reference\nRecords API\nObjects API\nTasks API\nRate Limiting\nPagination\nMaton Community\nMaton Support"
      }
    ],
    "body": "Attio\n\nAccess the Attio REST API with managed OAuth authentication. Manage CRM objects, records, tasks, notes, comments, lists, list entries, meetings, call recordings, and workspace data.\n\nQuick Start\n# List all objects in workspace\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/attio/v2/objects')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/attio/{native-api-path}\n\n\nReplace {native-api-path} with the actual Attio API endpoint path. The gateway proxies requests to api.attio.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Attio OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=attio&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'attio'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"67b77f19-206e-494c-82c2-8668396fc1f1\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-06T03:13:17.061608Z\",\n    \"last_updated_time\": \"2026-02-06T03:13:17.061617Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"attio\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Attio connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/attio/v2/objects')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '67b77f19-206e-494c-82c2-8668396fc1f1')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nObjects\n\nObjects are the schema definitions (like People, Companies, or custom objects).\n\nList Objects\nGET /attio/v2/objects\n\n\nReturns all system-defined and custom objects in your workspace.\n\nGet Object\nGET /attio/v2/objects/{object}\n\n\nGet a specific object by slug (e.g., people, companies) or UUID.\n\nAttributes\n\nAttributes define the fields on objects.\n\nList Attributes\nGET /attio/v2/objects/{object}/attributes\n\n\nReturns all attributes for an object.\n\nRecords\n\nRecords are the actual data entries (people, companies, etc.).\n\nQuery Records\nPOST /attio/v2/objects/{object}/records/query\nContent-Type: application/json\n\n{\n  \"limit\": 50,\n  \"offset\": 0,\n  \"filter\": {},\n  \"sorts\": []\n}\n\n\nQuery parameters in body:\n\nlimit: Maximum results (default 500)\noffset: Number of results to skip\nfilter: Filter criteria object\nsorts: Array of sort specifications\nGet Record\nGET /attio/v2/objects/{object}/records/{record_id}\n\nCreate Record\nPOST /attio/v2/objects/{object}/records\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"values\": {\n      \"name\": [{\"first_name\": \"John\", \"last_name\": \"Doe\", \"full_name\": \"John Doe\"}],\n      \"email_addresses\": [\"john@example.com\"]\n    }\n  }\n}\n\n\nNote: For personal-name type attributes (like name on people), you must include full_name along with first_name and last_name.\n\nUpdate Record\nPATCH /attio/v2/objects/{object}/records/{record_id}\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"values\": {\n      \"job_title\": \"Software Engineer\"\n    }\n  }\n}\n\nDelete Record\nDELETE /attio/v2/objects/{object}/records/{record_id}\n\nTasks\nList Tasks\nGET /attio/v2/tasks?limit=50\n\n\nQuery parameters:\n\nlimit: Maximum results (default 500)\noffset: Number to skip\nsort: created_at:asc or created_at:desc\nlinked_object: Filter by object type (e.g., people)\nlinked_record_id: Filter by specific record\nassignee: Filter by assignee email/ID\nis_completed: Filter by completion status (true/false)\nGet Task\nGET /attio/v2/tasks/{task_id}\n\nCreate Task\nPOST /attio/v2/tasks\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"content\": \"Follow up with customer\",\n    \"format\": \"plaintext\",\n    \"deadline_at\": \"2026-02-15T00:00:00.000000000Z\",\n    \"is_completed\": false,\n    \"assignees\": [],\n    \"linked_records\": [\n      {\n        \"target_object\": \"companies\",\n        \"target_record_id\": \"16f2fc57-5d22-48b8-b9db-8b0e6d99e9bc\"\n      }\n    ]\n  }\n}\n\n\nRequired fields: content, format, deadline_at, assignees, linked_records\n\nUpdate Task\nPATCH /attio/v2/tasks/{task_id}\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"is_completed\": true\n  }\n}\n\nDelete Task\nDELETE /attio/v2/tasks/{task_id}\n\nWorkspace Members\nList Workspace Members\nGET /attio/v2/workspace_members\n\nGet Workspace Member\nGET /attio/v2/workspace_members/{workspace_member_id}\n\nSelf (Token Info)\nIdentify Current Token\nGET /attio/v2/self\n\n\nReturns workspace info and OAuth scopes for the current access token.\n\nComments\nCreate Comment on Record\nPOST /attio/v2/comments\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"format\": \"plaintext\",\n    \"content\": \"This is a comment\",\n    \"author\": {\n      \"type\": \"workspace-member\",\n      \"id\": \"{workspace_member_id}\"\n    },\n    \"record\": {\n      \"object\": \"companies\",\n      \"record_id\": \"{record_id}\"\n    }\n  }\n}\n\n\nRequired fields: format, content, author\n\nPlus one of:\n\nrecord: Object with object slug and record_id (for record comments)\nentry: Object with list slug and entry_id (for list entry comments)\nthread_id: UUID of existing thread (for replies)\nReply to Comment Thread\nPOST /attio/v2/comments\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"format\": \"plaintext\",\n    \"content\": \"This is a reply\",\n    \"author\": {\n      \"type\": \"workspace-member\",\n      \"id\": \"{workspace_member_id}\"\n    },\n    \"thread_id\": \"{thread_id}\"\n  }\n}\n\nLists\nList All Lists\nGET /attio/v2/lists\n\nGet List\nGET /attio/v2/lists/{list_id}\n\nList Entries\nQuery List Entries\nPOST /attio/v2/lists/{list}/entries/query\nContent-Type: application/json\n\n{\n  \"limit\": 50,\n  \"offset\": 0,\n  \"filter\": {},\n  \"sorts\": []\n}\n\n\nQuery parameters in body:\n\nlimit: Maximum results (default 500)\noffset: Number of results to skip\nfilter: Filter criteria object\nsorts: Array of sort specifications\nCreate List Entry\nPOST /attio/v2/lists/{list}/entries\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"parent_record_id\": \"{record_id}\",\n    \"parent_object\": \"companies\",\n    \"entry_values\": {}\n  }\n}\n\nGet List Entry\nGET /attio/v2/lists/{list}/entries/{entry_id}\n\nUpdate List Entry\nPATCH /attio/v2/lists/{list}/entries/{entry_id}\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"entry_values\": {\n      \"status\": \"Active\"\n    }\n  }\n}\n\nDelete List Entry\nDELETE /attio/v2/lists/{list}/entries/{entry_id}\n\nNotes\nList Notes\nGET /attio/v2/notes?limit=50\n\n\nQuery parameters:\n\nlimit: Maximum results (default 10, max 50)\noffset: Number to skip\nparent_object: Object slug containing notes\nparent_record_id: Filter by specific record\nGet Note\nGET /attio/v2/notes/{note_id}\n\nCreate Note\nPOST /attio/v2/notes\nContent-Type: application/json\n\n{\n  \"data\": {\n    \"format\": \"plaintext\",\n    \"title\": \"Meeting Summary\",\n    \"content\": \"Discussed Q1 goals and roadmap priorities.\",\n    \"parent_object\": \"companies\",\n    \"parent_record_id\": \"{record_id}\",\n    \"created_by_actor\": {\n      \"type\": \"workspace-member\",\n      \"id\": \"{workspace_member_id}\"\n    }\n  }\n}\n\n\nRequired fields: format, content, parent_object, parent_record_id\n\nDelete Note\nDELETE /attio/v2/notes/{note_id}\n\nMeetings\nList Meetings\nGET /attio/v2/meetings?limit=50\n\n\nQuery parameters:\n\nlimit: Maximum results (default 50, max 200)\ncursor: Pagination cursor from previous response\n\nUses cursor-based pagination.\n\nGet Meeting\nGET /attio/v2/meetings/{meeting_id}\n\nCall Recordings\n\nCall recordings are accessed through meetings.\n\nList Call Recordings for Meeting\nGET /attio/v2/meetings/{meeting_id}/call_recordings?limit=50\n\n\nQuery parameters:\n\nlimit: Maximum results (default 50, max 200)\ncursor: Pagination cursor from previous response\nGet Call Recording\nGET /attio/v2/meetings/{meeting_id}/call_recordings/{call_recording_id}\n\nPagination\n\nAttio supports two pagination methods:\n\nLimit/Offset Pagination\nGET /attio/v2/tasks?limit=50&offset=0\nGET /attio/v2/tasks?limit=50&offset=50\nGET /attio/v2/tasks?limit=50&offset=100\n\nCursor-Based Pagination (for some endpoints)\nGET /attio/v2/meetings?limit=50\nGET /attio/v2/meetings?limit=50&cursor={next_cursor}\n\n\nResponse includes pagination.next_cursor when more results exist.\n\nCode Examples\nJavaScript\n// Query company records\nconst response = await fetch(\n  'https://gateway.maton.ai/attio/v2/objects/companies/records/query',\n  {\n    method: 'POST',\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'Content-Type': 'application/json'\n    },\n    body: JSON.stringify({ limit: 10 })\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\n# Query company records\nresponse = requests.post(\n    'https://gateway.maton.ai/attio/v2/objects/companies/records/query',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    json={'limit': 10}\n)\ndata = response.json()\n\nUsage Notes\nObject slugs are lowercase snake_case (e.g., people, companies)\nRecord IDs and other IDs are UUIDs\nFor personal-name attributes, always include full_name when creating records\nTask creation requires format: \"plaintext\", deadline_at, assignees array (can be empty), and linked_records array (can be empty)\nNote creation requires format, content, parent_object, and parent_record_id\nComment creation requires format, content, author, plus one of record, entry, or thread_id\nMeetings use cursor-based pagination\nSome endpoints require additional OAuth scopes (lists, notes, webhooks)\nRate limits: 100 read requests/second, 25 write requests/second\nPagination uses limit and offset parameters (or cursor for meetings)\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing Attio connection or validation error\n401\tInvalid or missing Maton API key\n403\tInsufficient OAuth scopes\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Attio API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Insufficient Scopes\n\nIf you receive a 403 error about missing scopes, contact Maton support at support@maton.ai with the specific operations/APIs you need and your use-case.\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with attio. For example:\nCorrect: https://gateway.maton.ai/attio/v2/objects\nIncorrect: https://gateway.maton.ai/v2/objects\nResources\nAttio API Overview\nAttio API Reference\nRecords API\nObjects API\nTasks API\nRate Limiting\nPagination\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/attio-api",
    "publisherUrl": "https://clawhub.ai/byungkyu/attio-api",
    "owner": "byungkyu",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/attio-api",
    "downloadUrl": "https://openagent3.xyz/downloads/attio-api",
    "agentUrl": "https://openagent3.xyz/skills/attio-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/attio-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/attio-api/agent.md"
  }
}