curl
curl https://api.naga.ac/v1/startups \
-H "Authorization: Bearer $NAGA_API_KEY"import requests
url = "https://api.naga.ac/v1/startups"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.naga.ac/v1/startups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.naga.ac/v1/startups"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"object": "list",
"data": [
{
"id": "openai",
"object": "startup",
"display_name": "OpenAI",
"icon_url": "https://cdn.naga.ac/startups/openai.png",
"website_url": "https://openai.com",
"created": 1677610602
}
]
}{
"error": {
"type": "invalid_request_error",
"message": "<string>",
"code": "<string>",
"param": "<string>"
}
}Startups
List startups
Returns the organizations whose models NagaAI serves. Requires no key, and presenting one changes nothing.
GET
/
v1
/
startups
curl
curl https://api.naga.ac/v1/startups \
-H "Authorization: Bearer $NAGA_API_KEY"import requests
url = "https://api.naga.ac/v1/startups"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.naga.ac/v1/startups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.naga.ac/v1/startups"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"object": "list",
"data": [
{
"id": "openai",
"object": "startup",
"display_name": "OpenAI",
"icon_url": "https://cdn.naga.ac/startups/openai.png",
"website_url": "https://openai.com",
"created": 1677610602
}
]
}{
"error": {
"type": "invalid_request_error",
"message": "<string>",
"code": "<string>",
"param": "<string>"
}
}Response
Every organization whose models the gateway serves, one entry each.
Every startup the catalog records.
Always list.
The startups, ordered by name.
Hide child attributes
Hide child attributes
The name a model reports as owned_by.
Always startup.
The name shown to people.
Where the logo is served from.
Where the organization publishes about itself.
When the organization entered the catalog, in Unix seconds.