{
  "schemaVersion": "1.0",
  "item": {
    "slug": "api-endpoint-tester",
    "name": "API Endpoint Tester",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Derick001/api-endpoint-tester",
    "canonicalUrl": "https://clawhub.ai/Derick001/api-endpoint-tester",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/api-endpoint-tester",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=api-endpoint-tester",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/main.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/api-endpoint-tester"
    },
    "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/api-endpoint-tester",
    "agentPageUrl": "https://openagent3.xyz/skills/api-endpoint-tester/agent",
    "manifestUrl": "https://openagent3.xyz/skills/api-endpoint-tester/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/api-endpoint-tester/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "What This Does",
        "body": "A simple CLI tool to send HTTP requests to REST API endpoints and validate responses. Supports GET, POST, PUT, DELETE, PATCH methods with custom headers and request bodies (JSON or form data)."
      },
      {
        "title": "When To Use",
        "body": "You need to test API endpoints manually or in scripts\nYou want to validate HTTP status codes and response formats\nYou're debugging API integrations and need quick requests\nYou need to check if an endpoint is reachable and responding correctly"
      },
      {
        "title": "Usage",
        "body": "Basic GET request:\npython3 scripts/main.py run --url \"https://api.example.com/users\" --method GET\n\nPOST with JSON body:\npython3 scripts/main.py run --url \"https://api.example.com/users\" --method POST --body '{\"name\": \"John\", \"email\": \"john@example.com\"}'\n\nWith custom headers:\npython3 scripts/main.py run --url \"https://api.example.com/users\" --method GET --headers '{\"Authorization\": \"Bearer token123\"}'"
      },
      {
        "title": "Example 1: Simple GET request",
        "body": "python3 scripts/main.py run --url \"https://jsonplaceholder.typicode.com/posts/1\" --method GET\n\nOutput:\n\n{\n  \"status\": \"success\",\n  \"status_code\": 200,\n  \"headers\": {\n    \"content-type\": \"application/json; charset=utf-8\"\n  },\n  \"body\": {\n    \"userId\": 1,\n    \"id\": 1,\n    \"title\": \"sunt aut facere repellat provident occaecati excepturi optio reprehenderit\",\n    \"body\": \"quia et suscipit\\nsuscipit recusandae consequuntur expedita et cum\\nreprehenderit molestiae ut ut quas totam\\nnostrum rerum est autem sunt rem eveniet architecto\"\n  },\n  \"response_time_ms\": 245\n}"
      },
      {
        "title": "Example 2: POST with validation",
        "body": "python3 scripts/main.py run --url \"https://jsonplaceholder.typicode.com/posts\" --method POST --body '{\"title\": \"foo\", \"body\": \"bar\", \"userId\": 1}' --expected-status 201"
      },
      {
        "title": "Requirements",
        "body": "Python 3.x\nrequests library (install via pip if not available)"
      },
      {
        "title": "Limitations",
        "body": "This is a CLI tool, not an auto-integration plugin\nDoes not support WebSocket or streaming endpoints\nLimited to HTTP/HTTPS protocols (no gRPC, GraphQL, etc.)\nNo built-in authentication beyond headers\nDoes not save test suites or history (single request at a time)\nTimeouts default to 10 seconds"
      }
    ],
    "body": "API Endpoint Tester\nWhat This Does\n\nA simple CLI tool to send HTTP requests to REST API endpoints and validate responses. Supports GET, POST, PUT, DELETE, PATCH methods with custom headers and request bodies (JSON or form data).\n\nWhen To Use\nYou need to test API endpoints manually or in scripts\nYou want to validate HTTP status codes and response formats\nYou're debugging API integrations and need quick requests\nYou need to check if an endpoint is reachable and responding correctly\nUsage\n\nBasic GET request: python3 scripts/main.py run --url \"https://api.example.com/users\" --method GET\n\nPOST with JSON body: python3 scripts/main.py run --url \"https://api.example.com/users\" --method POST --body '{\"name\": \"John\", \"email\": \"john@example.com\"}'\n\nWith custom headers: python3 scripts/main.py run --url \"https://api.example.com/users\" --method GET --headers '{\"Authorization\": \"Bearer token123\"}'\n\nExamples\nExample 1: Simple GET request\npython3 scripts/main.py run --url \"https://jsonplaceholder.typicode.com/posts/1\" --method GET\n\n\nOutput:\n\n{\n  \"status\": \"success\",\n  \"status_code\": 200,\n  \"headers\": {\n    \"content-type\": \"application/json; charset=utf-8\"\n  },\n  \"body\": {\n    \"userId\": 1,\n    \"id\": 1,\n    \"title\": \"sunt aut facere repellat provident occaecati excepturi optio reprehenderit\",\n    \"body\": \"quia et suscipit\\nsuscipit recusandae consequuntur expedita et cum\\nreprehenderit molestiae ut ut quas totam\\nnostrum rerum est autem sunt rem eveniet architecto\"\n  },\n  \"response_time_ms\": 245\n}\n\nExample 2: POST with validation\npython3 scripts/main.py run --url \"https://jsonplaceholder.typicode.com/posts\" --method POST --body '{\"title\": \"foo\", \"body\": \"bar\", \"userId\": 1}' --expected-status 201\n\nRequirements\nPython 3.x\nrequests library (install via pip if not available)\nLimitations\nThis is a CLI tool, not an auto-integration plugin\nDoes not support WebSocket or streaming endpoints\nLimited to HTTP/HTTPS protocols (no gRPC, GraphQL, etc.)\nNo built-in authentication beyond headers\nDoes not save test suites or history (single request at a time)\nTimeouts default to 10 seconds"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Derick001/api-endpoint-tester",
    "publisherUrl": "https://clawhub.ai/Derick001/api-endpoint-tester",
    "owner": "Derick001",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/api-endpoint-tester",
    "downloadUrl": "https://openagent3.xyz/downloads/api-endpoint-tester",
    "agentUrl": "https://openagent3.xyz/skills/api-endpoint-tester/agent",
    "manifestUrl": "https://openagent3.xyz/skills/api-endpoint-tester/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/api-endpoint-tester/agent.md"
  }
}