Status
GET/api/v1/status
Get the status of the API.
Request
Responses
- 200
The status of the API.
- application/json
- Schema
- Example (auto)
Schema
statusstringrequired
errorstringnullablerequired
uptimedoublerequired
timestampdoublerequired
versionstringrequired
{
"status": "string",
"error": "string",
"uptime": 0,
"timestamp": 0,
"version": "string"
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "/api/v1/status");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());