GET
/
v1
/
teams
/
{teamId}
/
assets
/
{assetId}
/
thumbnail-url
TypeScript client
import { TxAgentKitClient } from '@tx-agent-kit/sdk'

const client = new TxAgentKitClient({
  token: process.env.TX_AGENT_KIT_TOKEN
})

const response = await client.assets.getAssetThumbnailSignedUrl({
  teamId: process.env.TX_AGENT_KIT_TEAM_ID ?? "teamId",
  assetId: process.env.TX_AGENT_KIT_ASSET_ID ?? "assetId",
})
{
  "url": "<string>"
}

Path Parameters

teamId
string
required
assetId
string
required

Response

Success

url
string | null
required