Skip to main content

OpenAPI specification

GET 

https://api.aleph-alpha.com/openapi.yaml

Returns the latest OpenAPI specification for this API.

Responses

OK

Schema
    stringstring
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://docs.aleph-alpha.com/openapi.yaml");
request.Headers.Add("Accept", "text/yaml");
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!