Developers

API Reference

Full programmatic access to every BlockForge feature. Manage sites, trigger backups, query monitoring data, and integrate with your existing toolchain.

Coming soon

What to Expect

A REST API built for automation.

Sites & Servers

List, create, update, and remove sites. Query server metadata, WordPress versions, and connection status.

Backups

Trigger backups on demand, list backup history, download archives, and check verification status.

Monitoring

Query uptime history, response times, SSL certificate status, and performance metrics for any site.

Security

Run vulnerability scans, retrieve file integrity reports, and access malware detection results programmatically.

Plugins & Themes

List installed plugins and themes across all sites, check for updates, and trigger bulk update operations.

Activity Logs

Retrieve activity logs, filter by site, user, or event type, and export data for external reporting.

Preview

Clean, predictable, well-documented.

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 }

}

Be the first to build on BlockForge.

The API is currently in development. Create a free account and you'll be notified as soon as it launches.