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

# 接口介绍 | API Introduction

> Insightful API 核心接口参考规范

## 🔐 认证方式 | Authentication

所有 API 端点均需要通过 API Key 进行身份验证。请在请求头中包含 `X-API-Key`。

<Tabs>
  <Tab title="Dev 环境">
    ```bash theme={null}
    curl -H "X-API-Key: YOUR_SECRET_KEY" https://api.dev.akria.net/api/v1/signals
    ```

    <Info>
      当前 Core API V1 部署在 Dev 环境。
    </Info>
  </Tab>

  <Tab title="生产环境">
    ```bash theme={null}
    curl -H "X-API-Key: YOUR_SECRET_KEY" https://api.akria.net/api/v1/signals
    ```

    <Warning>
      生产环境待部署，当前请使用 Dev 环境。
    </Warning>
  </Tab>
</Tabs>

## 🚀 核心端点预览 | Core Endpoints

目前系统提供以下核心能力：

* **信号捕获 (Signals Capture)**: 接收来自探测器的原始链上或社交情报。
* **信号获取 (Signals Retrieval)**: 供前端或通知机器人查询已审计的信号。
* **状态回调 (Status Webhook)**: 处理信号的推送确认与反馈。

<Tip>
  您可以在左侧导航栏中找到各个端点的详细请求参数、响应结构及交互式调试工具。
</Tip>
