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

# Finkkle One: Developer Platform for Search and AI

> Finkkle One is the developer platform for building on Finkkle Search, Spaces, and the full AI stack — with Studio, API management, model access, and usage dashboards.

<Warning>
  **Finkkle One is currently undergoing a major overhaul.** All Finkkle One services, including Studio, Dufus, API access, and dashboards, are down or disabled until further notice. Finkkle Trends remains accessible. More details soon.
</Warning>

Finkkle One is the developer platform at [one.finkkle.com](https://one.finkkle.com). It gives you programmatic access to Finkkle Search and Spaces, a full-featured Studio environment for building with AI, API key management, and detailed usage dashboards.

## What's in Finkkle One

<CardGroup cols={2}>
  <Card title="Studio" icon="window-restore">
    AI-assisted development environment available in your browser, IDE extension, CLI, and GitHub. Dufus works alongside you in every environment.
  </Card>

  <Card title="API Management" icon="key">
    Generate and manage API keys, monitor rate limits, and view the versioned Search API schema from your dashboard.
  </Card>

  <Card title="Models" icon="microchip">
    Access GPT-5.5, GPT-5.4, GPT-5.4-mini, and the Audio model for voice synthesis — plus the Arctic family in Spaces.
  </Card>

  <Card title="Usage Dashboard" icon="chart-line">
    Track total tokens, API requests, successful responses, and aggregate platform counters across your account.
  </Card>

  <Card title="IIGNO Agent Builder" icon="robot">
    *(Coming soon)* Create, test, and host specialized autonomous agent profiles on secure cloud sandboxes.
  </Card>

  <Card title="SI1 Audio Suite" icon="microphone">
    *(Coming soon)* Voice generation, text-to-speech modeling, and multi-lingual transcription in real time.
  </Card>

  <Card title="Automation Studio" icon="bolt">
    *(Coming soon)* Design full-pipeline automation flows, task scheduling, and event triggers bound to cloud systems.
  </Card>

  <Card title="CLI Toolkit" icon="rectangle-terminal">
    *(Coming soon)* Run developer utilities, terminal packages, and automated deployment integrations directly from your terminal.
  </Card>

  <Card title="Express Codex" icon="rocket">
    *(Coming soon)* Spin up and test high-performance routing protocols, API servers, and lightweight sandbox scripts in seconds.
  </Card>
</CardGroup>

## Quick start

<Steps>
  <Step title="Create an account">
    Sign up at [my.finkkle.com/signup](https://my.finkkle.com/signup). Sign in to Finkkle One at [one.finkkle.com](https://one.finkkle.com).
  </Step>

  <Step title="Generate an API key">
    In the Finkkle One dashboard, click **Create API key**. Give your key a descriptive name (e.g., `production-search`, `dev-test`). Copy it immediately — it is shown only once.

    Store keys server-side only. Never expose them in client-side code or public repositories.
  </Step>

  <Step title="Send a health check">
    Verify your key works:

    ```bash theme={null}
    curl https://api.finkkle.com/api/v1/health \
      -H "Authorization: Bearer $FINKKLE_API_KEY"
    ```

    A `200 OK` response confirms your key is valid.
  </Step>

  <Step title="Make your first search call">
    ```bash theme={null}
    curl "https://api.finkkle.com/api/v1/search?q=latest+AI+news&limit=5" \
      -H "Authorization: Bearer $FINKKLE_API_KEY"
    ```

    See the [Search API reference](/one/search-api) for all parameters and response fields.
  </Step>
</Steps>

## Octanami

Finkkle One is part of the **Octanami** product family. Octanami is the parent organization behind Finkkle and Dufus. When you see references to Octanami in API responses or documentation, it refers to the broader platform that Finkkle runs on.

<Note>
  Finkkle One is actively evolving. Some features — including IIGNO Agent Builder, SI1 Audio Suite, Automation Studio, CLI Toolkit, and Express Codex — are listed as "Coming Soon" on the dashboard. Use the **Notify Me** button to get notified when they launch.
</Note>
