# GET /mj/task/{id}/image-seed

**Method**: `GET`
**Endpoint**: `/mj/task/{id}/image-seed`

## Request Parameters

### Path Parameters

```text
id
string
Task ID
Required
```

### Header Parameters

```text
Authorization
string
Optional
Default Value:
Bearer {{YOUR_API_KEY}}
```

## Example Request

### Shell

```bash
curl --location --request GET '/mj/task//image-seed' \
--header 'Authorization: Bearer {{YOUR_API_KEY}}'
```

## Response

### 🟢 200 OK

**Content Type**: `application/json`

#### Response Schema

```text
code
integer
<int32>
Optional
description
string
Optional
result
string
Optional
```

#### Example

```json
{
    "code": 0,
    "description": "string",
    "result": "string"
}
```

### 🟠 401 Unauthorized

### 🟠 403 Forbidden

### 🟠 404 Not Found
