Returns agent status, version, and payment configuration
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://skillscan.port402.com/entrypoints/health/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Security scan for ClawHub skills ($0.05). Analyzes skill source code for malware, credential theft, prompt injection, and suspicious patterns before installation. Returns risk score and detailed findings. Example: { skill: 'claw-club' }
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"skill": {
"type": "string",
"description": "ClawHub skill to scan. Examples: 'claw-club', 'openclaw/claw-club'. Validates before charging - invalid skills return 400 (no payment)."
},
"version": {
"description": "Specific version to scan. Defaults to latest if not specified.",
"type": "string"
}
},
"required": [
"skill"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://skillscan.port402.com/entrypoints/scan/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"skill": "<ClawHub skill to scan. Examples: 'claw-club', 'openclaw/claw-club'. Validates before charging - invalid skills return 400 (no payment).>"
}
}
'