Learn how to use
SICenter.
Comprehensive guides and API documentation to help you get the most out of our platform.
Documentation is in active development. The MCP server reference is available at /mcp. For early access to API docs contact support@sicenter.io.
From zero to first scan in 4 steps.
Create an account
Sign up for free and verify your email address.
Add your first domain
Enter your domain in the search bar to start scanning.
Review results
Analyze vulnerabilities, assets, and security score.
Take action
Use insights to prioritize and remediate issues.
Everything you need to build with SICenter.
Getting Started
Quick-start guides and tutorials.
Security Features
Deep dive into security capabilities.
API Reference
Integrate SICenter into your workflow.
Integrations
Connect SICenter with your existing tools.
Simple, powerful API.
Integrate SICenter into your security workflows with an easy-to-use SDK. Available for Node.js, Python, Go, and more.
Manage API keys// Initialize the SICenter clientimport { SICClient } from '@sicenter/sdk';const client = new SICClient({ apiKey: process.env.SIC_API_KEY});// Start a new scanconst scan = await client.scans.create({ domain: 'example.com', options: { deep: true, ports: 'common' }});// Get scan resultsconst results = await client.scans.get(scan.id);console.log(results.score); // 87Need help?
Documentation is in active development. Reach out to the team directly while we build it out.