GHL & GenerationGet platform config
GHL & Generation

Get platform config

Retrieve the current platform configuration including enabled features, limits, and integration settings.

curl -X GET "https://api.mythic-analytics.com/api/v1/platform-config" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "success": true,
  "data": {
    "features": {
      "canvases": true,
      "ai_generation": true,
      "ghl_integration": true
    },
    "limits": {
      "max_canvases": 50,
      "max_insights": 200,
      "max_dashboards": 25
    },
    "integrations": {
      "ghl_connected": true
    }
  }
}
GET
/platform-config
GET
Security Scheme
Bearer Tokenstring
Required

Admin API key as bearer token. Format: Bearer YOUR_ADMIN_KEY

Admin API key as bearer token. Format: Bearer YOUR_ADMIN_KEY
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token. Admin API key as bearer token. Format: Bearer YOUR_ADMIN_KEY

Responses

successboolean
dataobject