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

# API 레퍼런스

> Seahorse Cloud API Gateway — 인터랙티브 레퍼런스. Token 인증으로 Try it 가능

Seahorse Cloud 의 **REST API 레퍼런스** 입니다. 모든 엔드포인트는 인터랙티브 playground 가 제공되며, 우측 패널에서 직접 호출 테스트할 수 있습니다.

## API 카테고리

<CardGroup cols={2}>
  <Card title="스토리지 (Storage)" href="/api-reference/storage/get-object" icon="hard-drive">
    S3 호환 Object Storage — 파일 업로드·다운로드·삭제
  </Card>

  <Card title="테이블 (Table)" href="/api-reference/table-v2/insert-data" icon="table">
    벡터 데이터베이스 Table API — Insert·Search·Scan·Update
  </Card>
</CardGroup>

## 인증

모든 API 는 **Bearer Token** 또는 **API Key** 인증을 요구합니다. 베이스 URL 은 리소스(테이블·스토리지) 별 UUID 가 포함된 서브도메인 형태입니다.

```bash theme={null}
# Bearer Token (Keycloak JWT)
curl -H "Authorization: Bearer $TOKEN" \
  https://{uuid}.api.seahorse.dnotitia.ai/v2/data/scan ...

# API Key
curl -H "X-API-Key: $API_KEY" \
  https://{uuid}.api.seahorse.dnotitia.ai/v2/data/scan ...
```

`{uuid}` 는 Console 의 테이블·스토리지 상세 페이지 **API URL** 항목에서 확인할 수 있습니다.

API Key 발급: [Console → API Keys](/console/management/api-keys)

## Rate Limit · 비용

API 호출은 [Billing](/billing) 에 따라 과금됩니다 (Storage GB·Inference 토큰·DB RU/WU). [요금 안내](https://seahorse.dnotitia.ai/ko/pricing/) 에서 자세한 단가 확인.
