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

# 获取资产ID



## OpenAPI

````yaml api-reference/zh-Hans/assetLibrary/get-asset-id.json GET /v1/asset/jobs/get-asset-id
openapi: 3.1.0
info:
  title: 默认模块
  description: ''
  version: 1.0.0
servers:
  - url: https://powertokens.ai/api
    description: 生产环境
security: []
tags:
  - name: interface
paths:
  /v1/asset/jobs/get-asset-id:
    get:
      tags:
        - interface
      summary: 获取资产ID
      parameters:
        - name: task_id
          in: query
          description: ''
          required: true
          example: task_2605191608220001
          schema:
            type: string
        - name: User-Agent
          in: header
          description: 注意JAVA在不填写该值会被服务器拦截(eg:powertokensAi)
          required: false
          example: powertokensAi
          schema:
            type: string
        - name: Content-Type
          in: header
          description: ''
          required: false
          example: application/json
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties: {}
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  data:
                    type: object
                    properties:
                      asset_id:
                        type: string
                    required:
                      - asset_id
                  msg:
                    type: string
                required:
                  - code
                  - data
                  - msg
              example:
                code: 200
                data:
                  asset_id: asset-20260519160823-7gcnx
                msg: ''
          headers: {}
      deprecated: false
      security: []

````