> 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 Broken Links pages

GET https://api.modulards.com/api/public/v1/site-broken-link-pages

Lists the source pages the Broken Links Checker found findings on, for one website, as a JSON:API collection of type `site-broken-link-pages` with the usual `links` / `meta` pagination. Resolved pages (the crawler no longer finds them) never appear.

`filter[site]` is required: the listing is always scoped to one website, resolved before the policy check so a website out of reach reads as not found. `filter[category]`/`filter[severity]`/`filter[location]` feed the per-page `by_category`/`by_severity` counters rather than filtering out pages.

A muted (ignored) page stays listed: ignoring it detaches every finding from it, so it appears with every counter at `0`. It shows both in the unfiltered listing and with `filter[ignored]=1`; `filter[ignored]=0` hides it.

Each entry carries `source_url`, `source_title`, `source_type` (the WordPress content type), `issues_count`, `by_category`, `by_severity`, `ignored_at` and `last_scanned_at`.

Websites of other organizations - and members without the read permission - answer 404; an unknown filter answers 400 and an invalid value 422. A read-only token is enough. See "Bulk ignore Broken Links pages" to mute or restore pages - ignoring one detaches its findings until the next scan.

Reference: https://api.docs.modulards.com/modular-ds-public-api/broken-links-pages/list-broken-links-pages

## 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) — Required. Exact website id
- `filter[category]` (string, optional) — broken_link | mixed_content - feeds the per-page counters, not a subset filter
- `filter[severity]` (string, optional) — error | warning | info - feeds the per-page counters, not a subset filter
- `filter[location]` (string, optional) — internal | external - feeds the per-page counters, not a subset filter
- `filter[ignored]` (string, optional) — 1|0 - 1 = only muted pages (every counter answers 0); 0 = hides muted pages; omit to include both
- `filter[issues]` (string, optional) — Only the pages still attached to this site-broken-link-issues id
- `filter[s]` (string, optional) — Free-text search over source_url
- `sort` (string, optional) — issues_count (default, descending), source_url, last_scanned_at; prefix with - to invert
- `page[number]` (string, optional)
- `page[size]` (string, optional) — Max 50

## Response

### 200

200 - Broken Links pages

- `data` (list of object, optional)
  - `attributes` (object, optional)
    - `by_category` (object, optional)
      - `broken_link` (double, optional)
      - `mixed_content` (double, optional)
    - `by_severity` (object, optional)
      - `error` (double, optional)
      - `info` (double, optional)
      - `warning` (double, optional)
    - `ignored_at` (string, optional, nullable)
    - `issues_count` (double, optional)
    - `last_scanned_at` (string, optional)
    - `source_title` (string, optional)
    - `source_type` (string, optional)
    - `source_url` (string, optional)
  - `id` (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)
  - `per_page` (double, optional)
  - `to` (double, optional)
  - `total` (double, optional)

## Errors

### 422 Unprocessable Entity Error

422 - filter[site] missing

- `errors` (list of object, optional)
  - `detail` (string, optional)
  - `source` (object, optional)
    - `parameter` (string, optional)
  - `status` (string, optional)
  - `title` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)

## Examples

**Response**

```json
{
  "data": [
    {
      "attributes": {
        "by_category": {
          "broken_link": 2,
          "mixed_content": 1
        },
        "by_severity": {
          "error": 2,
          "info": 0,
          "warning": 1
        },
        "ignored_at": null,
        "issues_count": 3,
        "last_scanned_at": "2026-09-16T09:14:00.000000Z",
        "source_title": "Old post",
        "source_type": "post",
        "source_url": "https://example.com/blog/old-post"
      },
      "id": "501",
      "type": "site-broken-link-pages"
    },
    {
      "attributes": {
        "by_category": {
          "broken_link": 0,
          "mixed_content": 0
        },
        "by_severity": {
          "error": 0,
          "info": 0,
          "warning": 0
        },
        "ignored_at": "2026-09-17T08:00:00.000000Z",
        "issues_count": 0,
        "last_scanned_at": "2026-09-10T03:12:00.000000Z",
        "source_title": "Jane's author page",
        "source_type": "page",
        "source_url": "https://example.com/author/jane"
      },
      "id": "502",
      "type": "site-broken-link-pages"
    }
  ],
  "jsonapi": {
    "version": "1.1"
  },
  "links": {
    "first": "{{base_url}}/api/public/v1/site-broken-link-pages?filter%5Bsite%5D=12345&page%5Bnumber%5D=1",
    "last": "{{base_url}}/api/public/v1/site-broken-link-pages?filter%5Bsite%5D=12345&page%5Bnumber%5D=1",
    "next": null,
    "prev": null
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "per_page": 15,
    "to": 2,
    "total": 2
  }
}
```

**SDK Code**

```python 200 - Broken Links pages
import requests

url = "https://api.modulards.com/api/public/v1/site-broken-link-pages"

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

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

print(response.json())
```

```javascript 200 - Broken Links pages
const url = 'https://api.modulards.com/api/public/v1/site-broken-link-pages';
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 - Broken Links pages
package main

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

func main() {

	url := "https://api.modulards.com/api/public/v1/site-broken-link-pages"

	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 - Broken Links pages
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/site-broken-link-pages")

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 - Broken Links pages
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

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

```php 200 - Broken Links pages
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

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

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

```csharp 200 - Broken Links pages
using RestSharp;

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

```swift 200 - Broken Links pages
import Foundation

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/site-broken-link-pages")! 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()
```