# Asset Object

A reusable object representing a single asset in a market pair. Used in the [`markets`](/for-partners/endpoints/dex-markets.md) endpoint for `baseAssets` and `quoteAssets` arrays.

## Schema

| Field       | Type   | Required                           | Description                                        |
| ----------- | ------ | ---------------------------------- | -------------------------------------------------- |
| `symbol`    | string | yes                                | Asset ticker symbol e.g. `"BTC"`, `"ETH"`, `"USD"` |
| `assetType` | string | yes (baseAssets), no (quoteAssets) | Asset category. See values below.                  |

## `assetType` Values

| Value        | Description                           |
| ------------ | ------------------------------------- |
| `crypto`     | Cryptocurrency                        |
| `forex`      | Foreign exchange currency             |
| `commodity`  | Physical commodity e.g. gold, oil     |
| `equity`     | Stock or equity                       |
| `index`      | Market index                          |
| `premarket`  | Pre-market or prediction market asset |
| `dominance`  | Crypto dominance market e.g. BTC.D    |
| `volatility` | Volatility index                      |

## Example

```json
{ "symbol": "BTC", "assetType": "crypto" }
```

```json
{ "symbol": "USD", "assetType": "forex" }
```

## Notes

* `baseAssets` and `quoteAssets` are arrays to support multi-asset or basket markets. For standard pairs, each array contains a single object.
* `assetType` is required on `baseAssets` and optional on `quoteAssets` (quote is almost always a USD stablecoin).


---

# 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://docs.dexpal.io/for-partners/schemas/asset-object.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.
