Skip to main content

Current API version

GET 

https://api.aleph-alpha.com/version

Will return the version number of the API that is deployed to this environment.

Responses

OK

Schema
    stringstring
    Example: 1.0.0
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.aleph-alpha.com/version");
request.Headers.Add("Accept", "text/plain");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.aleph-alpha.com
ResponseClear

Click the Send API Request button above and see the response here!