# Download an asset

`GET /api/v1/test-results/{testResultId}/assets/{assetId}`

Streams the raw binary content of a specific asset.

**Path parameters**

| Name           | Type   | Required | Description      |
| -------------- | ------ | -------- | ---------------- |
| `testResultId` | string | yes      | Test result UUID |
| `assetId`      | string | yes      | Asset UUID       |

**Header parameters**

| Name                | Type    | Required | Description                                                                                                               |
| ------------------- | ------- | -------- | ------------------------------------------------------------------------------------------------------------------------- |
| `X-Organization-Id` | integer | no       | Selects which of the caller's organizations the request acts on. When omitted, the caller's default organization is used. |

**Example request**

```
curl https://api.mobilenexthq.com/api/v1/test-results/{testResultId}/assets/{assetId} \

  -X GET \

  -H 'Authorization: Bearer mob_...'
```

**Responses**

**200** — Raw asset content

**401** — Missing or invalid Bearer token

```
{

  "error": {

    "code": "string",

    "message": "string"

  }

}
```

**404** — Resource not found

```
{

  "error": {

    "code": "string",

    "message": "string"

  }

}
```
