GET /v1/startups
List all AI startups and companies available on the platform.
- Method: GET
- Path: /v1/startups
- Auth: None (public endpoint)
Description
Returns a list of all AI startups/companies in OpenAI-compatible format. This endpoint provides information about model providers and their associated metadata including display names, icons, and website URLs.
No authentication is required - this is a public endpoint.
Example Request
- Python
- Node.js
- cURL
import requests
response = requests.get("https://api.naga.ac/v1/startups")
data = response.json()
print(data)
const response = await fetch("https://api.naga.ac/v1/startups");
const data = await response.json();
console.log(data);
curl https://api.naga.ac/v1/startups
Response
{
  "object": "list",
  "data": [
    {
      "id": "amazon",
      "object": "startup",
      "display_name": "Amazon",
      "icon_url": "https://cdn.naga.ac/icons/amazon.svg",
      "website_url": null,
      "created": 1759652151
    },
    {
      "id": "anthropic",
      "object": "startup",
      "display_name": "Anthropic",
      "icon_url": "https://cdn.naga.ac/icons/anthropic.svg",
      "website_url": null,
      "created": 1748186936
    },
    {
      "id": "black-forest-labs",
      "object": "startup",
      "display_name": "Black Forest Labs",
      "icon_url": "https://cdn.naga.ac/icons/black-forest-labs.svg",
      "website_url": null,
      "created": 1748188425
    },
    {
      "id": "cohere",
      "object": "startup",
      "display_name": "Cohere",
      "icon_url": "https://cdn.naga.ac/icons/cohere.svg",
      "website_url": null,
      "created": 1748188022
    }
  ]
}
Response Fields
- object(string): Always "list" for collection responses
- data(array): Array of startup objects containing:- id(string): Unique identifier for the startup (e.g., "anthropic", "amazon")
- object(string): Always "startup"
- display_name(string): Human-readable name of the company
- icon_url(string): URL to the company's icon/logo in SVG format
- website_url(string|null): Official website URL (may be null)
- created(integer): Unix timestamp of when the startup was added to the platform