RevKeenDocs

Get storefront integration status

Readiness report for the Cart/headless-storefront setup: activation, managed keys, registered origins, product-read readiness, webhook health, and availability tracking. CART_DISABLED / KEYS_MISSING / ORIGIN_MISSING / PRODUCT_READ_UNAVAILABLE are fail-level; WEBHOOK_MISSING / WEBHOOK_UNREACHABLE are warn-level. Never returns key material.


Related endpoints

  • GET /storefront/products — List storefront products
  • GET /storefront/products/{productId} — Get a storefront product
  • GET /storefront/origins — List storefront origins
  • POST /storefront/origins — Register a storefront origin
  • DELETE /storefront/origins/{originId} — Remove a storefront origin

Common errors

  • 401 unauthenticated — missing, malformed, or revoked API key.
  • 403 permission_denied — key lacks the required scope, or the resource belongs to a different merchant.
GET
/storefront/status
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Response Body

application/json

application/json

application/json

Stuck on an error response? Ask the RevKeen assistant to explain it.
curl "https://api.revkeen.com/v2/storefront/status" \
  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": {
    "object": "storefront_status",
    "ready": true,
    "checks": [
      {
        "id": "cart_enabled",
        "status": "pass",
        "code": "CART_DISABLED",
        "message": "string",
        "next_action": "string"
      }
    ],
    "cart": {
      "enabled": true,
      "profile": "string"
    },
    "keys": {
      "publishable": {
        "present": true,
        "active": true,
        "created_at": "string",
        "last_used_at": "string"
      },
      "secret": {
        "present": true,
        "active": true,
        "created_at": "string",
        "last_used_at": "string"
      }
    },
    "origins": {
      "count": 0,
      "origins": [
        "string"
      ]
    },
    "product_read": {
      "active_products": 0,
      "priced_products": 0,
      "ready": true
    },
    "webhooks": {
      "active_endpoints": 0,
      "unreachable_endpoints": 0
    },
    "availability": {
      "tracked_products": 0,
      "mode": "enabled"
    }
  }
}
{
  "error": "string",
  "message": "string"
}
{
  "error": "string",
  "message": "string"
}