{
  "schemaVersion": "1.0",
  "item": {
    "slug": "postqued-api",
    "name": "Postqued API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/syeddhasnainn/postqued-api",
    "canonicalUrl": "https://clawhub.ai/syeddhasnainn/postqued-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/postqued-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=postqued-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/postqued-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/postqued-api",
    "agentPageUrl": "https://openagent3.xyz/skills/postqued-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/postqued-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/postqued-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": "Setup",
        "body": "Add your PostQued API key to your workspace .env file:\n\nPOSTQUED_API_KEY=pq_your_api_key_here\n\nAPI keys are created in the PostQued dashboard at https://postqued.com/console. Keys start with pq_ prefix."
      },
      {
        "title": "Authentication",
        "body": "All API requests require authentication via Bearer token:\n\nAuthorization: Bearer $POSTQUED_API_KEY"
      },
      {
        "title": "Base URL",
        "body": "https://api.postqued.com"
      },
      {
        "title": "API Documentation",
        "body": "OpenAPI spec: https://api.postqued.com/v1/docs/openapi.json"
      },
      {
        "title": "Step 1: Upload Content",
        "body": "For videos (presigned URL upload):\n\n# Start upload session\ncurl -X POST https://api.postqued.com/v1/content/upload \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"filename\": \"video.mp4\",\n    \"contentType\": \"video/mp4\",\n    \"fileSize\": 52428800\n  }'\n# Response: { \"contentId\": \"uuid\", \"upload\": { \"url\": \"presigned-url\", \"method\": \"PUT\", \"headers\": {...} } }\n\n# Upload file to presigned URL\ncurl -X PUT \"PRESIGNED_URL\" \\\n  -H \"Content-Type: video/mp4\" \\\n  --data-binary @video.mp4\n\n# Confirm upload\ncurl -X POST https://api.postqued.com/v1/content/upload/complete \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"contentId\": \"uuid-from-step-1\",\n    \"key\": \"content/user-id/content-id.mp4\",\n    \"filename\": \"video.mp4\",\n    \"contentType\": \"video/mp4\",\n    \"size\": 52428800,\n    \"width\": 1920,\n    \"height\": 1080,\n    \"durationMs\": 30000\n  }'\n\nFor images (direct upload):\n\ncurl -X POST https://api.postqued.com/v1/content/upload-image \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -F \"file=@image.jpg\""
      },
      {
        "title": "Step 2: Get Platform Account ID",
        "body": "curl https://api.postqued.com/v1/platform-accounts?platform=tiktok \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\"\n# Response: { \"accounts\": [{ \"id\": \"account-uuid\", \"username\": \"@user\", ... }] }"
      },
      {
        "title": "Step 3: Publish Content",
        "body": "Important: Always include a unique Idempotency-Key header (valid 24h).\n\ncurl -X POST https://api.postqued.com/v1/content/publish \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Idempotency-Key: unique-uuid-per-request\" \\\n  -d '{\n    \"contentIds\": [\"content-uuid\"],\n    \"targets\": [{\n      \"platform\": \"tiktok\",\n      \"accountId\": \"account-uuid\",\n      \"intent\": \"draft\",\n      \"caption\": \"Check this out! #fyp\",\n      \"dispatchAt\": null,\n      \"options\": {\n        \"privacyLevel\": \"SELF_ONLY\",\n        \"disableDuet\": false,\n        \"disableStitch\": false,\n        \"disableComment\": false\n      }\n    }]\n  }'\n# Response: { \"publishId\": \"uuid\", \"status\": \"pending\", \"targets\": [...] }"
      },
      {
        "title": "Step 4: Check Publish Status",
        "body": "curl https://api.postqued.com/v1/content/publish/PUBLISH_ID \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\""
      },
      {
        "title": "API Reference",
        "body": "See references/api.md for complete endpoint documentation."
      },
      {
        "title": "TikTok-Specific Options",
        "body": "OptionTypeDescriptionprivacyLevelstringPUBLIC_TO_EVERYONE, MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLYdisableDuetbooleanDisable duetdisableStitchbooleanDisable stitchdisableCommentbooleanDisable commentsvideoCoverTimestampMsintegerCover frame timestamp (videos)autoAddMusicbooleanAuto-add music (photos)brandContentTogglebooleanPaid partnership disclosurebrandOrganicTogglebooleanPromotional content disclosure"
      },
      {
        "title": "Intent Values",
        "body": "draft - Send to TikTok inbox as draft (user publishes manually)\npublish - Direct publish to user's TikTok profile"
      },
      {
        "title": "Status Values",
        "body": "Publish Request: pending | processing | completed | partial_failed | failed | canceled\n\nTarget: queued | scheduled | processing | sent | published | failed | canceled"
      },
      {
        "title": "Scheduling",
        "body": "Set dispatchAt to a future UTC ISO timestamp:\n\n{\n  \"dispatchAt\": \"2026-02-20T15:00:00Z\"\n}\n\nSet to null for immediate dispatch."
      },
      {
        "title": "Rate Limits",
        "body": "OperationLimitUpload20/minRead30/minPublish10/minDelete20/min"
      },
      {
        "title": "Error Handling",
        "body": "Errors return:\n\n{\n  \"error\": \"Message\",\n  \"code\": \"ERROR_CODE\"\n}\n\nCommon codes: MISSING_IDEMPOTENCY_KEY, IDEMPOTENCY_CONFLICT, SUBSCRIPTION_REQUIRED"
      }
    ],
    "body": "PostQued API Skill\nSetup\n\nAdd your PostQued API key to your workspace .env file:\n\nPOSTQUED_API_KEY=pq_your_api_key_here\n\n\nAPI keys are created in the PostQued dashboard at https://postqued.com/console. Keys start with pq_ prefix.\n\nAuthentication\n\nAll API requests require authentication via Bearer token:\n\nAuthorization: Bearer $POSTQUED_API_KEY\n\nBase URL\nhttps://api.postqued.com\n\nAPI Documentation\n\nOpenAPI spec: https://api.postqued.com/v1/docs/openapi.json\n\nCore Workflow: Upload and Publish Content\nStep 1: Upload Content\n\nFor videos (presigned URL upload):\n\n# Start upload session\ncurl -X POST https://api.postqued.com/v1/content/upload \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"filename\": \"video.mp4\",\n    \"contentType\": \"video/mp4\",\n    \"fileSize\": 52428800\n  }'\n# Response: { \"contentId\": \"uuid\", \"upload\": { \"url\": \"presigned-url\", \"method\": \"PUT\", \"headers\": {...} } }\n\n# Upload file to presigned URL\ncurl -X PUT \"PRESIGNED_URL\" \\\n  -H \"Content-Type: video/mp4\" \\\n  --data-binary @video.mp4\n\n# Confirm upload\ncurl -X POST https://api.postqued.com/v1/content/upload/complete \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"contentId\": \"uuid-from-step-1\",\n    \"key\": \"content/user-id/content-id.mp4\",\n    \"filename\": \"video.mp4\",\n    \"contentType\": \"video/mp4\",\n    \"size\": 52428800,\n    \"width\": 1920,\n    \"height\": 1080,\n    \"durationMs\": 30000\n  }'\n\n\nFor images (direct upload):\n\ncurl -X POST https://api.postqued.com/v1/content/upload-image \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -F \"file=@image.jpg\"\n\nStep 2: Get Platform Account ID\ncurl https://api.postqued.com/v1/platform-accounts?platform=tiktok \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\"\n# Response: { \"accounts\": [{ \"id\": \"account-uuid\", \"username\": \"@user\", ... }] }\n\nStep 3: Publish Content\n\nImportant: Always include a unique Idempotency-Key header (valid 24h).\n\ncurl -X POST https://api.postqued.com/v1/content/publish \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Idempotency-Key: unique-uuid-per-request\" \\\n  -d '{\n    \"contentIds\": [\"content-uuid\"],\n    \"targets\": [{\n      \"platform\": \"tiktok\",\n      \"accountId\": \"account-uuid\",\n      \"intent\": \"draft\",\n      \"caption\": \"Check this out! #fyp\",\n      \"dispatchAt\": null,\n      \"options\": {\n        \"privacyLevel\": \"SELF_ONLY\",\n        \"disableDuet\": false,\n        \"disableStitch\": false,\n        \"disableComment\": false\n      }\n    }]\n  }'\n# Response: { \"publishId\": \"uuid\", \"status\": \"pending\", \"targets\": [...] }\n\nStep 4: Check Publish Status\ncurl https://api.postqued.com/v1/content/publish/PUBLISH_ID \\\n  -H \"Authorization: Bearer $POSTQUED_API_KEY\"\n\nAPI Reference\n\nSee references/api.md for complete endpoint documentation.\n\nTikTok-Specific Options\nOption\tType\tDescription\nprivacyLevel\tstring\tPUBLIC_TO_EVERYONE, MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY\ndisableDuet\tboolean\tDisable duet\ndisableStitch\tboolean\tDisable stitch\ndisableComment\tboolean\tDisable comments\nvideoCoverTimestampMs\tinteger\tCover frame timestamp (videos)\nautoAddMusic\tboolean\tAuto-add music (photos)\nbrandContentToggle\tboolean\tPaid partnership disclosure\nbrandOrganicToggle\tboolean\tPromotional content disclosure\nIntent Values\ndraft - Send to TikTok inbox as draft (user publishes manually)\npublish - Direct publish to user's TikTok profile\nStatus Values\n\nPublish Request: pending | processing | completed | partial_failed | failed | canceled\n\nTarget: queued | scheduled | processing | sent | published | failed | canceled\n\nScheduling\n\nSet dispatchAt to a future UTC ISO timestamp:\n\n{\n  \"dispatchAt\": \"2026-02-20T15:00:00Z\"\n}\n\n\nSet to null for immediate dispatch.\n\nRate Limits\nOperation\tLimit\nUpload\t20/min\nRead\t30/min\nPublish\t10/min\nDelete\t20/min\nError Handling\n\nErrors return:\n\n{\n  \"error\": \"Message\",\n  \"code\": \"ERROR_CODE\"\n}\n\n\nCommon codes: MISSING_IDEMPOTENCY_KEY, IDEMPOTENCY_CONFLICT, SUBSCRIPTION_REQUIRED"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/syeddhasnainn/postqued-api",
    "publisherUrl": "https://clawhub.ai/syeddhasnainn/postqued-api",
    "owner": "syeddhasnainn",
    "version": "1.0.6",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/postqued-api",
    "downloadUrl": "https://openagent3.xyz/downloads/postqued-api",
    "agentUrl": "https://openagent3.xyz/skills/postqued-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/postqued-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/postqued-api/agent.md"
  }
}