curl --request POST \
--url https://api.pyai.com/v1/startup-program/applications \
--header 'Content-Type: application/json' \
--data '
{
"company_name": "<string>",
"website": "<string>",
"work_email": "jsmith@example.com",
"founder_name": "<string>",
"hq_country": "<string>",
"product_summary": "<string>",
"consent_terms": true,
"founded_year": 1991,
"team_size": "<string>",
"demo_url": "<string>",
"video_url": "<string>",
"deck_url": "<string>",
"current_stack": "<string>",
"expected_minutes_monthly": 1,
"languages": [
"<string>"
],
"geographies": [
"<string>"
],
"raised_band": "<string>",
"investors": "<string>",
"partner_code": "<string>",
"referral_source": "<string>",
"consent_directory": true
}
'import requests
url = "https://api.pyai.com/v1/startup-program/applications"
payload = {
"company_name": "<string>",
"website": "<string>",
"work_email": "jsmith@example.com",
"founder_name": "<string>",
"hq_country": "<string>",
"product_summary": "<string>",
"consent_terms": True,
"founded_year": 1991,
"team_size": "<string>",
"demo_url": "<string>",
"video_url": "<string>",
"deck_url": "<string>",
"current_stack": "<string>",
"expected_minutes_monthly": 1,
"languages": ["<string>"],
"geographies": ["<string>"],
"raised_band": "<string>",
"investors": "<string>",
"partner_code": "<string>",
"referral_source": "<string>",
"consent_directory": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
company_name: '<string>',
website: '<string>',
work_email: 'jsmith@example.com',
founder_name: '<string>',
hq_country: '<string>',
product_summary: '<string>',
consent_terms: true,
founded_year: 1991,
team_size: '<string>',
demo_url: '<string>',
video_url: '<string>',
deck_url: '<string>',
current_stack: '<string>',
expected_minutes_monthly: 1,
languages: ['<string>'],
geographies: ['<string>'],
raised_band: '<string>',
investors: '<string>',
partner_code: '<string>',
referral_source: '<string>',
consent_directory: true
})
};
fetch('https://api.pyai.com/v1/startup-program/applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pyai.com/v1/startup-program/applications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'company_name' => '<string>',
'website' => '<string>',
'work_email' => 'jsmith@example.com',
'founder_name' => '<string>',
'hq_country' => '<string>',
'product_summary' => '<string>',
'consent_terms' => true,
'founded_year' => 1991,
'team_size' => '<string>',
'demo_url' => '<string>',
'video_url' => '<string>',
'deck_url' => '<string>',
'current_stack' => '<string>',
'expected_minutes_monthly' => 1,
'languages' => [
'<string>'
],
'geographies' => [
'<string>'
],
'raised_band' => '<string>',
'investors' => '<string>',
'partner_code' => '<string>',
'referral_source' => '<string>',
'consent_directory' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pyai.com/v1/startup-program/applications"
payload := strings.NewReader("{\n \"company_name\": \"<string>\",\n \"website\": \"<string>\",\n \"work_email\": \"jsmith@example.com\",\n \"founder_name\": \"<string>\",\n \"hq_country\": \"<string>\",\n \"product_summary\": \"<string>\",\n \"consent_terms\": true,\n \"founded_year\": 1991,\n \"team_size\": \"<string>\",\n \"demo_url\": \"<string>\",\n \"video_url\": \"<string>\",\n \"deck_url\": \"<string>\",\n \"current_stack\": \"<string>\",\n \"expected_minutes_monthly\": 1,\n \"languages\": [\n \"<string>\"\n ],\n \"geographies\": [\n \"<string>\"\n ],\n \"raised_band\": \"<string>\",\n \"investors\": \"<string>\",\n \"partner_code\": \"<string>\",\n \"referral_source\": \"<string>\",\n \"consent_directory\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pyai.com/v1/startup-program/applications")
.header("Content-Type", "application/json")
.body("{\n \"company_name\": \"<string>\",\n \"website\": \"<string>\",\n \"work_email\": \"jsmith@example.com\",\n \"founder_name\": \"<string>\",\n \"hq_country\": \"<string>\",\n \"product_summary\": \"<string>\",\n \"consent_terms\": true,\n \"founded_year\": 1991,\n \"team_size\": \"<string>\",\n \"demo_url\": \"<string>\",\n \"video_url\": \"<string>\",\n \"deck_url\": \"<string>\",\n \"current_stack\": \"<string>\",\n \"expected_minutes_monthly\": 1,\n \"languages\": [\n \"<string>\"\n ],\n \"geographies\": [\n \"<string>\"\n ],\n \"raised_band\": \"<string>\",\n \"investors\": \"<string>\",\n \"partner_code\": \"<string>\",\n \"referral_source\": \"<string>\",\n \"consent_directory\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pyai.com/v1/startup-program/applications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"company_name\": \"<string>\",\n \"website\": \"<string>\",\n \"work_email\": \"jsmith@example.com\",\n \"founder_name\": \"<string>\",\n \"hq_country\": \"<string>\",\n \"product_summary\": \"<string>\",\n \"consent_terms\": true,\n \"founded_year\": 1991,\n \"team_size\": \"<string>\",\n \"demo_url\": \"<string>\",\n \"video_url\": \"<string>\",\n \"deck_url\": \"<string>\",\n \"current_stack\": \"<string>\",\n \"expected_minutes_monthly\": 1,\n \"languages\": [\n \"<string>\"\n ],\n \"geographies\": [\n \"<string>\"\n ],\n \"raised_band\": \"<string>\",\n \"investors\": \"<string>\",\n \"partner_code\": \"<string>\",\n \"referral_source\": \"<string>\",\n \"consent_directory\": true\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"application_id": "<string>",
"message": "<string>"
}{
"title": "<string>",
"status": 123,
"type": "<string>",
"detail": "<string>",
"request_id": "<string>"
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "invalid_request_error",
"param": "<string>"
}
}Apply to PyAI for Startups (no auth)
Submit an application to the PyAI for Startups credit program (20k,50k, or $100k in PyAI credit plus a managed phone-minute allowance; see https://pyai.com/startups). Public and unauthenticated; rate-limited per source network. On success the applicant receives a confirmation email and a person reviews the application within five business days. Accepted companies activate the award by creating (or signing in to) a PyAI account with the same work_email and verifying it; credits attach automatically. Validation failures return 400 with a problem type of invalid_application:<field> so a form can focus the offending input.
curl --request POST \
--url https://api.pyai.com/v1/startup-program/applications \
--header 'Content-Type: application/json' \
--data '
{
"company_name": "<string>",
"website": "<string>",
"work_email": "jsmith@example.com",
"founder_name": "<string>",
"hq_country": "<string>",
"product_summary": "<string>",
"consent_terms": true,
"founded_year": 1991,
"team_size": "<string>",
"demo_url": "<string>",
"video_url": "<string>",
"deck_url": "<string>",
"current_stack": "<string>",
"expected_minutes_monthly": 1,
"languages": [
"<string>"
],
"geographies": [
"<string>"
],
"raised_band": "<string>",
"investors": "<string>",
"partner_code": "<string>",
"referral_source": "<string>",
"consent_directory": true
}
'import requests
url = "https://api.pyai.com/v1/startup-program/applications"
payload = {
"company_name": "<string>",
"website": "<string>",
"work_email": "jsmith@example.com",
"founder_name": "<string>",
"hq_country": "<string>",
"product_summary": "<string>",
"consent_terms": True,
"founded_year": 1991,
"team_size": "<string>",
"demo_url": "<string>",
"video_url": "<string>",
"deck_url": "<string>",
"current_stack": "<string>",
"expected_minutes_monthly": 1,
"languages": ["<string>"],
"geographies": ["<string>"],
"raised_band": "<string>",
"investors": "<string>",
"partner_code": "<string>",
"referral_source": "<string>",
"consent_directory": True
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
company_name: '<string>',
website: '<string>',
work_email: 'jsmith@example.com',
founder_name: '<string>',
hq_country: '<string>',
product_summary: '<string>',
consent_terms: true,
founded_year: 1991,
team_size: '<string>',
demo_url: '<string>',
video_url: '<string>',
deck_url: '<string>',
current_stack: '<string>',
expected_minutes_monthly: 1,
languages: ['<string>'],
geographies: ['<string>'],
raised_band: '<string>',
investors: '<string>',
partner_code: '<string>',
referral_source: '<string>',
consent_directory: true
})
};
fetch('https://api.pyai.com/v1/startup-program/applications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pyai.com/v1/startup-program/applications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'company_name' => '<string>',
'website' => '<string>',
'work_email' => 'jsmith@example.com',
'founder_name' => '<string>',
'hq_country' => '<string>',
'product_summary' => '<string>',
'consent_terms' => true,
'founded_year' => 1991,
'team_size' => '<string>',
'demo_url' => '<string>',
'video_url' => '<string>',
'deck_url' => '<string>',
'current_stack' => '<string>',
'expected_minutes_monthly' => 1,
'languages' => [
'<string>'
],
'geographies' => [
'<string>'
],
'raised_band' => '<string>',
'investors' => '<string>',
'partner_code' => '<string>',
'referral_source' => '<string>',
'consent_directory' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pyai.com/v1/startup-program/applications"
payload := strings.NewReader("{\n \"company_name\": \"<string>\",\n \"website\": \"<string>\",\n \"work_email\": \"jsmith@example.com\",\n \"founder_name\": \"<string>\",\n \"hq_country\": \"<string>\",\n \"product_summary\": \"<string>\",\n \"consent_terms\": true,\n \"founded_year\": 1991,\n \"team_size\": \"<string>\",\n \"demo_url\": \"<string>\",\n \"video_url\": \"<string>\",\n \"deck_url\": \"<string>\",\n \"current_stack\": \"<string>\",\n \"expected_minutes_monthly\": 1,\n \"languages\": [\n \"<string>\"\n ],\n \"geographies\": [\n \"<string>\"\n ],\n \"raised_band\": \"<string>\",\n \"investors\": \"<string>\",\n \"partner_code\": \"<string>\",\n \"referral_source\": \"<string>\",\n \"consent_directory\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pyai.com/v1/startup-program/applications")
.header("Content-Type", "application/json")
.body("{\n \"company_name\": \"<string>\",\n \"website\": \"<string>\",\n \"work_email\": \"jsmith@example.com\",\n \"founder_name\": \"<string>\",\n \"hq_country\": \"<string>\",\n \"product_summary\": \"<string>\",\n \"consent_terms\": true,\n \"founded_year\": 1991,\n \"team_size\": \"<string>\",\n \"demo_url\": \"<string>\",\n \"video_url\": \"<string>\",\n \"deck_url\": \"<string>\",\n \"current_stack\": \"<string>\",\n \"expected_minutes_monthly\": 1,\n \"languages\": [\n \"<string>\"\n ],\n \"geographies\": [\n \"<string>\"\n ],\n \"raised_band\": \"<string>\",\n \"investors\": \"<string>\",\n \"partner_code\": \"<string>\",\n \"referral_source\": \"<string>\",\n \"consent_directory\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pyai.com/v1/startup-program/applications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"company_name\": \"<string>\",\n \"website\": \"<string>\",\n \"work_email\": \"jsmith@example.com\",\n \"founder_name\": \"<string>\",\n \"hq_country\": \"<string>\",\n \"product_summary\": \"<string>\",\n \"consent_terms\": true,\n \"founded_year\": 1991,\n \"team_size\": \"<string>\",\n \"demo_url\": \"<string>\",\n \"video_url\": \"<string>\",\n \"deck_url\": \"<string>\",\n \"current_stack\": \"<string>\",\n \"expected_minutes_monthly\": 1,\n \"languages\": [\n \"<string>\"\n ],\n \"geographies\": [\n \"<string>\"\n ],\n \"raised_band\": \"<string>\",\n \"investors\": \"<string>\",\n \"partner_code\": \"<string>\",\n \"referral_source\": \"<string>\",\n \"consent_directory\": true\n}"
response = http.request(request)
puts response.read_body{
"ok": true,
"application_id": "<string>",
"message": "<string>"
}{
"title": "<string>",
"status": 123,
"type": "<string>",
"detail": "<string>",
"request_id": "<string>"
}{
"error": {
"message": "<string>",
"type": "<string>",
"code": "invalid_request_error",
"param": "<string>"
}
}Body
120Company website. https:// is assumed if omitted.
300The award binds to the PyAI account that verifies this address.
20012080business_agents, vertical, consumer, infrastructure, other 40 - 2000idea, prototype, private_beta, live, scaling When voice goes live on PyAI.
live, lt_3mo, lt_6mo, gt_6mo bootstrapped, angel, accelerator, pre_seed, seed, series_a, other Must be true. Acceptance of https://pyai.com/startups/terms.
x >= 199040Optional. A demo, a video, or a deck speeds review.
500500500300x >= 0Also accepts a comma-separated string.
1260Also accepts a comma-separated string.
126060500Optional VC or accelerator partner code. Partner applications are reviewed within two business days.
64200Optional suggestion. PyAI selects the tier.
launch, growth, scale Allow PyAI to list the company in the program directory if selected.