An open API service indexing awesome lists of open source software.

https://github.com/panoramicdata/highlight.api

Client library for Highlight
https://github.com/panoramicdata/highlight.api

Last synced: 11 months ago
JSON representation

Client library for Highlight

Awesome Lists containing this project

README

          

# Highlight.Api

## Introduction

A C# client library for the Highlight API, designed to interact with the Highlight performance testing and reporting features.

## Original documentation

https://support.highlight.net/help/reporting/api_overview

## Example usage

```csharp
using Highlight.Api;

var client = new HighlightClient(new HighlightClientOptions
{
ApiKey = new("your_api_key_here"),
BaseUrl = new("https://reportingapi.highlighter.net"),
UserAgent = "MyHighlightApp/1.0"
});

var result = await Client
.PerformanceTestSummary
.GetPrecisionAsync(
lastNDays: 1,
cancellationToken: default);

```