OpenAPI specification
GEThttps://api.aleph-alpha.com/openapi.yaml
Returns the latest OpenAPI specification for this API.
Responses
- 200
OK
- text/yaml
- Schema
- Example (auto)
Schema
stringstring
"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, "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());
ResponseClear