> 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 event counts bucketed by time

GET /v1/events/buckets

Returns time-bucketed event counts for histogram display. The server picks a clean bucket interval based on the maxBuckets hint.

Reference: https://docs.nvidia.com/fleet-intel/api-explorer/events/get-v-1-events-buckets

## Request

### Query parameters

- `startTime` (string, optional) — Start time in RFC3339 format (required for absolute mode, e.g., 2024-01-01T01:00:00Z). Cannot be more than 1 year in the past.
- `endTime` (string, optional) — End time in RFC3339 format (required for absolute mode, e.g., 2024-01-01T01:00:00Z)
- `timeMode` (enum, optional) — Time mode for range selection. Defaults to absolute.
  - Allowed values: `absolute`, `relative`
- `window` (string, optional) — Relative duration window (required for relative mode). Valid units: h, m, s (e.g. 24h, 1h30m, 90m). 'd' is not supported; use hours instead (e.g. 168h for 7 days)
- `nodeUUID` (string, optional) — Filter by node UUID (optional)
- `component` (string, optional) — Filter by component (optional)
- `maxBuckets` (integer, optional, default: 100) — Maximum number of buckets (default: 100, max: 1000)

## Response

### 200

Time-bucketed event counts

- `bucketInterval` (string, optional)
- `buckets` (list of object, optional)
  - `count` (integer, optional)
  - `endTime` (string, optional)
  - `firstEventTime` (string, optional)
  - `startTime` (string, optional)

## Examples

**Response**

```json
{
  "bucketInterval": "15m",
  "buckets": [
    {
      "count": 3,
      "endTime": "2024-01-01T00:01:00Z",
      "firstEventTime": "2024-01-01T00:00:30Z",
      "startTime": "2024-01-01T00:00:00Z"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.example.com/v1/events/buckets"

response = requests.get(url)

print(response.json())
```

```javascript
const url = 'https://api.example.com/v1/events/buckets';
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/events/buckets"

	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/events/buckets")

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/events/buckets")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

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

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

```csharp
using RestSharp;

var client = new RestClient("https://api.example.com/v1/events/buckets");
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/events/buckets")! 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()
```