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

# Digital Asset Standard (DAS)

> Complete API reference for Helius DAS (Digital Asset Standard) endpoints. Query NFTs, compressed NFTs, fungible tokens, ownership, and metadata on Solana.

## What is the DAS API?

The Digital Asset Standard (DAS) API is a unified interface for querying all Solana digital assets — NFTs, compressed NFTs (cNFTs), fungible tokens, and Token-2022 assets. DAS returns parsed metadata, ownership, collection info, and transaction history in a single call, eliminating the need to manually decode raw account data. See the [DAS overview](/das-api) for guides and tutorials.

<CardGroup cols={2}>
  <Card title="getAsset" href="/api-reference/das/getasset">
    Retrieves information about a specific asset by its ID.
  </Card>

  <Card title="getAssetBatch" href="/api-reference/das/getassetbatch">
    Retrieves information about multiple assets in a single request.
  </Card>

  <Card title="getAssetProof" href="/api-reference/das/getassetproof">
    Fetches a proof for a specific compressed asset.
  </Card>

  <Card title="getAssetProofBatch" href="/api-reference/das/getassetproofbatch">
    Fetches proofs for multiple compressed assets in a single request.
  </Card>

  <Card title="getAssetsByAuthority" href="/api-reference/das/getassetsbyauthority">
    Returns assets by the specified authority address.
  </Card>

  <Card title="getAssetsByCreator" href="/api-reference/das/getassetsbycreator">
    Retrieves assets created by a specific creator address.
  </Card>

  <Card title="getAssetsByGroup" href="/api-reference/das/getassetsbygroup">
    Returns assets that belong to a specific group.
  </Card>

  <Card title="getAssetsByOwner" href="/api-reference/das/getassetsbyowner">
    Lists all assets owned by a specific address.
  </Card>

  <Card title="getNftEditions" href="/api-reference/das/getnfteditions">
    Retrieves information about NFT editions.
  </Card>

  <Card title="getSignaturesForAsset" href="/api-reference/das/getsignaturesforasset">
    Returns transaction signatures involving a specific asset.
  </Card>

  <Card title="getTokenAccounts" href="/api-reference/das/gettokenaccounts">
    Retrieves token accounts based on specified parameters.
  </Card>

  <Card title="searchAssets" href="/api-reference/das/searchassets">
    Searches for assets based on various criteria.
  </Card>
</CardGroup>
