> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://api.docs.modulards.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://api.docs.modulards.com/_mcp/server.

# List uptime

GET https://api.modulards.com/api/public/v1/uptime

Portfolio-level uptime listing: one row per monitored site with its current status and last ping, answering "is anything down right now" in a single call. Rolling availability windows for one site live in `Show site uptime` (`/sites/{site}/uptime`).

JSON:API collection of type `site-uptimes`, id = the site's uptime service id. Each entry carries `site` (`id`, `name`), `enabled` (is the monitor on), `status` (`up` / `down` / `unknown`), `status_since` and `last_ping` (`at`, `status`, `status_code`, `response_time_ms`, `error`), plus the usual top-level `links`, `meta` and `jsonapi`. `last_ping` is null when the monitor has not pinged in the last 30 days.

Example entry:

```json
{"type":"site-uptimes","id":"1","attributes":{"site":{"id":1,"name":"Portfolio site"},"enabled":true,"status":"down","status_since":"2026-02-10T11:00:00.000000Z","last_ping":{"at":"2026-02-10T11:00:00.000000Z","status":"down","status_code":503,"response_time_ms":null,"error":"Server error"}}}
```

Default sort is `-status`, so outages come first. An unknown filter value or an out-of-range `page[size]` answers 422; a member without the uptime read permission answers 404. A read-only token is enough. The MCP twin of this endpoint is the `uptime-index` tool.

Reference: https://api.docs.modulards.com/modular-ds-public-api/uptime-monitor/list-uptime

## Authentication

- `Authorization` header (bearer token, required) — Personal access token created in the Modular DS dashboard; read-only tokens can only call GET endpoints.

## Request

### Query parameters

- `filter[site][]` (string, optional) — Limit to one or several sites (integer ids, repeatable)
- `filter[status][]` (string, optional) — Current site status: up | down | unknown (repeatable)
- `filter[service_status][]` (string, optional) — Monitor on/off: enabled | disabled (repeatable)
- `filter[s]` (string, optional) — Free-text search over the site name, slug or url (max 255 chars)
- `sort` (string, optional) — status, site_name; prefix with - to invert. Default: -status (outages first)
- `page[number]` (string, optional)
- `page[size]` (string, optional) — Max 50

## Response

### 200

200 - Uptime portfolio, one website down

- `data` (list of object, optional)
  - `attributes` (object, optional)
    - `enabled` (boolean, optional)
    - `last_ping` (object, optional)
      - `at` (string, optional)
      - `error` (string, optional, nullable)
      - `response_time_ms` (double, optional, nullable)
      - `status` (string, optional)
      - `status_code` (double, optional)
    - `site` (object, optional)
      - `id` (double, optional)
      - `name` (string, optional)
    - `status` (string, optional)
    - `status_since` (string, optional)
  - `id` (string, optional)
  - `links` (object, optional)
    - `self` (string, optional)
  - `type` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)
- `links` (object, optional)
  - `first` (string, optional)
  - `last` (string, optional)
  - `next` (any, optional, nullable)
  - `prev` (any, optional, nullable)
- `meta` (object, optional)
  - `current_page` (double, optional)
  - `from` (double, optional)
  - `last_page` (double, optional)
  - `links` (list of object, optional)
    - `active` (boolean, optional)
    - `label` (string, optional)
    - `url` (string, optional, nullable)
  - `path` (string, optional)
  - `per_page` (double, optional)
  - `to` (double, optional)
  - `total` (double, optional)

## Examples

**Response**

```json
{
  "data": [
    {
      "attributes": {
        "enabled": true,
        "last_ping": {
          "at": "2026-02-10T11:00:00.000000Z",
          "error": "Server error",
          "response_time_ms": null,
          "status": "down",
          "status_code": 503
        },
        "site": {
          "id": 1,
          "name": "Portfolio site"
        },
        "status": "down",
        "status_since": "2026-02-10T11:00:00.000000Z"
      },
      "id": "1",
      "links": {
        "self": "{{base_url}}/api/public/v1/uptime-services/1"
      },
      "type": "site-uptimes"
    },
    {
      "attributes": {
        "enabled": true,
        "last_ping": {
          "at": "2026-09-21T10:00:00.000000Z",
          "error": null,
          "response_time_ms": 312,
          "status": "up",
          "status_code": 200
        },
        "site": {
          "id": 5,
          "name": "Marketing site"
        },
        "status": "up",
        "status_since": "2026-08-01T06:00:00.000000Z"
      },
      "id": "2",
      "links": {
        "self": "{{base_url}}/api/public/v1/uptime-services/2"
      },
      "type": "site-uptimes"
    }
  ],
  "jsonapi": {
    "version": "1.1"
  },
  "links": {
    "first": "{{base_url}}/api/public/v1/uptime?page%5Bnumber%5D=1",
    "last": "{{base_url}}/api/public/v1/uptime?page%5Bnumber%5D=1",
    "next": null,
    "prev": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "links": [
      {
        "active": false,
        "label": "&laquo; Previous",
        "url": null
      },
      {
        "active": true,
        "label": "1",
        "url": "{{base_url}}/api/public/v1/uptime?page%5Bnumber%5D=1"
      },
      {
        "active": false,
        "label": "Next &raquo;",
        "url": null
      }
    ],
    "path": "{{base_url}}/api/public/v1/uptime",
    "per_page": 15,
    "to": 2,
    "total": 2
  }
}
```

**SDK Code**

```python 200 - Uptime portfolio, one website down
import requests

url = "https://api.modulards.com/api/public/v1/uptime"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript 200 - Uptime portfolio, one website down
const url = 'https://api.modulards.com/api/public/v1/uptime';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go 200 - Uptime portfolio, one website down
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.modulards.com/api/public/v1/uptime"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby 200 - Uptime portfolio, one website down
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/uptime")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java 200 - Uptime portfolio, one website down
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.modulards.com/api/public/v1/uptime")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php 200 - Uptime portfolio, one website down
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.modulards.com/api/public/v1/uptime', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp 200 - Uptime portfolio, one website down
using RestSharp;

var client = new RestClient("https://api.modulards.com/api/public/v1/uptime");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift 200 - Uptime portfolio, one website down
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/uptime")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```