Skip to main content
Jupiter is built for AI agents from the ground up. Most APIs are RPC-less, requires no upfront credentials, and returns clean JSON that LLMs can parse and act on immediately.

Why Jupiter for AI

No RPC Required

All blockchain interactions handled server-side. Agents don’t need Solana RPC nodes.

No API Key Required

Start building immediately. API keys are optional (for higher rate limits via Portal).

Simple REST APIs

Clean JSON request/response. Prefers APIs, not SDKs, better maintainability for AI agents.

AI Resources

Skills

Pre-built agent skills and Jupiter’s open-source skill repository for AI frameworks.

llms.txt

Structured documentation index optimized for LLM consumption — both summary and full-context versions.

MCP

Model Context Protocol integration — query Jupiter docs and APIs directly from your AI editor.

Ecosystem

Jupiter’s ecosystem of tools and resources for AI agents.

Quick Start for AI Agents

An AI agent can execute a token swap in four API calls, fastest and easiest in the industry:
# 1. Search for a token
curl "https://lite-api.jup.ag/tokens/v2/search?query=SOL"

# 2. Get a price
curl "https://lite-api.jup.ag/price/v3?ids=So11111111111111111111111111111111111111112"

# 3. Get a swap quote
curl "https://lite-api.jup.ag/ultra/v1/order?inputMint=So11111111111111111111111111111111111111112&outputMint=EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v&amount=10000000&taker=yourWalletAddress"

# 4. Sign and execute swap quote
curl "https://lite-api.jup.ag/ultra/v1/execute" \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"signedTransaction": "signedTransaction", "requestId": "requestId"}'

Full Quickstart

Complete walkthrough combining Ultra Swap, Tokens V2, and Price V3 APIs with code examples.