Getting Started
Goal: "Run your first workflow in 10 minutes."
Covers installation, setup, and first automation example. Includes the 4 VOID steps applied to the PAA Explorer.
The VOID Loop Framework
Goal: "Understand how we build everything."
Full methodology, from Vision to Deep Dive, with templates and examples.
Tools & Apps
Goal: "Discover our modular apps built with the VOID Loop."
Each app = overview, usage, sample data, API reference.
API Reference
Goal: "Integrate VoidSEO data in your own workflows."
Auth, endpoints, rate limits, and code examples.
Community & Support
Goal: "You're not alone — join the builders."
Discord, GitHub, and support channels.
Quick Preview
🚀 New to VoidSEO?
Start with our comprehensive Getting Started guide to run your first VOID Loop workflow in 10 minutes.
Complete Getting Started Guide1. Install & Setup
# Clone and install
git clone https://github.com/voidseo/tools.git
cd tools && pip install -r requirements.txt
2. Run Your First Workflow
from voidseo import PAAExplorer
explorer = PAAExplorer()
results = explorer.scrape(['seo tools'])
print(f"Found {len(results)} clusters")
Documentation Sections
Framework & Methodology
Tools & Apps
API Reference
Integrations
API Reference
Base URL
https://api.voidseo.dev/v1
Authentication
All API requests require authentication using your API key:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.voidseo.dev/v1/paa/scrape
Common Endpoints
POST /paa/scrape
Scrape PAA questions for given keywords
{
"keywords": ["seo tools", "keyword research"],
"locale": "en-US",
"max_questions": 10
}
POST /cluster/semantic
Cluster questions by semantic similarity
{
"questions": ["array", "of", "questions"],
"algorithm": "kmeans",
"n_clusters": "auto"
}
Need Help?
Can't find what you're looking for? We're here to help.