stonkbuilderCOMMUNITY JupiterDeveloper APIs

Govern & build tutorial

Build on Jupiter's APIs

The APIs behind jup.ag are open to builders: Swap, Tokens, Price, Lend, limit orders and DCA, Prediction and Perps, with one API key from the Developer Platform.[1]

  • 4 min read
  • Intermediate
  • Checked 26 Sep 2026
Best for
Developers building wallets, trading tools, payments or AI agents on Solana.
You'll need
  • An API key from developers.jup.ag/portal
  • Any HTTP client, such as curl
Cost
Free to start, with no upfront payment
Open the developer docs
Worked example · illustrative numbers

One request, real fields

$ curl "https://api.jup.ag/tokens/v2/search?query=JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN" \
    -H "x-api-key: $JUP_API_KEY"

[{
  "symbol": "JUP",
  "isVerified": true,
  "organicScore": 99.31,
  "holderCount": 838864,
  "usdPrice": 0.3464
}]
  • Swap
  • Tokens
  • Price
  • Lend
  • Limit orders & DCA
  • Prediction
  • Perps
A Tokens API search for JUP returns its verification status, organic score, holder count and price as JSON. The values shown were read on 26 Sep 2026.

Step by step

  1. Get a key

    Create an API key on the Developer Platform; it unlocks every Jupiter API.

  2. Make a first call

    Search a token on the Tokens API with your key in the x-api-key header.

  3. Pick your product

    Swap for trades, Price for USD prices, Lend for deposits and borrowing, Trigger for limit orders and DCA.

  4. Ship and monitor

    Use the platform's logs and usage dashboards as you go live.

Open the developer docs

Good to know

  • One key from the Developer Platform unlocks every Jupiter API, and you can start free.[1]
  • The Tokens API returns metadata, verification status, organic score and trading stats for any Solana token.[2]
  • Swap offers managed execution (/order) or raw instructions to build custom transactions (/build).[1]

Sources

  1. Jupiter Developer Docs developers.jup.ag/docs/get-started
  2. Tokens API developers.jup.ag/docs/tokens

Checked against Jupiter's documentation on 26 Sep 2026. Products change; the linked pages are the source of truth.