Skip to main content

Apply for playground access.

POST 

https://api.aleph-alpha.com/users/apply

Apply for access to the Aleph Alpha playground.

Request

Bodyrequired

    emailstringrequired

    User's email address

    first_namestring

    User's first name

    last_namestring

    User's last name

    organization_typestringrequired

    Type or organization; must be one of 'AcademicInstitute' or 'ResearchInstitute'

    Possible values: [AcademicInstitute, ResearchInstitute]

    reasonstring

    Reason for applying

    newsletter_signupboolean

    Whether to signup for the Aleph Alpha newsletter.

    Default value: false
    email_usage_consentbooleanrequired

    Whether the user consents usage of the email address; must be set to true.

    Default value: false

Responses

OK

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://docs.aleph-alpha.com/users/apply");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.aleph-alpha.com
Body required
{
  "email": "string",
  "first_name": "string",
  "last_name": "string",
  "organization_type": "AcademicInstitute",
  "reason": "string",
  "newsletter_signup": false,
  "email_usage_consent": false
}
ResponseClear

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