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

# Changelog

> API updates and data coverage changes

<Update label="March 19, 2026" description="Token Issuance Type" tags={["API"]}>
  Added `issuance_type` field to differentiate **natively issued** tokens from **bridged** tokens. The classification is inherited from the token's platform.

  **Allowed values:** `NATIVE`, `BRIDGE`

  **Where it appears:**

  * On each token object (top-level `issuance_type` field)
  * Inside the nested `platform` object on each token
  * On assets: `native_token_count`, `bridge_token_count`, `has_native_tokens`, `has_bridge_tokens`

  **Filtering example — get only bridged tokens:**

  ```bash theme={null}
  curl -G 'https://api.rwa.xyz/v4/tokens' \
    -H "Authorization: Bearer $RWA_API_KEY" \
    --data-urlencode 'query={
      "filter": { "operator": "equals", "field": "issuance_type", "value": "BRIDGE" }
    }'
  ```

  See the [Tokens Schema](/schemas/tokens) and [Assets Schema](/schemas/assets) for the full field reference.
</Update>

<Update label="March 16, 2026" description="Asset Classification Framework" tags={["Data"]}>
  Introduced a new [asset classification framework](/frameworks/asset-classes) to provide more granular coverage of credit and fund strategies. [Read the full announcement](https://rwa.xyz/blog/introducing-our-new-asset-classification-framework).

  **New asset classes:**

  * Venture Capital
  * Asset-Backed Credit
  * Diversified Credit
  * Specialty Finance

  **Removed asset classes:**

  * "Credit" and "Institutional Funds" have been removed. Assets previously under these classes have been re-classified into the new classes above.

  **Renamed asset classes:**

  * "Corporate Bonds" → **Corporate Credit**
  * "Public Stocks" → **Stocks**
  * "Actively-Managed Strategies" → **Active Strategies**

  **New pages:**

  * [Credit](https://app.rwa.xyz/credit)
  * [Private Equity & Venture Capital](https://app.rwa.xyz/private-equity-venture-capital)
  * [Active Strategies](https://app.rwa.xyz/active-strategies)

  **Removed pages:**

  * `app.rwa.xyz/private-credit` and `app.rwa.xyz/institutional-funds` have been removed. Their data is now covered under the new pages above.
</Update>
