Skip to main content
POST
/
v2
/
tba
/
create
Typescript (SDK)
import { RaijinLabsLucidAi } from "raijin-labs-lucid-ai";

const raijinLabsLucidAi = new RaijinLabsLucidAi();

async function run() {
  const result = await raijinLabsLucidAi.tba.lucidCreateTba({
    chainId: "<id>",
    tokenContract: "<value>",
    tokenId: "<id>",
  });

  console.log(result);
}

run();
{
  "success": true,
  "tba": {
    "address": "<string>",
    "chainId": "<string>",
    "tokenContract": "<string>",
    "tokenId": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lucid.foundation/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Lucid API key (lk_live_... or lk_test_...)

Body

application/json
chainId
string
required
tokenContract
string
required

NFT contract address

tokenId
string
required

NFT token ID

Response

TBA created

success
boolean
required
tba
object