Skip to main content

OpenAPI specification

GET 

/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());