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

# Get XID burst filter options

GET /v1/xid/bursts/options

Returns all filter options available to the authenticated customer and persona. Options are not narrowed by the table's current time, scope, or column filters. This v1 response contains no counts and has no cross-filter impact-count behavior.
Tenant callers receive public disruption values, XIDs, and tenant actions. Cloud-provider/NCP callers additionally receive platform-disruption values, categories, subcategories, and DC-admin actions. suggestedActions uses the shared action model; clients group it by persona and type. Category and action labels are resolved from the persona-appropriate catalogs.
jobDisruption and jobDisruptionDueToPlatformIssue are always the full [true, false] domain. XID numbers, categories, subcategories, and suggestedActions reflect the distinct values actually present across the customer's finalized bursts (still unfiltered by the current table filters). Action codes are alias-normalized and de-duplicated after normalization, matching GET /v1/xid/bursts. Hostname filtering uses the free-text hostnameSearch parameter on GET /v1/xid/bursts rather than a distinct-hostname options list.

Reference: https://docs.nvidia.com/fleet-intel/fleet-intel/api-explorer/xid/get-v-1-xid-burst-options

## Response

### 200

OK

- `categories` (list of string, optional)
- `jobDisruption` (list of boolean, optional)
- `jobDisruptionDueToPlatformIssue` (list of boolean, optional) — JobDisruptionDueToPlatformIssue is omitted for tenant callers.
- `subcategories` (list of string, optional)
- `suggestedActions` (list of object, optional) — SuggestedActions is persona-shaped: tenants receive tenant actions, while cloud-provider/NCP callers receive both tenant and dc_admin actions. Clients group options by persona and type (immediate or investigatory).
  - `action` (string, optional) — Resolution action from Guidance Classes sheet
  - `code` (string, optional) — Action code from NVIDIA XID catalog
  - `persona` (enum, optional) — Target persona; omitted when an endpoint has already reduced actions to one persona
    - Allowed values: `tenant`, `dc_admin`
  - `type` (enum, optional) — Action type: "immediate" or "investigatory"
    - Allowed values: `immediate`, `investigatory`
- `xidNumbers` (list of integer, optional)

## Examples

**Response**

```json
{
  "categories": [
    "string"
  ],
  "jobDisruption": [
    true,
    false
  ],
  "jobDisruptionDueToPlatformIssue": [
    true,
    false
  ],
  "subcategories": [
    "string"
  ],
  "suggestedActions": [
    {
      "action": "Restart the application",
      "code": "RESTART_APP",
      "persona": "tenant",
      "type": "immediate"
    }
  ],
  "xidNumbers": [
    1
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.example.com/v1/xid/bursts/options"

response = requests.get(url)

print(response.json())
```

```javascript
const url = 'https://api.example.com/v1/xid/bursts/options';
const options = {method: 'GET'};

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

```go
package main

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

func main() {

	url := "https://api.example.com/v1/xid/bursts/options"

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

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

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

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

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/xid/bursts/options")

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

request = Net::HTTP::Get.new(url)

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

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.example.com/v1/xid/bursts/options")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.example.com/v1/xid/bursts/options');

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

```csharp
using RestSharp;

var client = new RestClient("https://api.example.com/v1/xid/bursts/options");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://api.example.com/v1/xid/bursts/options")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

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()
```