Spaces:
Paused
Paused
File size: 2,289 Bytes
bcf46c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | {
"info": {
"_postman_id": "0d20ef45-8b9a-4c28-98e6-76cd45efcae3",
"name": "PhishVision — AI Phishing & Threat Detector",
"description": "API collection for PhishVision, the real-time visual-first cybersecurity platform.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Health Check",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://opticparse-1opticparse-node-sg.onrender.com/health",
"protocol": "https",
"host": ["opticparse-1opticparse-node-sg", "onrender", "com"],
"path": ["health"]
}
},
"response": []
},
{
"name": "Analyze URL",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "X-API-Key",
"value": "your_api_key_here"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"url\": \"https://suspicious-login-page-microsoft.com\"\n}"
},
"url": {
"raw": "https://opticparse-1opticparse-node-sg.onrender.com/api/phish-detect",
"protocol": "https",
"host": ["opticparse-1opticparse-node-sg", "onrender", "com"],
"path": ["api", "phish-detect"]
}
},
"response": []
},
{
"name": "Scheduled Monitor",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "X-API-Key",
"value": "your_api_key_here"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"url\": \"https://brand-domain.com/login\",\n \"webhook_url\": \"https://hooks.slack.com/services/test\",\n \"interval_minutes\": 60\n}"
},
"url": {
"raw": "https://opticparse-1opticparse-node-sg.onrender.com/api/monitor",
"protocol": "https",
"host": ["opticparse-1opticparse-node-sg", "onrender", "com"],
"path": ["api", "monitor"]
}
},
"response": []
}
]
}
|