> ## 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.

# 자산 목록 (ListAssets)

> ListAssets — POST /api/v3/seedance

## 소개

조건에 따라 자산 목록을 조회합니다. `PageNumber` / `PageSize` / `Filter.GroupType`은 필수입니다.

## 인증

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

## 요청 매개변수

<ParamField body="Filter.GroupIds" type="array">
  자산 그룹 ID로 필터링
</ParamField>

<ParamField body="Filter.GroupType" type="string" required>
  `AIGC` / `LivenessFace`
</ParamField>

<ParamField body="Filter.Statuses" type="array">
  `Active` / `Processing` / `Failed`
</ParamField>

<ParamField body="Filter.Name" type="string">
  이름으로 퍼지 검색
</ParamField>

<ParamField body="PageNumber" type="integer" required>
  페이지 번호, 1부터 시작
</ParamField>

<ParamField body="PageSize" type="integer" required>
  페이지당 수량, 최대 100
</ParamField>

<ParamField body="SortBy" type="string" default="CreateTime">
  `CreateTime` / `UpdateTime` / `GroupId`
</ParamField>

<ParamField body="SortOrder" type="string" default="Desc">
  `Asc` / `Desc`
</ParamField>

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

<Note>
  `SortBy` / `SortOrder`(및 기타 나열되지 않은 필드)는 그대로 전달됩니다. `Status`가 `Failed`인 Item에는 추가로 `Error: {Code, Message}`가 포함됩니다.
</Note>

## 요청 예제

```bash theme={null}
curl -X POST "https://api.gravitex.ai/api/v3/seedance?Action=ListAssets&Version=2024-01-01" \
  -H "Authorization: Bearer sk-your_token_key" \
  -H "Content-Type: application/json" \
  -d '{
    "Filter": {"GroupIds": ["group-20260710-abcde"], "Statuses": ["Active"]},
    "PageNumber": 1,
    "PageSize": 10
  }'
```

## 응답 예제

```json theme={null}
{
  "ResponseMetadata": {"Action": "ListAssets"},
  "Result": {
    "Items": [
      {
        "Id": "asset-20260710-xyz",
        "Name": "portrait.jpg",
        "URL": "https://...(12小时有效签名URL)",
        "GroupId": "group-20260710-abcde",
        "AssetType": "Image",
        "Status": "Active",
        "Moderation": {"Strategy": "Default"},
        "ProjectName": "default",
        "CreateTime": "2026-07-10T00:00:00Z",
        "UpdateTime": "2026-07-10T00:00:00Z"
      }
    ],
    "TotalCount": 1,
    "PageNumber": 1,
    "PageSize": 10
  }
}
```
