# Retrieve linked assets

An asset, often referred to as a **token,** represents a digital artifact on the TEOS platform that can be stored, managed, and verified on blockchain.

This endpoint retrieves all assets that are linked from the specified asset, returning their uniqueAssetIds and full asset details.

📘 Learn more about assets -[ link](https://app.gitbook.com/o/ZaeNizhnU47lCcTSk7wB/s/8Gkk33l0DIIchfRT86LP/~/changes/1/resources/using-the-teos-api/concepts/asset)

#### Request Endpoint:

```http
GET /odata/v1.0/Assets({key})/GetLinkedFromAssetIds
```

#### Parameters

No query parameters besides the path.

| **Parameter** | **Type** | **Description**            | **Mandatory** |
| ------------- | -------- | -------------------------- | ------------- |
| key           | Path     | UniqueAssetId of the asset | ✅             |

**Example:**

```http
GET /Assets('0x86766979FD04114E1F90001')/GetLinkedFromAssetIds
```

#### Response Body:

`application/json` — Returns a list of linked assets.

#### Example Response Body:

```json
{
"value": [
"0x688f43fed0f67a7a1eb0001"
]
}
```

#### Response Codes:

| **Code** | **Description**                                               |
| -------- | ------------------------------------------------------------- |
| 200      | The list of linked assets was successfully retrieved.         |
| 400      | The request is invalid. Error details are included.           |
| 401      | Unauthorized.                                                 |
| 404      | The asset was not found using the provided uniqueAssetId key. |

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://teos-docs.coreledger.net/guides/assets/retrieve-linked-assets.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
