{
  "schemaVersion": "1.0",
  "item": {
    "slug": "billionverify-skill",
    "name": "Billionverify Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/billionverifier/billionverify-skill",
    "canonicalUrl": "https://clawhub.ai/billionverifier/billionverify-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/billionverify-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=billionverify-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. 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/billionverify-skill"
    },
    "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/billionverify-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/billionverify-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/billionverify-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/billionverify-skill/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": "BillionVerify API Skill",
        "body": "Call the BillionVerify API to verify email addresses — single, batch, or bulk file processing."
      },
      {
        "title": "Setup",
        "body": "API key must be set in environment variable BILLIONVERIFY_API_KEY.\nGet your API key at: https://billionverify.com/auth/sign-in?next=/home/api-keys"
      },
      {
        "title": "Base URL",
        "body": "https://api.billionverify.com"
      },
      {
        "title": "Authentication",
        "body": "All requests require an API key header:\n\n-H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\""
      },
      {
        "title": "Verify Single Email",
        "body": "curl -X POST \"https://api.billionverify.com/v1/verify/single\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"user@example.com\",\n    \"check_smtp\": true\n  }'\n\nResponse includes: status (valid/invalid/unknown/risky/disposable/catchall/role), score (0-1), is_deliverable, is_disposable, is_catchall, is_role, is_free, domain, domain_age, mx_records, domain_reputation, smtp_check, reason, suggestion, response_time, credits_used."
      },
      {
        "title": "Verify Batch Emails (max 50)",
        "body": "curl -X POST \"https://api.billionverify.com/v1/verify/bulk\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"emails\": [\"user1@example.com\", \"user2@example.com\"],\n    \"check_smtp\": true\n  }'"
      },
      {
        "title": "Upload File for Bulk Verification",
        "body": "Upload CSV, Excel (.xlsx/.xls), or TXT files (max 20MB, 100,000 emails):\n\ncurl -X POST \"https://api.billionverify.com/v1/verify/file\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -F \"file=@/path/to/emails.csv\" \\\n  -F \"check_smtp=true\" \\\n  -F \"email_column=email\" \\\n  -F \"preserve_original=true\"\n\nReturns task_id for tracking the async job."
      },
      {
        "title": "Get File Job Status",
        "body": "Supports long-polling with timeout parameter (0-300 seconds):\n\ncurl -X GET \"https://api.billionverify.com/v1/verify/file/{task_id}?timeout=30\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\"\n\nStatus values: pending, processing, completed, failed."
      },
      {
        "title": "Download Verification Results",
        "body": "Without filters returns redirect to full result file. With filters returns CSV of matching emails (filters combined with OR logic):\n\ncurl -X GET \"https://api.billionverify.com/v1/verify/file/{task_id}/results?valid=true&invalid=true\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -L -o results.csv\n\nFilter parameters: valid, invalid, catchall, role, unknown, disposable, risky."
      },
      {
        "title": "Get Credit Balance",
        "body": "curl -X GET \"https://api.billionverify.com/v1/credits\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\""
      },
      {
        "title": "Create Webhook",
        "body": "curl -X POST \"https://api.billionverify.com/v1/webhooks\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://your-app.com/webhooks/billionverify\",\n    \"events\": [\"file.completed\", \"file.failed\"]\n  }'\n\nThe secret is only returned on creation — store it securely."
      },
      {
        "title": "List Webhooks",
        "body": "curl -X GET \"https://api.billionverify.com/v1/webhooks\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\""
      },
      {
        "title": "Delete Webhook",
        "body": "curl -X DELETE \"https://api.billionverify.com/v1/webhooks/{webhook_id}\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\""
      },
      {
        "title": "Health Check (no auth required)",
        "body": "curl -X GET \"https://api.billionverify.com/health\""
      },
      {
        "title": "Credits & Billing",
        "body": "Invalid / Unknown: 0 credits (free)\nAll other statuses (valid, risky, disposable, catchall, role): 1 credit each"
      },
      {
        "title": "Rate Limits",
        "body": "EndpointLimitSingle Verification6,000/minBatch Verification1,500/minFile Upload300/minOther endpoints200/min"
      },
      {
        "title": "User Request",
        "body": "$ARGUMENTS"
      }
    ],
    "body": "BillionVerify API Skill\n\nCall the BillionVerify API to verify email addresses — single, batch, or bulk file processing.\n\nSetup\n\nAPI key must be set in environment variable BILLIONVERIFY_API_KEY. Get your API key at: https://billionverify.com/auth/sign-in?next=/home/api-keys\n\nBase URL\nhttps://api.billionverify.com\n\nAuthentication\n\nAll requests require an API key header:\n\n-H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\"\n\nEndpoints\nVerify Single Email\ncurl -X POST \"https://api.billionverify.com/v1/verify/single\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"user@example.com\",\n    \"check_smtp\": true\n  }'\n\n\nResponse includes: status (valid/invalid/unknown/risky/disposable/catchall/role), score (0-1), is_deliverable, is_disposable, is_catchall, is_role, is_free, domain, domain_age, mx_records, domain_reputation, smtp_check, reason, suggestion, response_time, credits_used.\n\nVerify Batch Emails (max 50)\ncurl -X POST \"https://api.billionverify.com/v1/verify/bulk\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"emails\": [\"user1@example.com\", \"user2@example.com\"],\n    \"check_smtp\": true\n  }'\n\nUpload File for Bulk Verification\n\nUpload CSV, Excel (.xlsx/.xls), or TXT files (max 20MB, 100,000 emails):\n\ncurl -X POST \"https://api.billionverify.com/v1/verify/file\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -F \"file=@/path/to/emails.csv\" \\\n  -F \"check_smtp=true\" \\\n  -F \"email_column=email\" \\\n  -F \"preserve_original=true\"\n\n\nReturns task_id for tracking the async job.\n\nGet File Job Status\n\nSupports long-polling with timeout parameter (0-300 seconds):\n\ncurl -X GET \"https://api.billionverify.com/v1/verify/file/{task_id}?timeout=30\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\"\n\n\nStatus values: pending, processing, completed, failed.\n\nDownload Verification Results\n\nWithout filters returns redirect to full result file. With filters returns CSV of matching emails (filters combined with OR logic):\n\ncurl -X GET \"https://api.billionverify.com/v1/verify/file/{task_id}/results?valid=true&invalid=true\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -L -o results.csv\n\n\nFilter parameters: valid, invalid, catchall, role, unknown, disposable, risky.\n\nGet Credit Balance\ncurl -X GET \"https://api.billionverify.com/v1/credits\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\"\n\nCreate Webhook\ncurl -X POST \"https://api.billionverify.com/v1/webhooks\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"url\": \"https://your-app.com/webhooks/billionverify\",\n    \"events\": [\"file.completed\", \"file.failed\"]\n  }'\n\n\nThe secret is only returned on creation — store it securely.\n\nList Webhooks\ncurl -X GET \"https://api.billionverify.com/v1/webhooks\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\"\n\nDelete Webhook\ncurl -X DELETE \"https://api.billionverify.com/v1/webhooks/{webhook_id}\" \\\n  -H \"BV-API-KEY: $BILLIONVERIFY_API_KEY\"\n\nHealth Check (no auth required)\ncurl -X GET \"https://api.billionverify.com/health\"\n\nCredits & Billing\nInvalid / Unknown: 0 credits (free)\nAll other statuses (valid, risky, disposable, catchall, role): 1 credit each\nRate Limits\nEndpoint\tLimit\nSingle Verification\t6,000/min\nBatch Verification\t1,500/min\nFile Upload\t300/min\nOther endpoints\t200/min\nUser Request\n\n$ARGUMENTS"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/billionverifier/billionverify-skill",
    "publisherUrl": "https://clawhub.ai/billionverifier/billionverify-skill",
    "owner": "billionverifier",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/billionverify-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/billionverify-skill",
    "agentUrl": "https://openagent3.xyz/skills/billionverify-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/billionverify-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/billionverify-skill/agent.md"
  }
}