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

# SP 查询素材详情

> 查询单个 Seedance SP 素材的处理状态与详情。

查询单个 Seedance SP 经济版素材的处理状态与详情。

## 请求参数

| 字段         | 类型     | 必填 | 说明          |
| ---------- | ------ | -- | ----------- |
| `asset_id` | string | 是  | 上传素材时返回的 ID |

## 请求示例

```bash theme={null}
curl -X POST 'https://www.jimmyai.cn/api/open-api/v1/seedance/sp/assets/detail' \
  -H 'Authorization: Bearer sk_xxx' \
  -H 'Content-Type: application/json' \
  -d '{
    "asset_id": "asset_abc123"
  }'
```

## 响应字段

| 字段            | 说明                 |
| ------------- | ------------------ |
| `asset_id`    | 素材 ID              |
| `official_id` | 上游官方 ID            |
| `status`      | 处理状态，`Active` 表示可用 |
| `name`        | 素材名称               |
| `image_url`   | 图片素材 URL（如适用）      |
| `created_at`  | 创建时间               |

## 状态值

| 状态           | 说明                          |
| ------------ | --------------------------- |
| `Processing` | 处理中                         |
| `Active`     | 可用，可引用 `asset://{asset_id}` |
| `Failed`     | 处理失败                        |


## OpenAPI

````yaml POST /api/open-api/v1/seedance/sp/assets/detail
openapi: 3.1.0
info:
  title: Jimmy AI OpenAPI
  description: API for Jimmy AI video generation services
  version: 1.0.0
servers:
  - url: https://www.jimmyai.cn
    description: Production server
security:
  - bearerAuth: []
paths:
  /api/open-api/v1/seedance/sp/assets/detail:
    post:
      summary: SP Query Asset Detail
      description: Query processing status and metadata for a single Seedance SP asset.
      operationId: querySeedanceSpAssetDetail
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SeedanceSpAssetDetailRequest'
      responses:
        '200':
          description: Queried successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SeedanceSpAssetDetailResponse'
components:
  schemas:
    SeedanceSpAssetDetailRequest:
      type: object
      required:
        - asset_id
      properties:
        asset_id:
          type: string
          description: Asset ID
    SeedanceSpAssetDetailResponse:
      type: object
      properties:
        code:
          type: integer
          example: 0
        msg:
          type: string
          example: ok
        data:
          type: object
          properties:
            asset_id:
              type: string
            official_id:
              type: string
            status:
              type: string
              description: Processing / Active / Failed
            name:
              type: string
            image_url:
              type: string
            created_at:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````