# Probely **Provider:** Probely **Category:** security **Base URL:** `https://api.probely.com` **Auth:** bearer — `Authorization: JWT YOUR_TOKEN` **Rate Limit:** See documentation **Free Tier:** Yes — [object Object] **Pricing:** Free tier available (freemium) **Docs:** https://developers.probely.com/ ## Description Web vulnerability scanning API for automated security testing, continuous scanning of web applications, and lifecycle management of discovered vulnerabilities. ## Endpoints | Method | Endpoint | Description | |--------|----------|-------------| | GET | `https://api.probely.com/targets/` | List all scan targets | | POST | `https://api.probely.com/targets/` | Create a scan target | | POST | `https://api.probely.com/targets/{id}/scan/` | Start a scan | | GET | `https://api.probely.com/targets/{id}/findings/` | List findings for a target | | GET | `https://api.probely.com/targets/{id}/scans/` | List scans for a target | | POST | `https://api.probely.com/auth/obtain/` | Obtain an auth token | | GET | `https://api.probely.com/account/` | Get account information | | GET | `https://api.probely.com/billing/` | Get billing information | ## Authentication JWT token in the Authorization header ``` Authorization: JWT YOUR_TOKEN ``` ## Sample Request ```bash curl -X GET 'https://api.probely.com/targets/' \ -H 'Authorization: JWT YOUR_TOKEN' ``` ## Sample Response ```json {"count":2,"results":[{"id":"abc","name":"My Website","url":"https://example.com","last_scan":{"status":"completed"}}]} ``` ## Pricing Details Free trial with limited scans; paid plans for continuous scanning. --- *Source: [API Map](https://apimap.dev/apis/probely/) — CC BY 4.0*