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
- Host: GitHub
- URL: https://github.com/panoramicdata/highlight.api
- Owner: panoramicdata
- License: mit
- Created: 2025-06-02T12:28:21.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-03T10:47:44.000Z (about 1 year ago)
- Last Synced: 2025-07-03T23:43:11.496Z (12 months ago)
- Language: C#
- Size: 56.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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);
```