Developers
Full programmatic access to every BlockForge feature. Manage sites, trigger backups, query monitoring data, and integrate with your existing toolchain.
What to Expect
List, create, update, and remove sites. Query server metadata, WordPress versions, and connection status.
Trigger backups on demand, list backup history, download archives, and check verification status.
Query uptime history, response times, SSL certificate status, and performance metrics for any site.
Run vulnerability scans, retrieve file integrity reports, and access malware detection results programmatically.
List installed plugins and themes across all sites, check for updates, and trigger bulk update operations.
Retrieve activity logs, filter by site, user, or event type, and export data for external reporting.
Preview
RESTful design — standard HTTP methods, JSON request/response bodies, predictable URL structure
Token authentication — API keys scoped per workspace with granular permission control
Pagination & filtering — cursor-based pagination, consistent filtering across all endpoints
Rate limiting — generous limits with clear headers so you always know your remaining quota
Versioned — stable versioned endpoints so your integrations never break unexpectedly
GET /api/v1/sites
// List all sites in your workspace
curl
-H "Authorization: Bearer bf_key_..."
-H "Accept: application/json"
https://my.blockforge.app/api/v1/sites
// Response
{
"data": [
{
"id": 1,
"domain": "example.com",
"status": "online",
"wp_version": "6.7.1",
"last_backup": "2026-03-09T02:00:00Z",
"backup_verified": true
}
],
"meta": { "total": 47, "per_page": 25 }
}
The API is currently in development. Create a free account and you'll be notified as soon as it launches.