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

# 단일 자산 조회 (GetAsset)

> GetAsset — POST /api/v3/seedance

## 소개

단일 자산 상세 정보를 조회합니다. `Status`가 `Failed`인 경우, `Result`에 `Error: {Code, Message}`도 포함됩니다.

## 인증

<ParamField header="Authorization" type="string" required>
  Bearer Token, 예: `Bearer sk-your_token_key`
</ParamField>

## 요청 매개변수

<ParamField body="Id" type="string" required>
  자산 ID
</ParamField>

<ParamField body="ProjectName" type="string" default="default">
  프로젝트 이름
</ParamField>

## 요청 예제

```bash theme={null}
curl -X POST "https://api.gravitex.ai/api/v3/seedance?Action=GetAsset&Version=2024-01-01" \
  -H "Authorization: Bearer sk-your_token_key" \
  -H "Content-Type: application/json" \
  -d '{"Id": "asset-20260710-xyz"}'
```

## 응답 예제

```json theme={null}
{
  "ResponseMetadata": {"Action": "GetAsset"},
  "Result": {
    "Id": "asset-20260710-xyz",
    "Name": "portrait.jpg",
    "URL": "https://...",
    "AssetType": "Image",
    "GroupId": "group-20260710-abcde",
    "Status": "Active",
    "Moderation": {"Strategy": "Default"},
    "CreateTime": "2026-07-10T00:00:00Z",
    "UpdateTime": "2026-07-10T00:00:00Z",
    "ProjectName": "default"
  }
}
```
