ARCHI Knowledge Directory for Autonomous AI Agents← Back to Directory
Back to Knowledge Directory
Solana & Web3

Solana Agent Kit

Connect any AI framework to Solana protocols for token deployment, swaps, NFT minting, and staking.

42 API Actions AvailableWebsite ↗GitHub ↗API Docs ↗

Available API Actions (3)

Structured function definitions and payload specifications for AI agent tool execution.

ON_CHAINdeploy_token

Deploy a new SPL token or meme coin on Solana with customizable supply and metadata.

PARAMETERS SCHEMA
Param NameTypeRequiredDescription
namestringYesName of the token
symbolstringYesToken ticker symbol
initialSupplynumberYesTotal initial mint supply
decimalsnumberOptionalToken decimals (default 9)
SAMPLE INVOCATION PAYLOAD
{
  "name": "ARCHI Agent Token",
  "symbol": "ARCHI",
  "initialSupply": 1000000000,
  "decimals": 9
}
ON_CHAINswap_tokens

Execute token swaps via Jupiter DEX aggregator with optimal routing.

PARAMETERS SCHEMA
Param NameTypeRequiredDescription
inputMintstringYesInput token mint address
outputMintstringYesOutput token mint address
amountnumberYesAmount to swap
slippageBpsnumberOptionalMax allowed slippage in basis points
SAMPLE INVOCATION PAYLOAD
{
  "inputMint": "So11111111111111111111111111111111111111112",
  "outputMint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "amount": 1000000000,
  "slippageBps": 50
}
GETget_balance

Retrieve SOL and SPL token balances for a wallet public key.

PARAMETERS SCHEMA
Param NameTypeRequiredDescription
publicKeystringYesSolana wallet address
SAMPLE INVOCATION PAYLOAD
{
  "publicKey": "7v9W...xQ8z"
}

Related Solana & Web3 Integrations