{
  "schemaVersion": "1.0",
  "item": {
    "slug": "quo",
    "name": "Quo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/quo",
    "canonicalUrl": "https://clawhub.ai/byungkyu/quo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/quo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=quo",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/quo"
    },
    "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/quo",
    "agentPageUrl": "https://openagent3.xyz/skills/quo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quo/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": "Quo",
        "body": "Access the Quo API with managed OAuth authentication. Send SMS messages, manage calls and contacts, and retrieve call recordings and transcripts."
      },
      {
        "title": "Quick Start",
        "body": "# List phone numbers\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/quo/v1/phone-numbers')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('User-Agent', 'Maton/1.0')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/quo/{native-api-path}\n\nReplace {native-api-path} with the actual Quo API endpoint path. The gateway proxies requests to api.openphone.com and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header and a User-Agent header:\n\nAuthorization: Bearer $MATON_API_KEY\nUser-Agent: Maton/1.0\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 Quo 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=quo&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': 'quo'}).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\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"quo\",\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 Quo 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/quo/v1/phone-numbers')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('User-Agent', 'Maton/1.0')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Phone Numbers",
        "body": "List Phone Numbers\n\nGET /quo/v1/phone-numbers\n\nOptional query parameter:\n\nuserId - Filter by user ID (pattern: ^US(.*)$)\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"PN123abc\",\n      \"number\": \"+15555555555\",\n      \"formattedNumber\": \"(555) 555-5555\",\n      \"name\": \"Main Line\",\n      \"users\": [\n        {\n          \"id\": \"US123abc\",\n          \"email\": \"user@example.com\",\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n          \"role\": \"admin\"\n        }\n      ],\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\"\n    }\n  ]\n}"
      },
      {
        "title": "Users",
        "body": "List Users\n\nGET /quo/v1/users?maxResults=50\n\nQuery parameters:\n\nmaxResults (required) - Results per page (1-50, default: 10)\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"US123abc\",\n      \"email\": \"user@example.com\",\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"role\": \"owner\",\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\"\n    }\n  ],\n  \"totalItems\": 10,\n  \"nextPageToken\": null\n}\n\nGet User by ID\n\nGET /quo/v1/users/{userId}"
      },
      {
        "title": "Messages",
        "body": "Send Text Message\n\nPOST /quo/v1/messages\nContent-Type: application/json\n\n{\n  \"content\": \"Hello, world!\",\n  \"from\": \"PN123abc\",\n  \"to\": [\"+15555555555\"]\n}\n\nRequest body:\n\ncontent (required) - Message text (1-1600 characters)\nfrom (required) - Phone number ID (PN*) or E.164 format\nto (required) - Array with single recipient in E.164 format\nuserId - User ID (defaults to phone owner)\nsetInboxStatus - Set to \"done\" to mark conversation complete\n\nResponse (202):\n\n{\n  \"id\": \"AC123abc\",\n  \"to\": [\"+15555555555\"],\n  \"from\": \"+15555555555\",\n  \"text\": \"Hello, world!\",\n  \"phoneNumberId\": \"PN123abc\",\n  \"direction\": \"outgoing\",\n  \"userId\": \"US123abc\",\n  \"status\": \"queued\",\n  \"createdAt\": \"2022-01-01T00:00:00Z\",\n  \"updatedAt\": \"2022-01-01T00:00:00Z\"\n}\n\nList Messages\n\nGET /quo/v1/messages?phoneNumberId=PN123abc&participants[]=+15555555555&maxResults=100\n\nQuery parameters:\n\nphoneNumberId (required) - Phone number ID\nparticipants (required) - Array of participant phone numbers in E.164 format\nmaxResults (required) - Results per page (1-100, default: 10)\nuserId - Filter by user ID\ncreatedAfter - ISO 8601 timestamp\ncreatedBefore - ISO 8601 timestamp\npageToken - Pagination token\n\nGet Message by ID\n\nGET /quo/v1/messages/{messageId}"
      },
      {
        "title": "Calls",
        "body": "List Calls\n\nGET /quo/v1/calls?phoneNumberId=PN123abc&participants[]=+15555555555&maxResults=100\n\nQuery parameters:\n\nphoneNumberId (required) - Phone number ID\nparticipants (required) - Array with single participant phone number in E.164 format (max 1)\nmaxResults (required) - Results per page (1-100, default: 10)\nuserId - Filter by user ID\ncreatedAfter - ISO 8601 timestamp\ncreatedBefore - ISO 8601 timestamp\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"AC123abc\",\n      \"phoneNumberId\": \"PN123abc\",\n      \"userId\": \"US123abc\",\n      \"direction\": \"incoming\",\n      \"status\": \"completed\",\n      \"duration\": 120,\n      \"participants\": [\"+15555555555\"],\n      \"answeredAt\": \"2022-01-01T00:00:00Z\",\n      \"completedAt\": \"2022-01-01T00:02:00Z\",\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:02:00Z\"\n    }\n  ],\n  \"totalItems\": 50,\n  \"nextPageToken\": \"...\"\n}\n\nGet Call by ID\n\nGET /quo/v1/calls/{callId}\n\nGet Call Recordings\n\nGET /quo/v1/call-recordings/{callId}\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"REC123abc\",\n      \"duration\": 120,\n      \"startTime\": \"2022-01-01T00:00:00Z\",\n      \"status\": \"completed\",\n      \"type\": \"voicemail\",\n      \"url\": \"https://...\"\n    }\n  ]\n}\n\nRecording status values: absent, completed, deleted, failed, in-progress, paused, processing, stopped, stopping\n\nGet Call Summary\n\nGET /quo/v1/call-summaries/{callId}\n\nGet Call Transcript\n\nGET /quo/v1/call-transcripts/{callId}\n\nGet Call Voicemail\n\nGET /quo/v1/call-voicemails/{callId}"
      },
      {
        "title": "Contacts",
        "body": "List Contacts\n\nGET /quo/v1/contacts?maxResults=50\n\nQuery parameters:\n\nmaxResults (required) - Results per page (1-50, default: 10)\nexternalIds - Array of external identifiers\nsources - Array of source indicators\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"CT123abc\",\n      \"externalId\": null,\n      \"source\": null,\n      \"defaultFields\": {\n        \"company\": \"Acme Corp\",\n        \"firstName\": \"Jane\",\n        \"lastName\": \"Doe\",\n        \"role\": \"Manager\",\n        \"emails\": [{\"name\": \"work\", \"value\": \"jane@example.com\", \"id\": \"EM1\"}],\n        \"phoneNumbers\": [{\"name\": \"mobile\", \"value\": \"+15555555555\", \"id\": \"PH1\"}]\n      },\n      \"customFields\": [],\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\",\n      \"createdByUserId\": \"US123abc\"\n    }\n  ],\n  \"totalItems\": 100,\n  \"nextPageToken\": \"...\"\n}\n\nGet Contact by ID\n\nGET /quo/v1/contacts/{contactId}\n\nCreate Contact\n\nPOST /quo/v1/contacts\nContent-Type: application/json\n\n{\n  \"defaultFields\": {\n    \"firstName\": \"Jane\",\n    \"lastName\": \"Doe\",\n    \"company\": \"Acme Corp\",\n    \"phoneNumbers\": [{\"name\": \"mobile\", \"value\": \"+15555555555\"}],\n    \"emails\": [{\"name\": \"work\", \"value\": \"jane@example.com\"}]\n  }\n}\n\nUpdate Contact\n\nPATCH /quo/v1/contacts/{contactId}\nContent-Type: application/json\n\n{\n  \"defaultFields\": {\n    \"company\": \"New Company\"\n  }\n}\n\nDelete Contact\n\nDELETE /quo/v1/contacts/{contactId}\n\nGet Contact Custom Fields\n\nGET /quo/v1/contact-custom-fields"
      },
      {
        "title": "Conversations",
        "body": "List Conversations\n\nGET /quo/v1/conversations?maxResults=100\n\nQuery parameters:\n\nmaxResults (required) - Results per page (1-100, default: 10)\nphoneNumbers - Array of phone number IDs or E.164 numbers (1-100 items)\nuserId - Filter by user ID\ncreatedAfter - ISO 8601 timestamp\ncreatedBefore - ISO 8601 timestamp\nupdatedAfter - ISO 8601 timestamp\nupdatedBefore - ISO 8601 timestamp\nexcludeInactive - Boolean to exclude inactive conversations\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"CV123abc\",\n      \"phoneNumberId\": \"PN123abc\",\n      \"name\": \"Jane Doe\",\n      \"participants\": [\"+15555555555\"],\n      \"assignedTo\": \"US123abc\",\n      \"lastActivityAt\": \"2022-01-01T00:00:00Z\",\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\"\n    }\n  ],\n  \"totalItems\": 50,\n  \"nextPageToken\": \"...\"\n}"
      },
      {
        "title": "Pagination",
        "body": "Quo uses token-based pagination. Include maxResults to set page size and use pageToken to retrieve subsequent pages.\n\nGET /quo/v1/contacts?maxResults=50&pageToken=eyJsYXN0SWQiOi...\n\nResponse includes pagination info:\n\n{\n  \"data\": [...],\n  \"totalItems\": 150,\n  \"nextPageToken\": \"eyJsYXN0SWQiOi...\"\n}\n\nWhen nextPageToken is null, you've reached the last page."
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/quo/v1/phone-numbers',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'User-Agent': 'Maton/1.0'\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/quo/v1/phone-numbers',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'User-Agent': 'Maton/1.0'\n    }\n)\ndata = response.json()"
      },
      {
        "title": "Send SMS Example",
        "body": "import os\nimport requests\n\nresponse = requests.post(\n    'https://gateway.maton.ai/quo/v1/messages',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'User-Agent': 'Maton/1.0',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'content': 'Hello from Quo!',\n        'from': 'PN123abc',\n        'to': ['+15555555555']\n    }\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Phone number IDs start with PN\nUser IDs start with US\nCall/Message IDs start with AC\nPhone numbers must be in E.164 format (e.g., +15555555555)\nSMS pricing: $0.01 per segment (US/Canada); international rates apply\nMaximum 1600 characters per message\nList calls requires exactly 1 participant (1:1 conversations only)\nIMPORTANT: All API requests require a User-Agent header (e.g., User-Agent: Maton/1.0). Requests without this header will be blocked.\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (participants[]) 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": "StatusMeaning400Bad request (e.g., too many participants, invalid format)401Invalid or missing Maton API key402Insufficient credits for SMS403Not authorized for this phone number404Resource not found429Rate limited500Server error"
      },
      {
        "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: Invalid App Name",
        "body": "Ensure your URL path starts with quo. For example:\n\nCorrect: https://gateway.maton.ai/quo/v1/phone-numbers\nIncorrect: https://gateway.maton.ai/openphone/v1/phone-numbers"
      },
      {
        "title": "Resources",
        "body": "Quo API Introduction\nQuo API Authentication\nQuo Support Center\nMaton Community\nMaton Support"
      }
    ],
    "body": "Quo\n\nAccess the Quo API with managed OAuth authentication. Send SMS messages, manage calls and contacts, and retrieve call recordings and transcripts.\n\nQuick Start\n# List phone numbers\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/quo/v1/phone-numbers')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('User-Agent', 'Maton/1.0')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/quo/{native-api-path}\n\n\nReplace {native-api-path} with the actual Quo API endpoint path. The gateway proxies requests to api.openphone.com and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header and a User-Agent header:\n\nAuthorization: Bearer $MATON_API_KEY\nUser-Agent: Maton/1.0\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 Quo 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=quo&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': 'quo'}).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\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"quo\",\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 Quo 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/quo/v1/phone-numbers')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('User-Agent', 'Maton/1.0')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\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\nPhone Numbers\nList Phone Numbers\nGET /quo/v1/phone-numbers\n\n\nOptional query parameter:\n\nuserId - Filter by user ID (pattern: ^US(.*)$)\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"PN123abc\",\n      \"number\": \"+15555555555\",\n      \"formattedNumber\": \"(555) 555-5555\",\n      \"name\": \"Main Line\",\n      \"users\": [\n        {\n          \"id\": \"US123abc\",\n          \"email\": \"user@example.com\",\n          \"firstName\": \"John\",\n          \"lastName\": \"Doe\",\n          \"role\": \"admin\"\n        }\n      ],\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\"\n    }\n  ]\n}\n\nUsers\nList Users\nGET /quo/v1/users?maxResults=50\n\n\nQuery parameters:\n\nmaxResults (required) - Results per page (1-50, default: 10)\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"US123abc\",\n      \"email\": \"user@example.com\",\n      \"firstName\": \"John\",\n      \"lastName\": \"Doe\",\n      \"role\": \"owner\",\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\"\n    }\n  ],\n  \"totalItems\": 10,\n  \"nextPageToken\": null\n}\n\nGet User by ID\nGET /quo/v1/users/{userId}\n\nMessages\nSend Text Message\nPOST /quo/v1/messages\nContent-Type: application/json\n\n{\n  \"content\": \"Hello, world!\",\n  \"from\": \"PN123abc\",\n  \"to\": [\"+15555555555\"]\n}\n\n\nRequest body:\n\ncontent (required) - Message text (1-1600 characters)\nfrom (required) - Phone number ID (PN*) or E.164 format\nto (required) - Array with single recipient in E.164 format\nuserId - User ID (defaults to phone owner)\nsetInboxStatus - Set to \"done\" to mark conversation complete\n\nResponse (202):\n\n{\n  \"id\": \"AC123abc\",\n  \"to\": [\"+15555555555\"],\n  \"from\": \"+15555555555\",\n  \"text\": \"Hello, world!\",\n  \"phoneNumberId\": \"PN123abc\",\n  \"direction\": \"outgoing\",\n  \"userId\": \"US123abc\",\n  \"status\": \"queued\",\n  \"createdAt\": \"2022-01-01T00:00:00Z\",\n  \"updatedAt\": \"2022-01-01T00:00:00Z\"\n}\n\nList Messages\nGET /quo/v1/messages?phoneNumberId=PN123abc&participants[]=+15555555555&maxResults=100\n\n\nQuery parameters:\n\nphoneNumberId (required) - Phone number ID\nparticipants (required) - Array of participant phone numbers in E.164 format\nmaxResults (required) - Results per page (1-100, default: 10)\nuserId - Filter by user ID\ncreatedAfter - ISO 8601 timestamp\ncreatedBefore - ISO 8601 timestamp\npageToken - Pagination token\nGet Message by ID\nGET /quo/v1/messages/{messageId}\n\nCalls\nList Calls\nGET /quo/v1/calls?phoneNumberId=PN123abc&participants[]=+15555555555&maxResults=100\n\n\nQuery parameters:\n\nphoneNumberId (required) - Phone number ID\nparticipants (required) - Array with single participant phone number in E.164 format (max 1)\nmaxResults (required) - Results per page (1-100, default: 10)\nuserId - Filter by user ID\ncreatedAfter - ISO 8601 timestamp\ncreatedBefore - ISO 8601 timestamp\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"AC123abc\",\n      \"phoneNumberId\": \"PN123abc\",\n      \"userId\": \"US123abc\",\n      \"direction\": \"incoming\",\n      \"status\": \"completed\",\n      \"duration\": 120,\n      \"participants\": [\"+15555555555\"],\n      \"answeredAt\": \"2022-01-01T00:00:00Z\",\n      \"completedAt\": \"2022-01-01T00:02:00Z\",\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:02:00Z\"\n    }\n  ],\n  \"totalItems\": 50,\n  \"nextPageToken\": \"...\"\n}\n\nGet Call by ID\nGET /quo/v1/calls/{callId}\n\nGet Call Recordings\nGET /quo/v1/call-recordings/{callId}\n\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"REC123abc\",\n      \"duration\": 120,\n      \"startTime\": \"2022-01-01T00:00:00Z\",\n      \"status\": \"completed\",\n      \"type\": \"voicemail\",\n      \"url\": \"https://...\"\n    }\n  ]\n}\n\n\nRecording status values: absent, completed, deleted, failed, in-progress, paused, processing, stopped, stopping\n\nGet Call Summary\nGET /quo/v1/call-summaries/{callId}\n\nGet Call Transcript\nGET /quo/v1/call-transcripts/{callId}\n\nGet Call Voicemail\nGET /quo/v1/call-voicemails/{callId}\n\nContacts\nList Contacts\nGET /quo/v1/contacts?maxResults=50\n\n\nQuery parameters:\n\nmaxResults (required) - Results per page (1-50, default: 10)\nexternalIds - Array of external identifiers\nsources - Array of source indicators\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"CT123abc\",\n      \"externalId\": null,\n      \"source\": null,\n      \"defaultFields\": {\n        \"company\": \"Acme Corp\",\n        \"firstName\": \"Jane\",\n        \"lastName\": \"Doe\",\n        \"role\": \"Manager\",\n        \"emails\": [{\"name\": \"work\", \"value\": \"jane@example.com\", \"id\": \"EM1\"}],\n        \"phoneNumbers\": [{\"name\": \"mobile\", \"value\": \"+15555555555\", \"id\": \"PH1\"}]\n      },\n      \"customFields\": [],\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\",\n      \"createdByUserId\": \"US123abc\"\n    }\n  ],\n  \"totalItems\": 100,\n  \"nextPageToken\": \"...\"\n}\n\nGet Contact by ID\nGET /quo/v1/contacts/{contactId}\n\nCreate Contact\nPOST /quo/v1/contacts\nContent-Type: application/json\n\n{\n  \"defaultFields\": {\n    \"firstName\": \"Jane\",\n    \"lastName\": \"Doe\",\n    \"company\": \"Acme Corp\",\n    \"phoneNumbers\": [{\"name\": \"mobile\", \"value\": \"+15555555555\"}],\n    \"emails\": [{\"name\": \"work\", \"value\": \"jane@example.com\"}]\n  }\n}\n\nUpdate Contact\nPATCH /quo/v1/contacts/{contactId}\nContent-Type: application/json\n\n{\n  \"defaultFields\": {\n    \"company\": \"New Company\"\n  }\n}\n\nDelete Contact\nDELETE /quo/v1/contacts/{contactId}\n\nGet Contact Custom Fields\nGET /quo/v1/contact-custom-fields\n\nConversations\nList Conversations\nGET /quo/v1/conversations?maxResults=100\n\n\nQuery parameters:\n\nmaxResults (required) - Results per page (1-100, default: 10)\nphoneNumbers - Array of phone number IDs or E.164 numbers (1-100 items)\nuserId - Filter by user ID\ncreatedAfter - ISO 8601 timestamp\ncreatedBefore - ISO 8601 timestamp\nupdatedAfter - ISO 8601 timestamp\nupdatedBefore - ISO 8601 timestamp\nexcludeInactive - Boolean to exclude inactive conversations\npageToken - Pagination token\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"id\": \"CV123abc\",\n      \"phoneNumberId\": \"PN123abc\",\n      \"name\": \"Jane Doe\",\n      \"participants\": [\"+15555555555\"],\n      \"assignedTo\": \"US123abc\",\n      \"lastActivityAt\": \"2022-01-01T00:00:00Z\",\n      \"createdAt\": \"2022-01-01T00:00:00Z\",\n      \"updatedAt\": \"2022-01-01T00:00:00Z\"\n    }\n  ],\n  \"totalItems\": 50,\n  \"nextPageToken\": \"...\"\n}\n\nPagination\n\nQuo uses token-based pagination. Include maxResults to set page size and use pageToken to retrieve subsequent pages.\n\nGET /quo/v1/contacts?maxResults=50&pageToken=eyJsYXN0SWQiOi...\n\n\nResponse includes pagination info:\n\n{\n  \"data\": [...],\n  \"totalItems\": 150,\n  \"nextPageToken\": \"eyJsYXN0SWQiOi...\"\n}\n\n\nWhen nextPageToken is null, you've reached the last page.\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/quo/v1/phone-numbers',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`,\n      'User-Agent': 'Maton/1.0'\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/quo/v1/phone-numbers',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'User-Agent': 'Maton/1.0'\n    }\n)\ndata = response.json()\n\nSend SMS Example\nimport os\nimport requests\n\nresponse = requests.post(\n    'https://gateway.maton.ai/quo/v1/messages',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'User-Agent': 'Maton/1.0',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'content': 'Hello from Quo!',\n        'from': 'PN123abc',\n        'to': ['+15555555555']\n    }\n)\ndata = response.json()\n\nNotes\nPhone number IDs start with PN\nUser IDs start with US\nCall/Message IDs start with AC\nPhone numbers must be in E.164 format (e.g., +15555555555)\nSMS pricing: $0.01 per segment (US/Canada); international rates apply\nMaximum 1600 characters per message\nList calls requires exactly 1 participant (1:1 conversations only)\nIMPORTANT: All API requests require a User-Agent header (e.g., User-Agent: Maton/1.0). Requests without this header will be blocked.\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets (participants[]) 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\tBad request (e.g., too many participants, invalid format)\n401\tInvalid or missing Maton API key\n402\tInsufficient credits for SMS\n403\tNot authorized for this phone number\n404\tResource not found\n429\tRate limited\n500\tServer error\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: Invalid App Name\nEnsure your URL path starts with quo. For example:\nCorrect: https://gateway.maton.ai/quo/v1/phone-numbers\nIncorrect: https://gateway.maton.ai/openphone/v1/phone-numbers\nResources\nQuo API Introduction\nQuo API Authentication\nQuo Support Center\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/quo",
    "publisherUrl": "https://clawhub.ai/byungkyu/quo",
    "owner": "byungkyu",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/quo",
    "downloadUrl": "https://openagent3.xyz/downloads/quo",
    "agentUrl": "https://openagent3.xyz/skills/quo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/quo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/quo/agent.md"
  }
}