Skip to main content

Checking Domain Status

Coming Soon!

This feature is under development and will be available soon.
Check the status of domains configured for pixel wrapping. You can retrieve a list of all domains with their current status (active, limited, or blocked), or query a specific domain to see its configuration.

Status Types

  • Active - Pixel wrapping is enabled and functioning normally
  • Limited - Pixel wrapping is enabled but with rate limits applied
  • Blocked - Pixel wrapping is completely disabled for this domain

API Endpoint

GET https://api.mdb.tools/pixel/status
Authentication: x-api-key header
Response Format: JSON

Get All Domains

Retrieve a list of all domains and their current status:
curl -X GET "https://api.mdb.tools/pixel/status" \
  -H "x-api-key: your-api-key-here"
Example Response:
{
  "domains": [
    {
      "domain": "example.com",
      "status": "active"
    },
    {
      "domain": "blog.example.com",
      "status": "limited",
      "limit": {
        "period": "day",
        "number": 10
      }
    },
    {
      "domain": "staging.example.com",
      "status": "blocked"
    }
  ]
}

Get Specific Domain

Query a specific domain to see its status and configuration:
curl -X GET "https://api.mdb.tools/pixel/status?domain=example.com" \
  -H "x-api-key: your-api-key-here"
Query Parameters:
  • domain (string, optional) - The domain to check. If omitted, returns all domains.
Example Response:
{
  "domain": "example.com",
  "status": "limited",
  "limit": {
    "period": "day",
    "number": 10
  }
}