{"id":64521,"date":"2026-06-13T11:40:05","date_gmt":"2026-06-13T18:40:05","guid":{"rendered":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/"},"modified":"2026-06-13T11:40:05","modified_gmt":"2026-06-13T18:40:05","slug":"api","status":"publish","type":"page","link":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/","title":{"rendered":"API Reference"},"content":{"rendered":"<div class=\"sn-breadcrumb\"><a href=\"\/wordpress\/documentation\/\">Documentation<\/a><span class=\"sep\">\/<\/span><span>API Reference<\/span><\/div>\n<p>Sn1per Professional 2026 ships a lightweight <strong>JSON API<\/strong> for programmatic, read-only access to your workspaces, hosts, and findings, plus structured <strong>JSON \/ CSV \/ TXT export<\/strong> of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI.<\/p>\n<h2 id=\"base-url\">Base URL &amp; authentication<\/h2>\n<p>The API is served from the same HTTPS host and port as the Sn1per web UI (default port <code>1337<\/code>):<\/p>\n<pre><code class=\"language-text\">https:\/\/&lt;your-sn1per-host&gt;:1337\/pro\/api.php<\/code><\/pre>\n<p>Every request is authenticated with <strong>HTTP Digest authentication<\/strong>, using the same <code>admin<\/code> credentials as the web UI. The admin password is generated at install time and stored in <code>\/usr\/share\/sniper\/pro\/data\/.admin-password<\/code>. Supply the credentials with each call:<\/p>\n<pre><code class=\"language-bash\">curl -k --digest -u admin:'YOUR_ADMIN_PASSWORD' \n  \"https:\/\/127.0.0.1:1337\/pro\/api.php?action=workspaces\"<\/code><\/pre>\n<p>The <code>-k<\/code> flag accepts the self-signed certificate Sn1per installs by default; drop it once you have configured a trusted certificate. Responses are pretty-printed <code>application\/json<\/code>. Errors return an <code>{\"error\": \"...\"}<\/code> object with an appropriate HTTP status code:<\/p>\n<table>\n<thead>\n<tr>\n<th>Status<\/th>\n<th>Meaning<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>400<\/code><\/td>\n<td>Bad request (e.g. missing <code>workspace<\/code> parameter, or unknown action)<\/td>\n<\/tr>\n<tr>\n<td><code>404<\/code><\/td>\n<td>Workspace not found<\/td>\n<\/tr>\n<tr>\n<td><code>405<\/code><\/td>\n<td>Wrong HTTP method (e.g. GET on a POST-only action)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Note:<\/strong> the API is read-only apart from the cache-clear action. Always call it over HTTPS and treat the admin credentials as a secret.<\/p>\n<h2 id=\"endpoints\">Endpoints<\/h2>\n<p>Routing is driven by the <code>action<\/code> query parameter. A request with no <code>action<\/code> returns the API catalog (name, version, and the list of endpoints).<\/p>\n<table>\n<thead>\n<tr>\n<th>Action<\/th>\n<th>Method<\/th>\n<th>Description<\/th>\n<th>Required params<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><em>(none)<\/em><\/td>\n<td>GET<\/td>\n<td>API info &amp; endpoint catalog<\/td>\n<td>&mdash;<\/td>\n<\/tr>\n<tr>\n<td><code>workspaces<\/code><\/td>\n<td>GET<\/td>\n<td>List all workspaces with summary stats<\/td>\n<td>&mdash;<\/td>\n<\/tr>\n<tr>\n<td><code>hosts<\/code><\/td>\n<td>GET<\/td>\n<td>List hosts in a workspace<\/td>\n<td><code>workspace<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>vulns<\/code><\/td>\n<td>GET<\/td>\n<td>Vulnerability severity summary (counts)<\/td>\n<td><code>workspace<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>status<\/code><\/td>\n<td>GET<\/td>\n<td>Scan progress &amp; live counters<\/td>\n<td><code>workspace<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>cache_clear<\/code><\/td>\n<td>POST<\/td>\n<td>Clear the report cache<\/td>\n<td>&mdash;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3 id=\"list-workspaces\">List workspaces<\/h3>\n<pre><code class=\"language-bash\">curl -k --digest -u admin:PASS \n  \"https:\/\/127.0.0.1:1337\/pro\/api.php?action=workspaces\"<\/code><\/pre>\n<pre><code class=\"language-json\">{\n  \"count\": 2,\n  \"workspaces\": [\n    {\n      \"name\": \"example.com\",\n      \"size_mb\": 14.2,\n      \"hosts\": 47,\n      \"running_tasks\": 0,\n      \"vuln_score\": 38\n    }\n  ]\n}<\/code><\/pre>\n<h3 id=\"list-hosts\">List hosts in a workspace<\/h3>\n<pre><code class=\"language-bash\">curl -k --digest -u admin:PASS \n  \"https:\/\/127.0.0.1:1337\/pro\/api.php?action=hosts&amp;workspace=example.com\"<\/code><\/pre>\n<pre><code class=\"language-json\">{\n  \"workspace\": \"example.com\",\n  \"count\": 47,\n  \"hosts\": [\n    {\n      \"target\": \"www.example.com\",\n      \"dns\": \"93.184.216.34\",\n      \"ports\": \"80,443\",\n      \"title\": \"Example Domain\",\n      \"server\": \"ECS\",\n      \"status\": \"200\",\n      \"os\": \"\",\n      \"vulns\": { \"Critical\": 0, \"High\": 1, \"Medium\": 3, \"Low\": 5, \"Info\": 12 }\n    }\n  ]\n}<\/code><\/pre>\n<h3 id=\"vulnerability-summary\">Vulnerability summary<\/h3>\n<pre><code class=\"language-bash\">curl -k --digest -u admin:PASS \n  \"https:\/\/127.0.0.1:1337\/pro\/api.php?action=vulns&amp;workspace=example.com\"<\/code><\/pre>\n<pre><code class=\"language-json\">{\n  \"workspace\": \"example.com\",\n  \"vulnerabilities\": { \"Critical\": 1, \"High\": 4, \"Medium\": 9, \"Low\": 21, \"Info\": 60 }\n}<\/code><\/pre>\n<p>This endpoint returns severity <em>counts<\/em>. For the full finding list (title, URL, and detail per issue), use <a href=\"#exporting-findings\">JSON export<\/a>.<\/p>\n<h3 id=\"scan-status\">Scan status<\/h3>\n<pre><code class=\"language-bash\">curl -k --digest -u admin:PASS \n  \"https:\/\/127.0.0.1:1337\/pro\/api.php?action=status&amp;workspace=example.com\"<\/code><\/pre>\n<pre><code class=\"language-json\">{\n  \"workspace\": \"example.com\",\n  \"total_targets\": 47,\n  \"scanned_targets\": 47,\n  \"unscanned_targets\": 0,\n  \"scan_percentage\": 100.0,\n  \"running_tasks\": 0,\n  \"notifications\": 3,\n  \"scheduled_tasks\": 2,\n  \"takeovers\": 0,\n  \"cracked_credentials\": 0,\n  \"vulnerabilities\": { \"Critical\": 1, \"High\": 4, \"Medium\": 9, \"Low\": 21, \"Info\": 60 }\n}<\/code><\/pre>\n<p>Poll this endpoint to track a running scan &mdash; <code>scan_percentage<\/code> reaches <code>100.0<\/code> and <code>running_tasks<\/code> drops to <code>0<\/code> when the workspace is fully scanned.<\/p>\n<h3 id=\"clear-cache\">Clear report cache<\/h3>\n<pre><code class=\"language-bash\">curl -k --digest -u admin:PASS -X POST \n  \"https:\/\/127.0.0.1:1337\/pro\/api.php?action=cache_clear\"<\/code><\/pre>\n<pre><code class=\"language-json\">{ \"message\": \"Cache cleared\" }<\/code><\/pre>\n<h2 id=\"exporting-findings\">Exporting findings (JSON \/ CSV \/ TXT)<\/h2>\n<p>Full findings &mdash; severity, title, URL, and detail for every issue &mdash; are exported from the workspace report&#8217;s <strong>Export<\/strong> dropdown in the web UI. Choose <strong>JSON<\/strong> (CSV and TXT are also available, plus client-side PDF and Excel). The JSON document looks like this:<\/p>\n<pre><code class=\"language-json\">{\n  \"report_type\": \"vulnerabilities\",\n  \"workspace\": \"example.com\",\n  \"target\": null,\n  \"generated\": \"2026-06-13T18:30:00+00:00\",\n  \"summary\": {\n    \"total\": 95,\n    \"critical\": 1,\n    \"high\": 4,\n    \"medium\": 9,\n    \"low\": 21,\n    \"info\": 60,\n    \"risk_score\": 55\n  },\n  \"findings\": [\n    {\n      \"severity\": \"Critical\",\n      \"title\": \"Unauthenticated File Upload to RCE\",\n      \"url\": \"https:\/\/www.example.com\/upload\",\n      \"detail\": \"Upload endpoint accepts .php files without authentication.\"\n    }\n  ]\n}<\/code><\/pre>\n<p>A host-inventory export (the <strong>Hosts<\/strong> table) produces a parallel <code>{ \"report_type\": \"hosts\", \"summary\": { \"total_hosts\": N }, \"hosts\": [ ... ] }<\/code> document, with each host keyed by its report columns.<\/p>\n<p>Because the export is launched from the authenticated, CSRF-protected web UI, it is intended for on-demand downloads. For unattended pipelines, poll the <a href=\"#endpoints\">JSON API<\/a> on a schedule, or archive the whole workspace from the CLI (below).<\/p>\n<h2 id=\"cli-archive\">CLI: archive a workspace<\/h2>\n<p>The <code>sniper<\/code> CLI can archive an entire workspace &mdash; loot, reports, and vulnerability files &mdash; into a single tarball, useful for backups, transfers between hosts, or offline ingestion:<\/p>\n<pre><code class=\"language-bash\">sudo sniper -w example.com --export\n# writes \/sniper\/exports\/example.com.tar.gz<\/code><\/pre>\n<h2 id=\"siem-soar\">Feeding SIEM, SOAR &amp; ticketing<\/h2>\n<p>Sn1per Professional does not ship native SIEM\/SOAR connectors; instead it gives you clean, stable JSON to drive your own automation. Typical patterns:<\/p>\n<ul>\n<li><strong>Scheduled poll &rarr; SIEM.<\/strong> Call <code>?action=vulns<\/code> and <code>?action=status<\/code> on a timer from a small script and forward the JSON to a Splunk HTTP Event Collector, an Elastic \/ IBM QRadar ingest pipeline, or a Microsoft Sentinel log-ingestion endpoint.<\/li>\n<li><strong>Findings &rarr; tickets.<\/strong> Parse a JSON export and open a Jira or ServiceNow issue per Critical\/High finding &mdash; <code>severity<\/code>, <code>title<\/code>, <code>url<\/code>, and <code>detail<\/code> map directly onto ticket fields.<\/li>\n<li><strong>SOAR playbooks.<\/strong> Kick off a Sn1per scan, poll <code>?action=status<\/code> until <code>scan_percentage<\/code> is <code>100<\/code>, then pull the JSON export into your playbook for enrichment and response.<\/li>\n<\/ul>\n<p>Every field shown above is stable JSON, so a thin custom connector &mdash; a few dozen lines &mdash; is all most teams need to wire Sn1per into an existing security-automation stack.<\/p>\n<h2 id=\"see-also\">See also<\/h2>\n<ul>\n<li><a href=\"\/wordpress\/documentation\/usage\/\">Usage<\/a> &mdash; Web UI, CLI, and scan modes<\/li>\n<li><a href=\"\/wordpress\/documentation\/configuration\/\">Configuration<\/a> &mdash; notifications, AI providers, scan gates<\/li>\n<li><a href=\"\/wordpress\/documentation\/installation\/\">Installation<\/a> &mdash; admin credentials &amp; license management<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability\u2026<\/p>\n","protected":false},"author":0,"featured_media":0,"parent":2284,"menu_order":70,"comment_status":"closed","ping_status":"closed","template":"page-templates\/template-doc-page.php","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"class_list":["post-64521","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Sn1perSecurity\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"API Reference - Sn1perSecurity\" \/>\n\t\t<meta property=\"og:description\" content=\"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-06-13T18:40:05+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-13T18:40:05+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Sn1persecurity-105784611869093\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@sn1persecurity\" \/>\n\t\t<meta name=\"twitter:title\" content=\"API Reference - Sn1perSecurity\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@sn1persecurity\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/#listItem\",\"name\":\"Documentation\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/#listItem\",\"position\":2,\"name\":\"Documentation\",\"item\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#listItem\",\"name\":\"API Reference\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#listItem\",\"position\":3,\"name\":\"API Reference\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/#listItem\",\"name\":\"Documentation\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/#organization\",\"name\":\"Sn1perSecurity\",\"description\":\"Get an attacker's view of your organization with our all-in-one offensive security platform\",\"url\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/\",\"email\":\"support@sn1persecurity.com\",\"foundingDate\":\"2021-10-05\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"value\":2},\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Sn1perwhiteandcircleicontwitter.jpg\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#organizationLogo\",\"width\":500,\"height\":500,\"caption\":\"Sn1perSecurity Logo\"},\"image\":{\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/Sn1persecurity-105784611869093\",\"https:\\\/\\\/x.com\\\/sn1persecurity\",\"https:\\\/\\\/www.instagram.com\\\/sn1persecurity\",\"https:\\\/\\\/www.youtube.com\\\/sn1persecurity\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/sn1persecurity\\\/\",\"https:\\\/\\\/github.com\\\/1N3\\\/Sn1per\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#webpage\",\"url\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/\",\"name\":\"API Reference - Sn1perSecurity\",\"description\":\"Documentation\\\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \\\/ CSV \\\/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/documentation\\\/api\\\/#breadcrumblist\"},\"datePublished\":\"2026-06-13T11:40:05-07:00\",\"dateModified\":\"2026-06-13T11:40:05-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/\",\"name\":\"Sn1perSecurity\",\"alternateName\":\"Sn1per\",\"description\":\"Get an attacker's view of your organization with our all-in-one offensive security platform\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/sn1persecurity.com\\\/wordpress\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"API Reference - Sn1perSecurity","description":"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL","canonical_url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress#listItem","position":1,"name":"Home","item":"https:\/\/sn1persecurity.com\/wordpress","nextItem":{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/#listItem","name":"Documentation"}},{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/#listItem","position":2,"name":"Documentation","item":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/","nextItem":{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#listItem","name":"API Reference"},"previousItem":{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#listItem","position":3,"name":"API Reference","previousItem":{"@type":"ListItem","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/#listItem","name":"Documentation"}}]},{"@type":"Organization","@id":"https:\/\/sn1persecurity.com\/wordpress\/#organization","name":"Sn1perSecurity","description":"Get an attacker's view of your organization with our all-in-one offensive security platform","url":"https:\/\/sn1persecurity.com\/wordpress\/","email":"support@sn1persecurity.com","foundingDate":"2021-10-05","numberOfEmployees":{"@type":"QuantitativeValue","value":2},"logo":{"@type":"ImageObject","url":"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2022\/06\/Sn1perwhiteandcircleicontwitter.jpg","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#organizationLogo","width":500,"height":500,"caption":"Sn1perSecurity Logo"},"image":{"@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/Sn1persecurity-105784611869093","https:\/\/x.com\/sn1persecurity","https:\/\/www.instagram.com\/sn1persecurity","https:\/\/www.youtube.com\/sn1persecurity","https:\/\/www.linkedin.com\/in\/sn1persecurity\/","https:\/\/github.com\/1N3\/Sn1per"]},{"@type":"WebPage","@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#webpage","url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/","name":"API Reference - Sn1perSecurity","description":"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/sn1persecurity.com\/wordpress\/#website"},"breadcrumb":{"@id":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/#breadcrumblist"},"datePublished":"2026-06-13T11:40:05-07:00","dateModified":"2026-06-13T11:40:05-07:00"},{"@type":"WebSite","@id":"https:\/\/sn1persecurity.com\/wordpress\/#website","url":"https:\/\/sn1persecurity.com\/wordpress\/","name":"Sn1perSecurity","alternateName":"Sn1per","description":"Get an attacker's view of your organization with our all-in-one offensive security platform","inLanguage":"en-US","publisher":{"@id":"https:\/\/sn1persecurity.com\/wordpress\/#organization"}}]},"og:locale":"en_US","og:site_name":"Sn1perSecurity","og:type":"article","og:title":"API Reference - Sn1perSecurity","og:description":"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL","og:url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/","og:image":"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png","og:image:secure_url":"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png","og:image:width":1920,"og:image:height":1080,"article:published_time":"2026-06-13T18:40:05+00:00","article:modified_time":"2026-06-13T18:40:05+00:00","article:publisher":"https:\/\/www.facebook.com\/Sn1persecurity-105784611869093","twitter:card":"summary_large_image","twitter:site":"@sn1persecurity","twitter:title":"API Reference - Sn1perSecurity","twitter:description":"Documentation\/API Reference Sn1per Professional 2026 ships a lightweight JSON API for programmatic, read-only access to your workspaces, hosts, and findings, plus structured JSON \/ CSV \/ TXT export of vulnerability and host data. Together they let you pull Sn1per results into dashboards, SIEMs, ticketing systems, and SOAR pipelines without scraping the web UI. Base URL","twitter:creator":"@sn1persecurity","twitter:image":"https:\/\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png"},"aioseo_meta_data":{"post_id":"64521","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":true,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2026-06-13 21:18:42","updated":"2026-06-13 21:18:42","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/sn1persecurity.com\/wordpress\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/sn1persecurity.com\/wordpress\/documentation\/\" title=\"Documentation\">Documentation<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAPI Reference\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/sn1persecurity.com\/wordpress"},{"label":"Documentation","link":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/"},{"label":"API Reference","link":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/api\/"}],"jetpack_shortlink":"https:\/\/wp.me\/PdnW96-gMF","jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":63082,"url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/usage\/","url_meta":{"origin":64521,"position":0},"title":"Usage","author":"","date":"April 25, 2026","format":false,"excerpt":"Documentation\/Usage Sn1per Professional 2026 exposes three interfaces: a web UI (primary), a CLI (sniper command), and a JSON API. Web UI The web UI is served on HTTPS port 1337. Log in as admin with the password from \/usr\/share\/sniper\/pro\/data\/.admin-password. Workspace Navigator The landing page after login. One row per workspace\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":63079,"url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/getting-started\/","url_meta":{"origin":64521,"position":1},"title":"Getting Started","author":"","date":"April 25, 2026","format":false,"excerpt":"Documentation\/Getting Started This guide gets you from a fresh system to a running Sn1per Pro instance in under 20 minutes. For deeper coverage, see Installation and Configuration. Prerequisites A 64-bit Linux host (Kali Rolling recommended; Ubuntu 22.04+, Debian 12+, and Parrot OS also supported) Root or passwordless sudo access 4\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":2284,"url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/","url_meta":{"origin":64521,"position":2},"title":"Documentation","author":"xer0dayz","date":"October 7, 2018","format":false,"excerpt":"[vc_row][vc_column][vc_column_text] Sn1per Professional Documentation The official Sn1per Professional software manual. Topics System Requirements Getting Started Help Topics Integration Guides Modules Sn1per Professional Demos Sn1per Enterprise Boot Camp \u00a0 System Requirements Sn1per Professional requires the following to run correctly: A Kali Linux operating system Kali 2024.4 VMware\/VirtualBox pre-built VMs, Ubuntu 22.04\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"Sn1perSecurity-Attack-Surface-Management-header2","src":"https:\/\/i0.wp.com\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/sn1persecurity.com\/wordpress\/wp-content\/uploads\/2021\/10\/Sn1perSecurity-Attack-Surface-Management-header2.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":63083,"url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/architecture\/","url_meta":{"origin":64521,"position":3},"title":"Architecture","author":"","date":"April 25, 2026","format":false,"excerpt":"Documentation\/Architecture Sn1per Professional 2026 pairs a bash-based scan engine with a modernized PHP web UI on Apache, and optionally integrates with an AI \/ RAG stack for augmented analysis. This doc describes how the components fit together. High-level stack Browser (HTTPS :1337) | v Apache 2.4 --- Digest Auth ---\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":63084,"url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/docker\/","url_meta":{"origin":64521,"position":4},"title":"Docker","author":"","date":"April 25, 2026","format":false,"excerpt":"Documentation\/Docker Sn1per Professional 2026 can run inside a Docker container on any Docker-capable host. The recommended workflow starts a Kali base container and runs your license's activation.sh inside it \u2014 the same installer used on bare metal. Why --privileged is required Sn1per Pro runs a broad offensive toolchain: nmap (raw\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":63080,"url":"https:\/\/sn1persecurity.com\/wordpress\/documentation\/installation\/","url_meta":{"origin":64521,"position":5},"title":"Installation","author":"","date":"April 25, 2026","format":false,"excerpt":"Documentation\/Installation Sn1per Professional 2026 installs in two modes: bare metal on a supported Linux host, or inside a Docker container. The same activation.sh URL (sent in your order confirmation email) drives both. System Requirements Requirement Minimum Recommended Operating system Kali Linux Rolling, Ubuntu 22.04+, Debian 12+, or Parrot OS Kali\u2026","rel":"","context":"Similar post","block_context":{"text":"Similar post","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/pages\/64521","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/types\/page"}],"replies":[{"embeddable":true,"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/comments?post=64521"}],"version-history":[{"count":0,"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/pages\/64521\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/pages\/2284"}],"wp:attachment":[{"href":"https:\/\/sn1persecurity.com\/wordpress\/wp-json\/wp\/v2\/media?parent=64521"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}