> 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.

# Show malware scan service

GET https://api.modulards.com/api/public/v1/malware-scan-services/{site_preset_malware_scan}

Read one website's Malware Scanner settings: whether it is switched on, the configuration it uses, the filesystem mode, the scanned areas, its scan quota and the next scheduled scan.

Response attributes: `tier` (basic, premium - inherited from the configuration), `status` (enabled, disabled), `schedule` (cascaded from the configuration, read-only here), `filesystem` (default, custom), `content.included` (areas scanned), `content.excluded` (areas skipped - dashboard-only setting), `limits` (the scan quota counters and their reset dates), `last_request`, `next_request` and the timestamps, plus the `preset` relationship (the configuration it uses).

A row of another organization, or a website with no Malware Scanner configuration, answers 404.

Reference: https://api.docs.modulards.com/modular-ds-public-api/malware-scan-services/show-malware-scan-service

## Authentication

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

## Request

### Path parameters

- `site_preset_malware_scan` (string, required)

## Response

### 200

200 - Malware scan service

- `data` (object, optional)
  - `attributes` (object, optional)
    - `content` (object, optional)
      - `excluded` (object, optional)
        - `content` (any, optional, nullable)
        - `core` (any, optional, nullable)
        - `database` (any, optional, nullable)
        - `fonts` (any, optional, nullable)
        - `mu_plugins` (any, optional, nullable)
        - `plugins` (any, optional, nullable)
        - `themes` (any, optional, nullable)
        - `uploads` (any, optional, nullable)
      - `included` (list of string, optional)
    - `created_at` (string, optional)
    - `filesystem` (string, optional)
    - `last_request` (string, optional)
    - `limits` (object, optional)
      - `cleans_limit` (double, optional)
      - `cleans_used` (double, optional)
      - `db_cleans_limit` (double, optional)
      - `db_cleans_used` (double, optional)
      - `db_resets_at` (string, optional)
      - `db_scans_limit` (double, optional)
      - `db_scans_used` (double, optional)
      - `resets_at` (string, optional)
      - `scans_limit` (double, optional)
      - `scans_used` (double, optional)
    - `next_request` (string, optional)
    - `schedule` (object, optional)
      - `day_month` (double, optional)
      - `day_week` (any, optional, nullable)
      - `frequency` (string, optional)
      - `start_hour` (string, optional)
      - `timezone` (string, optional)
    - `status` (string, optional)
    - `tier` (string, optional)
    - `updated_at` (string, optional)
  - `id` (string, optional)
  - `links` (object, optional)
    - `self` (string, optional)
  - `relationships` (object, optional)
    - `preset` (object, optional)
      - `data` (object, optional)
        - `id` (string, optional)
        - `type` (string, optional)
  - `type` (string, optional)
- `jsonapi` (object, optional)
  - `version` (string, optional)

## Examples

**Response**

```json
{
  "data": {
    "attributes": {
      "content": {
        "excluded": {
          "content": null,
          "core": null,
          "database": null,
          "fonts": null,
          "mu_plugins": null,
          "plugins": null,
          "themes": null,
          "uploads": null
        },
        "included": [
          "core",
          "database"
        ]
      },
      "created_at": "2026-07-01T09:00:00.000000Z",
      "filesystem": "default",
      "last_request": "2026-09-01T03:00:00.000000Z",
      "limits": {
        "cleans_limit": 0,
        "cleans_used": 0,
        "db_cleans_limit": 0,
        "db_cleans_used": 0,
        "db_resets_at": "2026-10-01T00:00:00.000000Z",
        "db_scans_limit": 30,
        "db_scans_used": 1,
        "resets_at": "2026-10-01T00:00:00.000000Z",
        "scans_limit": 30,
        "scans_used": 1
      },
      "next_request": "2026-10-01T03:14:00.000000Z",
      "schedule": {
        "day_month": 1,
        "day_week": null,
        "frequency": "monthly",
        "start_hour": "03:00",
        "timezone": "Europe/Madrid"
      },
      "status": "enabled",
      "tier": "basic",
      "updated_at": "2026-09-01T03:05:00.000000Z"
    },
    "id": "845",
    "links": {
      "self": "https://api.modulards.com/api/public/v1/malware-scan-services/845"
    },
    "relationships": {
      "preset": {
        "data": {
          "id": "7",
          "type": "preset-malware-scans"
        }
      }
    },
    "type": "site-preset-malware-scans"
  },
  "jsonapi": {
    "version": "1.1"
  }
}
```

**SDK Code**

```python 200 - Malware scan service
import requests

url = "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan"

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

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

print(response.json())
```

```javascript 200 - Malware scan service
const url = 'https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan';
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 - Malware scan service
package main

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

func main() {

	url := "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan"

	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 - Malware scan service
require 'uri'
require 'net/http'

url = URI("https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")

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 - Malware scan service
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

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

```php 200 - Malware scan service
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

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

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

```csharp 200 - Malware scan service
using RestSharp;

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

```swift 200 - Malware scan service
import Foundation

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

let request = NSMutableURLRequest(url: NSURL(string: "https://api.modulards.com/api/public/v1/malware-scan-services/site_preset_malware_scan")! 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()
```