> ## Documentation Index
> Fetch the complete documentation index at: https://docs.istari.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Real-time organization intelligence on 20M active and verified organizations via the GOI dashboard, API, or GOI MCP.

<div className="mx-auto max-w-6xl px-6 pt-10">
  <div className="rounded-2xl px-8 py-14 shadow-[0_10px_34px_rgba(24,52,55,0.35)] sm:px-12" style={{ background: "radial-gradient(150% 130% at 78% 15%, rgba(45,189,191,0.18) 0%, rgba(45,189,191,0) 78%), #183a3e" }}>
    <p className="text-sm font-medium uppercase tracking-widest text-white/70">ISTARI.AI</p>

    <h1 noAnchor className="mt-3 text-4xl font-normal tracking-tight text-white sm:text-5xl" style={{ fontFamily: "Georgia, 'Times New Roman', serif" }}>
      Organization intelligence,<br className="hidden sm:block" /> built on the live web.
    </h1>

    <p className="mt-5 max-w-2xl text-lg text-white/85">
      Search, filter, and analyze <strong className="text-white">20 million active and verified organizations</strong> across
      232 countries through the GOI dashboard, an API, or any MCP-compatible AI agent.
    </p>

    <div className="mt-8 flex flex-wrap gap-3">
      <a href="/docs/quickstart" className="rounded-lg bg-white px-5 py-2.5 text-sm font-semibold no-underline transition hover:bg-white/90" style={{ color: "#176b73" }}>Get started</a>
      <a href="https://index.istari.ai/api-keys" className="rounded-lg border border-white/40 px-5 py-2.5 text-sm font-semibold text-white no-underline transition hover:border-white hover:bg-white/10">Get an API key</a>
    </div>
  </div>
</div>

<div className="mx-auto max-w-6xl px-6 py-12">
  <h2 className="text-2xl font-normal mt-10 mb-4 text-gray-900 dark:text-white" style={{ fontFamily: "Georgia, 'Times New Roman', serif" }}>Quickstart</h2>

  <Card title="Make your first call in minutes" icon="rocket" href="/docs/quickstart" horizontal>
    Sign in at [index.istari.ai](https://index.istari.ai), generate an API key, and run your first GOI search.
  </Card>

  <h2 className="text-2xl font-normal mt-10 mb-4 text-gray-900 dark:text-white" style={{ fontFamily: "Georgia, 'Times New Roman', serif" }}>Try the API</h2>

  A single `POST /v2/search` call discovers organizations by keyword, natural-language description, similarity to a known domain, or structured filters.

  <CodeGroup>
    ```bash cURL theme={null}
    curl -X POST https://api.istari.ai/v2/search \
      -H "x-api-key: $ISTARI_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "describe": "B2B organizations that manufacture industrial heat pumps",
        "filters": { "country": ["Germany"] },
        "columns": ["domain", "name", "country"],
        "size": 50
      }'
    ```

    ```python Python theme={null}
    import os, requests

    resp = requests.post(
        "https://api.istari.ai/v2/search",
        headers={"x-api-key": os.environ["ISTARI_API_KEY"]},
        json={
            "describe": "B2B organizations that manufacture industrial heat pumps",
            "filters": {"country": ["Germany"]},
            "columns": ["domain", "name", "country"],
            "size": 50,
        },
    )

    for row in resp.json()["data"]:
        print(row["domain"], "-", row["name"])
    ```
  </CodeGroup>

  <h2 className="text-2xl font-normal mt-10 mb-4 text-gray-900 dark:text-white" style={{ fontFamily: "Georgia, 'Times New Roman', serif" }}>Explore the docs</h2>

  <CardGroup cols={3}>
    <Card title="GOI Home page" icon="layout-dashboard" href="/goi/goi_start_page">
      Search, filter, save, and export organizations in the no-code Global Organization Index.
    </Card>

    <Card title="API" icon="terminal" href="/api/api_start_page">
      Programmatic search, bulk lookup, and aggregations over GOI via the API.
    </Card>

    <Card title="GOI MCP" icon="plug" href="/mcp/overview">
      Expose GOI search and analytics to Claude, Cursor, and other MCP clients. Beta access available while we publish to connector stores.
    </Card>

    <Card title="Cookbooks" icon="book-open" href="/cookbooks/overview">
      Ready-made GOI workflows with fixed query templates for suppliers, lookalikes, market sizing, and more.
    </Card>

    <Card title="Research Data" icon="flask-conical" href="/research-data/research_data_start_page">
      Peer-reviewed indicators on AI adoption, sustainability, innovation, and more.
    </Card>

    <Card title="Country Coverage" icon="globe" href="/tools/country-coverage">
      See how many verified organizations GOI holds per country and type.
    </Card>
  </CardGroup>
</div>
