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

# Asset info

> Ticker, logo, description, and socials for a token

Returns enriched metadata for a single asset (same family of fields as `info` inside `LiquidityPoolInfo`).

**Auth:** Public

## GET /v1/asset-info

### Query parameters

<ParamField query="asset" type="string" required>
  Cardano asset id `{policyId}.{hexName}`.
</ParamField>

## Response fields

<ResponseField name="asset" type="string">
  Full asset id.
</ResponseField>

<ResponseField name="ticker" type="string">
  Short ticker.
</ResponseField>

<ResponseField name="logoCID" type="string">
  IPFS content id for the logo.
</ResponseField>

<ResponseField name="logoCid" type="string">
  Duplicate field for compatibility (same logo reference).
</ResponseField>

<ResponseField name="description" type="string">
  Free-text description.
</ResponseField>

<ResponseField name="launchType" type="integer">
  Launch type identifier.
</ResponseField>

<ResponseField name="poolAuthorPkh" type="object">
  Author address / key material as structured object.
</ResponseField>

<ResponseField name="poolAuthor" type="string">
  Bech32 or raw address string for the creator.
</ResponseField>

<ResponseField name="socials" type="object">
  `twitter`, `telegram`, `discord`, `website` (nullable strings).
</ResponseField>

<ResponseField name="outputId" type="string | null">
  Metadata UTxO reference if present.
</ResponseField>

<ResponseField name="assetType" type="string">
  Category (e.g. Meme, AI).
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -sS "https://analytics.snek.fun/v1/asset-info?asset=fbd4d3c334063ac19566f6ba39b6ec707ea91fa81d0c09201575c10b.44415645"
  ```
</RequestExample>
