Skip to main content
GET
/
api
/
domains
List domains
curl --request GET \
  --url https://api.ipulse.one/api/domains \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "domain_123",
      "url": "https://example.com",
      "name": "My Website",
      "status": "active",
      "check_interval": 300,
      "last_check": "2023-11-07T05:31:56Z",
      "uptime_percentage": 50,
      "response_time_ms": 123,
      "ssl_expires_at": "2023-11-07T05:31:56Z",
      "tags": [
        "<string>"
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Query Parameters

status
enum<string>
Available options:
active,
inactive,
pending
limit
integer
default:50
Required range: 1 <= x <= 200
offset
integer
default:0
Required range: x >= 0

Response

200 - application/json

List of domains

data
object[]
pagination
object