Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://agentgate.mynewapi.com/api/v1/verification/plugins \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": [ { "id": "<string>", "name": "<string>", "description": "<string>", "level": "<string>", "priority": 123, "enabled": true, "continueOnFail": true, "options": {} } ] }
List all registered verification plugins
curl https://agentgate.mynewapi.com/api/v1/verification/plugins \ -H "Authorization: Bearer YOUR_API_KEY"
Show properties
L0
L1
L2
L3
custom
{ "success": true, "data": [ { "id": "built-in:eslint", "name": "ESLint", "description": "JavaScript/TypeScript linting", "level": "L0", "priority": 10, "enabled": true, "continueOnFail": false, "options": {} }, { "id": "custom:security-scan", "name": "Security Scanner", "description": "Custom security vulnerability scanner", "level": "custom", "priority": 100, "enabled": true, "continueOnFail": true, "options": { "severity": "high" } } ], "requestId": "req_abc123" }