# Show Blueprint

Get a single WordPress blueprint by ID.

Requires an active WordPress Toolkit add-on on the account. The blueprint must belong to the authenticated user.


# Get WordPress Blueprint

# HTTP Request:

GET https://api.serveravatar.com/wordpress-blueprints/{wordpressBlueprint}

Replace {wordpressBlueprint} with the blueprint numeric ID.

# Curl Request Example:

curl --request GET \
  --url "https://api.serveravatar.com/wordpress-blueprints/12" \
  --header 'content-type: application/json' \
  --header 'Authorization: <YOUR API TOKEN>'

# Response:

# Successful Response

  • 200 (Ok)
{
  "message": "WordPress blueprint fetched successfully.",
  "blueprint": {
    "id": 12,
    "name": "My Agency Starter",
    "selected_plugins": [],
    "selected_themes": [],
    "custom_theme_plugins": [
      {
        "label": "My Custom Plugin",
        "link": "a1b2c3d4-e5f6-7890-abcd-ef1234567890.zip",
        "link_source": "upload",
        "type": "custom-plugin",
        "activate": true
      },
      {
        "label": "Remote Theme",
        "link": "https://example.com/my-theme.zip",
        "link_source": "url",
        "type": "custom-theme",
        "activate": false
      }
    ]
  }
}

# Blueprint Not Found

  • 404 (Not Found)
{
  "message": "Blueprint not found."
}
Last Updated: 5/21/2026, 7:34:23 AM