├── .nvmrc ├── README.md ├── api-reference ├── index.mdx ├── lend.mdx ├── lend │ ├── earn.mdx │ └── earn │ │ ├── deposit-instructions.mdx │ │ ├── deposit.mdx │ │ ├── earnings.mdx │ │ ├── mint-instructions.mdx │ │ ├── mint.mdx │ │ ├── positions.mdx │ │ ├── redeem-instructions.mdx │ │ ├── redeem.mdx │ │ ├── tokens.mdx │ │ ├── withdraw-instructions.mdx │ │ └── withdraw.mdx ├── portfolio.mdx ├── portfolio │ ├── get-platforms.mdx │ ├── get-positions.mdx │ └── get-staked-jup.mdx ├── price.mdx ├── price │ ├── v2.mdx │ ├── v2 │ │ └── price.mdx │ ├── v3.mdx │ └── v3 │ │ └── price.mdx ├── recurring.mdx ├── recurring │ ├── cancel-order.mdx │ ├── create-order.mdx │ ├── execute.mdx │ ├── get-recurring-orders.mdx │ ├── price-deposit.mdx │ └── price-withdraw.mdx ├── send.mdx ├── send │ ├── craft-clawback.mdx │ ├── craft-send.mdx │ ├── invite-history.mdx │ └── pending-invites.mdx ├── studio.mdx ├── studio │ ├── dbc-fee-create-tx.mdx │ ├── dbc-fee.mdx │ ├── dbc-pool-addresses-by-mint.mdx │ ├── dbc-pool-create-tx.mdx │ └── dbc-pool-submit.mdx ├── swap.mdx ├── swap │ ├── program-id-to-label.mdx │ ├── quote.mdx │ ├── swap-instructions.mdx │ └── swap.mdx ├── tokens.mdx ├── tokens │ ├── v1.mdx │ ├── v1 │ │ ├── all.mdx │ │ ├── mints-in-market.mdx │ │ ├── new.mdx │ │ ├── tagged.mdx │ │ ├── token-information.mdx │ │ └── tradable.mdx │ ├── v2.mdx │ └── v2 │ │ ├── category.mdx │ │ ├── get-content-cooking.mdx │ │ ├── get-content-feed.mdx │ │ ├── get-content.mdx │ │ ├── recent.mdx │ │ ├── search.mdx │ │ └── tag.mdx ├── trigger.mdx ├── trigger │ ├── cancel-order.mdx │ ├── cancel-orders.mdx │ ├── create-order.mdx │ ├── execute.mdx │ └── get-trigger-orders.mdx ├── ultra.mdx └── ultra │ ├── balances.mdx │ ├── execute.mdx │ ├── holdings.mdx │ ├── order.mdx │ ├── routers.mdx │ ├── search.mdx │ └── shield.mdx ├── blog ├── README.md ├── index.mdx ├── metis-v7.mdx ├── sample-post.mdx ├── template.mdx ├── ultra-v3.mdx └── why-ultra-v3.mdx ├── docs.json ├── docs ├── lend │ ├── borrow.mdx │ ├── earn.mdx │ ├── index.mdx │ ├── liquidation.mdx │ ├── oracles.mdx │ └── sdk.mdx ├── lock │ └── index.mdx ├── perps │ ├── custody-account.mdx │ ├── index.mdx │ ├── pool-account.mdx │ ├── position-account.mdx │ └── position-request-account.mdx ├── portfolio │ ├── index.mdx │ └── jupiter-positions.mdx ├── price │ ├── index.mdx │ └── v3.mdx ├── recurring │ ├── best-practices.mdx │ ├── cancel-order.mdx │ ├── create-order.mdx │ ├── deposit-price-order.mdx │ ├── execute-order.mdx │ ├── get-recurring-orders.mdx │ ├── index.mdx │ └── withdraw-price-order.mdx ├── routing │ ├── dex-integration.mdx │ ├── index.mdx │ ├── market-listing.mdx │ ├── rfq-integration.mdx │ └── token-listing.mdx ├── send │ ├── craft-clawback.mdx │ ├── craft-send.mdx │ ├── index.mdx │ ├── invite-code.mdx │ └── manage-invites.mdx ├── studio │ ├── claim-fee.mdx │ ├── create-token.mdx │ └── index.mdx ├── swap │ ├── add-fees-to-swap.mdx │ ├── build-swap-transaction.mdx │ ├── common-errors.mdx │ ├── get-quote.mdx │ ├── index.mdx │ ├── payments-through-swap.mdx │ ├── requote-with-lower-max-accounts.mdx │ └── send-swap-transaction.mdx ├── tokens │ ├── index.mdx │ ├── organic-score.mdx │ ├── token-tag-standard.mdx │ └── v2 │ │ ├── content.mdx │ │ └── token-information.mdx ├── trigger │ ├── best-practices.mdx │ ├── cancel-order.mdx │ ├── create-order.mdx │ ├── execute-order.mdx │ ├── get-trigger-orders.mdx │ └── index.mdx └── ultra │ ├── add-fees-to-ultra.mdx │ ├── add-payer.mdx │ ├── execute-order.mdx │ ├── fees.mdx │ ├── gasless.mdx │ ├── get-balances.mdx │ ├── get-holdings.mdx │ ├── get-order.mdx │ ├── get-shield.mdx │ ├── get-started.mdx │ ├── index.mdx │ ├── plugin-integration.mdx │ ├── rate-limit.mdx │ ├── response.mdx │ └── search-token.mdx ├── favicon.png ├── get-started ├── development-basics.mdx ├── environment-setup.mdx └── index.mdx ├── index.mdx ├── legal ├── index.mdx ├── privacy-policy.mdx ├── sdk-api-license-agreement.mdx └── terms-of-use.mdx ├── logo ├── dark.svg ├── light.svg ├── logo.png └── og.png ├── openapi-spec ├── content │ └── content.yaml ├── lend │ └── lend.yaml ├── portfolio │ └── portfolio.yaml ├── price │ ├── v2 │ │ └── price.yaml │ └── v3 │ │ └── price.yaml ├── recurring │ └── recurring.yaml ├── send │ └── send.yaml ├── studio │ └── studio.yaml ├── swap │ └── swap.yaml ├── tokens │ ├── v1 │ │ └── tokens.yaml │ └── v2 │ │ └── tokens.yaml ├── trigger │ └── trigger.yaml └── ultra │ └── ultra.yaml ├── package.json ├── portal ├── faq.mdx ├── latency.mdx ├── migrate-from-lite-api.mdx ├── payment.mdx ├── rate-limit.mdx ├── responses.mdx └── setup.mdx ├── resources ├── ai-workflow.mdx ├── audits.mdx ├── brand-kit.mdx ├── references.mdx ├── stats.mdx └── support.mdx ├── snippets ├── jupiter-plugin-integrated.jsx └── jupiter-plugin-modal-trigger.jsx ├── static ├── blog │ ├── metis-v7 │ │ └── metis-v7.png │ ├── stay-tuned.png │ ├── ultra-v3 │ │ ├── sandwiched.me-chart.png │ │ ├── swap-execution-success-rate.png │ │ ├── swap-success-count.png │ │ ├── ultra-v3.png │ │ └── vwa-diff-executed-slippage-vs-quoted.png │ └── why-ultra-v3 │ │ └── mintlifyblogbanner.jpg ├── files │ ├── audits │ │ ├── dao-offside.pdf │ │ ├── lend-liquidity-offside.pdf │ │ ├── lend-oracle-and-flashloan-offside.pdf │ │ ├── lend-ottersec-2.pdf │ │ ├── lend-ottersec.pdf │ │ ├── lend-vault-mixbytes.pdf │ │ ├── lend-vault-offside.pdf │ │ ├── lend-zenith.pdf │ │ ├── limit-v2-offside.pdf │ │ ├── lock-ottersec.pdf │ │ ├── lock-sec3.pdf │ │ ├── perpetual-offside.pdf │ │ ├── perpetual-ottersec.pdf │ │ ├── perpetual-sec3.pdf │ │ ├── swap-v3-sec3.pdf │ │ ├── swap-v6-offside-april-2024.pdf │ │ └── swap-v6-offside-october-2025.pdf │ ├── brand-kit │ │ └── jupiter-brand-kit.zip │ └── legal │ │ ├── privacy-policy-4-may-2024.docx │ │ ├── sdk-and-api-license-agreement-16-october-2025.docx │ │ └── terms-of-use-21-january-2025.docx ├── images │ ├── gasless-support-mechanism.png │ ├── integrator-gas-payer-mechanism.png │ ├── jupiterz-gasless-mechanism.png │ ├── max_accounts_lifinity_v2.png │ ├── max_accounts_shared_accounts_route.png │ ├── max_accounts_stabble.png │ ├── organic-score-diagram.png │ ├── plugin-playground.png │ └── rfq-flow.png └── logos │ ├── dex │ ├── byreal.png │ ├── fluxbeam.png │ ├── gavel.jpg │ ├── lifinity.png │ ├── meteora.svg │ ├── moonit.png │ ├── obric.jpg │ ├── orca.png │ ├── pancakeswap.png │ ├── phoenix.svg │ ├── pumpfun.png │ ├── raydium.png │ ├── sanctum.svg │ ├── saros.png │ ├── solfi.jpg │ └── stabble.png │ └── integrator │ ├── backpack.png │ ├── basedbot.png │ ├── binance.png │ ├── birdeye.png │ ├── bitget.png │ ├── bybit.jpg │ ├── coinbase.png │ ├── cryptodotcom.png │ ├── gatedotio.png │ ├── hawksight.png │ ├── kraken.jpg │ ├── kraken.png │ ├── metamask.svg │ ├── metengine.png │ ├── moonshot.png │ ├── okx.png │ ├── phantom.svg │ └── solflare.svg ├── style.css ├── tool-kits ├── index.mdx ├── plugin │ ├── customization.mdx │ ├── faq.mdx │ ├── html-app-example.mdx │ ├── index.mdx │ ├── nextjs-app-example.mdx │ └── react-app-example.mdx ├── referral-program.mdx └── wallet-kit │ ├── index.mdx │ ├── jupiter-mobile-adapter.mdx │ └── jupiter-wallet-extension.mdx ├── updates └── index.mdx └── vercel.json /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/README.md -------------------------------------------------------------------------------- /api-reference/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/index.mdx -------------------------------------------------------------------------------- /api-reference/lend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/deposit-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/deposit-instructions.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/deposit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/deposit.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/earnings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/earnings.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/mint-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/mint-instructions.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/mint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/mint.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/positions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/positions.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/redeem-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/redeem-instructions.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/redeem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/redeem.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/tokens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/tokens.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/withdraw-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/withdraw-instructions.mdx -------------------------------------------------------------------------------- /api-reference/lend/earn/withdraw.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/lend/earn/withdraw.mdx -------------------------------------------------------------------------------- /api-reference/portfolio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/portfolio.mdx -------------------------------------------------------------------------------- /api-reference/portfolio/get-platforms.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/portfolio/get-platforms.mdx -------------------------------------------------------------------------------- /api-reference/portfolio/get-positions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/portfolio/get-positions.mdx -------------------------------------------------------------------------------- /api-reference/portfolio/get-staked-jup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/portfolio/get-staked-jup.mdx -------------------------------------------------------------------------------- /api-reference/price.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/price.mdx -------------------------------------------------------------------------------- /api-reference/price/v2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/price/v2.mdx -------------------------------------------------------------------------------- /api-reference/price/v2/price.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/price/v2/price.mdx -------------------------------------------------------------------------------- /api-reference/price/v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/price/v3.mdx -------------------------------------------------------------------------------- /api-reference/price/v3/price.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/price/v3/price.mdx -------------------------------------------------------------------------------- /api-reference/recurring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring.mdx -------------------------------------------------------------------------------- /api-reference/recurring/cancel-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring/cancel-order.mdx -------------------------------------------------------------------------------- /api-reference/recurring/create-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring/create-order.mdx -------------------------------------------------------------------------------- /api-reference/recurring/execute.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring/execute.mdx -------------------------------------------------------------------------------- /api-reference/recurring/get-recurring-orders.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring/get-recurring-orders.mdx -------------------------------------------------------------------------------- /api-reference/recurring/price-deposit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring/price-deposit.mdx -------------------------------------------------------------------------------- /api-reference/recurring/price-withdraw.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/recurring/price-withdraw.mdx -------------------------------------------------------------------------------- /api-reference/send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/send.mdx -------------------------------------------------------------------------------- /api-reference/send/craft-clawback.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/send/craft-clawback.mdx -------------------------------------------------------------------------------- /api-reference/send/craft-send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/send/craft-send.mdx -------------------------------------------------------------------------------- /api-reference/send/invite-history.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/send/invite-history.mdx -------------------------------------------------------------------------------- /api-reference/send/pending-invites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/send/pending-invites.mdx -------------------------------------------------------------------------------- /api-reference/studio.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/studio.mdx -------------------------------------------------------------------------------- /api-reference/studio/dbc-fee-create-tx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/studio/dbc-fee-create-tx.mdx -------------------------------------------------------------------------------- /api-reference/studio/dbc-fee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/studio/dbc-fee.mdx -------------------------------------------------------------------------------- /api-reference/studio/dbc-pool-addresses-by-mint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/studio/dbc-pool-addresses-by-mint.mdx -------------------------------------------------------------------------------- /api-reference/studio/dbc-pool-create-tx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/studio/dbc-pool-create-tx.mdx -------------------------------------------------------------------------------- /api-reference/studio/dbc-pool-submit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/studio/dbc-pool-submit.mdx -------------------------------------------------------------------------------- /api-reference/swap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/swap.mdx -------------------------------------------------------------------------------- /api-reference/swap/program-id-to-label.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/swap/program-id-to-label.mdx -------------------------------------------------------------------------------- /api-reference/swap/quote.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/swap/quote.mdx -------------------------------------------------------------------------------- /api-reference/swap/swap-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/swap/swap-instructions.mdx -------------------------------------------------------------------------------- /api-reference/swap/swap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/swap/swap.mdx -------------------------------------------------------------------------------- /api-reference/tokens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1/all.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1/all.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1/mints-in-market.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1/mints-in-market.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1/new.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1/new.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1/tagged.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1/tagged.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1/token-information.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1/token-information.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v1/tradable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v1/tradable.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/category.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/category.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/get-content-cooking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/get-content-cooking.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/get-content-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/get-content-feed.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/get-content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/get-content.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/recent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/recent.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/search.mdx -------------------------------------------------------------------------------- /api-reference/tokens/v2/tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/tokens/v2/tag.mdx -------------------------------------------------------------------------------- /api-reference/trigger.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/trigger.mdx -------------------------------------------------------------------------------- /api-reference/trigger/cancel-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/trigger/cancel-order.mdx -------------------------------------------------------------------------------- /api-reference/trigger/cancel-orders.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/trigger/cancel-orders.mdx -------------------------------------------------------------------------------- /api-reference/trigger/create-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/trigger/create-order.mdx -------------------------------------------------------------------------------- /api-reference/trigger/execute.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/trigger/execute.mdx -------------------------------------------------------------------------------- /api-reference/trigger/get-trigger-orders.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/trigger/get-trigger-orders.mdx -------------------------------------------------------------------------------- /api-reference/ultra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra.mdx -------------------------------------------------------------------------------- /api-reference/ultra/balances.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/balances.mdx -------------------------------------------------------------------------------- /api-reference/ultra/execute.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/execute.mdx -------------------------------------------------------------------------------- /api-reference/ultra/holdings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/holdings.mdx -------------------------------------------------------------------------------- /api-reference/ultra/order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/order.mdx -------------------------------------------------------------------------------- /api-reference/ultra/routers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/routers.mdx -------------------------------------------------------------------------------- /api-reference/ultra/search.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/search.mdx -------------------------------------------------------------------------------- /api-reference/ultra/shield.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/api-reference/ultra/shield.mdx -------------------------------------------------------------------------------- /blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/README.md -------------------------------------------------------------------------------- /blog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/index.mdx -------------------------------------------------------------------------------- /blog/metis-v7.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/metis-v7.mdx -------------------------------------------------------------------------------- /blog/sample-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/sample-post.mdx -------------------------------------------------------------------------------- /blog/template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/template.mdx -------------------------------------------------------------------------------- /blog/ultra-v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/ultra-v3.mdx -------------------------------------------------------------------------------- /blog/why-ultra-v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/blog/why-ultra-v3.mdx -------------------------------------------------------------------------------- /docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs.json -------------------------------------------------------------------------------- /docs/lend/borrow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lend/borrow.mdx -------------------------------------------------------------------------------- /docs/lend/earn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lend/earn.mdx -------------------------------------------------------------------------------- /docs/lend/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lend/index.mdx -------------------------------------------------------------------------------- /docs/lend/liquidation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lend/liquidation.mdx -------------------------------------------------------------------------------- /docs/lend/oracles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lend/oracles.mdx -------------------------------------------------------------------------------- /docs/lend/sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lend/sdk.mdx -------------------------------------------------------------------------------- /docs/lock/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/lock/index.mdx -------------------------------------------------------------------------------- /docs/perps/custody-account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/perps/custody-account.mdx -------------------------------------------------------------------------------- /docs/perps/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/perps/index.mdx -------------------------------------------------------------------------------- /docs/perps/pool-account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/perps/pool-account.mdx -------------------------------------------------------------------------------- /docs/perps/position-account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/perps/position-account.mdx -------------------------------------------------------------------------------- /docs/perps/position-request-account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/perps/position-request-account.mdx -------------------------------------------------------------------------------- /docs/portfolio/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/portfolio/index.mdx -------------------------------------------------------------------------------- /docs/portfolio/jupiter-positions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/portfolio/jupiter-positions.mdx -------------------------------------------------------------------------------- /docs/price/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/price/index.mdx -------------------------------------------------------------------------------- /docs/price/v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/price/v3.mdx -------------------------------------------------------------------------------- /docs/recurring/best-practices.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/best-practices.mdx -------------------------------------------------------------------------------- /docs/recurring/cancel-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/cancel-order.mdx -------------------------------------------------------------------------------- /docs/recurring/create-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/create-order.mdx -------------------------------------------------------------------------------- /docs/recurring/deposit-price-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/deposit-price-order.mdx -------------------------------------------------------------------------------- /docs/recurring/execute-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/execute-order.mdx -------------------------------------------------------------------------------- /docs/recurring/get-recurring-orders.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/get-recurring-orders.mdx -------------------------------------------------------------------------------- /docs/recurring/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/index.mdx -------------------------------------------------------------------------------- /docs/recurring/withdraw-price-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/recurring/withdraw-price-order.mdx -------------------------------------------------------------------------------- /docs/routing/dex-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/routing/dex-integration.mdx -------------------------------------------------------------------------------- /docs/routing/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/routing/index.mdx -------------------------------------------------------------------------------- /docs/routing/market-listing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/routing/market-listing.mdx -------------------------------------------------------------------------------- /docs/routing/rfq-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/routing/rfq-integration.mdx -------------------------------------------------------------------------------- /docs/routing/token-listing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/routing/token-listing.mdx -------------------------------------------------------------------------------- /docs/send/craft-clawback.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/send/craft-clawback.mdx -------------------------------------------------------------------------------- /docs/send/craft-send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/send/craft-send.mdx -------------------------------------------------------------------------------- /docs/send/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/send/index.mdx -------------------------------------------------------------------------------- /docs/send/invite-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/send/invite-code.mdx -------------------------------------------------------------------------------- /docs/send/manage-invites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/send/manage-invites.mdx -------------------------------------------------------------------------------- /docs/studio/claim-fee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/studio/claim-fee.mdx -------------------------------------------------------------------------------- /docs/studio/create-token.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/studio/create-token.mdx -------------------------------------------------------------------------------- /docs/studio/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/studio/index.mdx -------------------------------------------------------------------------------- /docs/swap/add-fees-to-swap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/add-fees-to-swap.mdx -------------------------------------------------------------------------------- /docs/swap/build-swap-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/build-swap-transaction.mdx -------------------------------------------------------------------------------- /docs/swap/common-errors.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/common-errors.mdx -------------------------------------------------------------------------------- /docs/swap/get-quote.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/get-quote.mdx -------------------------------------------------------------------------------- /docs/swap/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/index.mdx -------------------------------------------------------------------------------- /docs/swap/payments-through-swap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/payments-through-swap.mdx -------------------------------------------------------------------------------- /docs/swap/requote-with-lower-max-accounts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/requote-with-lower-max-accounts.mdx -------------------------------------------------------------------------------- /docs/swap/send-swap-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/swap/send-swap-transaction.mdx -------------------------------------------------------------------------------- /docs/tokens/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/tokens/index.mdx -------------------------------------------------------------------------------- /docs/tokens/organic-score.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/tokens/organic-score.mdx -------------------------------------------------------------------------------- /docs/tokens/token-tag-standard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/tokens/token-tag-standard.mdx -------------------------------------------------------------------------------- /docs/tokens/v2/content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/tokens/v2/content.mdx -------------------------------------------------------------------------------- /docs/tokens/v2/token-information.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/tokens/v2/token-information.mdx -------------------------------------------------------------------------------- /docs/trigger/best-practices.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/trigger/best-practices.mdx -------------------------------------------------------------------------------- /docs/trigger/cancel-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/trigger/cancel-order.mdx -------------------------------------------------------------------------------- /docs/trigger/create-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/trigger/create-order.mdx -------------------------------------------------------------------------------- /docs/trigger/execute-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/trigger/execute-order.mdx -------------------------------------------------------------------------------- /docs/trigger/get-trigger-orders.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/trigger/get-trigger-orders.mdx -------------------------------------------------------------------------------- /docs/trigger/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/trigger/index.mdx -------------------------------------------------------------------------------- /docs/ultra/add-fees-to-ultra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/add-fees-to-ultra.mdx -------------------------------------------------------------------------------- /docs/ultra/add-payer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/add-payer.mdx -------------------------------------------------------------------------------- /docs/ultra/execute-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/execute-order.mdx -------------------------------------------------------------------------------- /docs/ultra/fees.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/fees.mdx -------------------------------------------------------------------------------- /docs/ultra/gasless.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/gasless.mdx -------------------------------------------------------------------------------- /docs/ultra/get-balances.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/get-balances.mdx -------------------------------------------------------------------------------- /docs/ultra/get-holdings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/get-holdings.mdx -------------------------------------------------------------------------------- /docs/ultra/get-order.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/get-order.mdx -------------------------------------------------------------------------------- /docs/ultra/get-shield.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/get-shield.mdx -------------------------------------------------------------------------------- /docs/ultra/get-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/get-started.mdx -------------------------------------------------------------------------------- /docs/ultra/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/index.mdx -------------------------------------------------------------------------------- /docs/ultra/plugin-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/plugin-integration.mdx -------------------------------------------------------------------------------- /docs/ultra/rate-limit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/rate-limit.mdx -------------------------------------------------------------------------------- /docs/ultra/response.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/response.mdx -------------------------------------------------------------------------------- /docs/ultra/search-token.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/docs/ultra/search-token.mdx -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/favicon.png -------------------------------------------------------------------------------- /get-started/development-basics.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/get-started/development-basics.mdx -------------------------------------------------------------------------------- /get-started/environment-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/get-started/environment-setup.mdx -------------------------------------------------------------------------------- /get-started/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/get-started/index.mdx -------------------------------------------------------------------------------- /index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/index.mdx -------------------------------------------------------------------------------- /legal/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/legal/index.mdx -------------------------------------------------------------------------------- /legal/privacy-policy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/legal/privacy-policy.mdx -------------------------------------------------------------------------------- /legal/sdk-api-license-agreement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/legal/sdk-api-license-agreement.mdx -------------------------------------------------------------------------------- /legal/terms-of-use.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/legal/terms-of-use.mdx -------------------------------------------------------------------------------- /logo/dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/logo/dark.svg -------------------------------------------------------------------------------- /logo/light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/logo/light.svg -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/logo/logo.png -------------------------------------------------------------------------------- /logo/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/logo/og.png -------------------------------------------------------------------------------- /openapi-spec/content/content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/content/content.yaml -------------------------------------------------------------------------------- /openapi-spec/lend/lend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/lend/lend.yaml -------------------------------------------------------------------------------- /openapi-spec/portfolio/portfolio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/portfolio/portfolio.yaml -------------------------------------------------------------------------------- /openapi-spec/price/v2/price.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/price/v2/price.yaml -------------------------------------------------------------------------------- /openapi-spec/price/v3/price.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/price/v3/price.yaml -------------------------------------------------------------------------------- /openapi-spec/recurring/recurring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/recurring/recurring.yaml -------------------------------------------------------------------------------- /openapi-spec/send/send.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/send/send.yaml -------------------------------------------------------------------------------- /openapi-spec/studio/studio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/studio/studio.yaml -------------------------------------------------------------------------------- /openapi-spec/swap/swap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/swap/swap.yaml -------------------------------------------------------------------------------- /openapi-spec/tokens/v1/tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/tokens/v1/tokens.yaml -------------------------------------------------------------------------------- /openapi-spec/tokens/v2/tokens.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/tokens/v2/tokens.yaml -------------------------------------------------------------------------------- /openapi-spec/trigger/trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/trigger/trigger.yaml -------------------------------------------------------------------------------- /openapi-spec/ultra/ultra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/openapi-spec/ultra/ultra.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/package.json -------------------------------------------------------------------------------- /portal/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/faq.mdx -------------------------------------------------------------------------------- /portal/latency.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/latency.mdx -------------------------------------------------------------------------------- /portal/migrate-from-lite-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/migrate-from-lite-api.mdx -------------------------------------------------------------------------------- /portal/payment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/payment.mdx -------------------------------------------------------------------------------- /portal/rate-limit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/rate-limit.mdx -------------------------------------------------------------------------------- /portal/responses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/responses.mdx -------------------------------------------------------------------------------- /portal/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/portal/setup.mdx -------------------------------------------------------------------------------- /resources/ai-workflow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/resources/ai-workflow.mdx -------------------------------------------------------------------------------- /resources/audits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/resources/audits.mdx -------------------------------------------------------------------------------- /resources/brand-kit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/resources/brand-kit.mdx -------------------------------------------------------------------------------- /resources/references.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/resources/references.mdx -------------------------------------------------------------------------------- /resources/stats.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/resources/stats.mdx -------------------------------------------------------------------------------- /resources/support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/resources/support.mdx -------------------------------------------------------------------------------- /snippets/jupiter-plugin-integrated.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/snippets/jupiter-plugin-integrated.jsx -------------------------------------------------------------------------------- /snippets/jupiter-plugin-modal-trigger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/snippets/jupiter-plugin-modal-trigger.jsx -------------------------------------------------------------------------------- /static/blog/metis-v7/metis-v7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/metis-v7/metis-v7.png -------------------------------------------------------------------------------- /static/blog/stay-tuned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/stay-tuned.png -------------------------------------------------------------------------------- /static/blog/ultra-v3/sandwiched.me-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/ultra-v3/sandwiched.me-chart.png -------------------------------------------------------------------------------- /static/blog/ultra-v3/swap-execution-success-rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/ultra-v3/swap-execution-success-rate.png -------------------------------------------------------------------------------- /static/blog/ultra-v3/swap-success-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/ultra-v3/swap-success-count.png -------------------------------------------------------------------------------- /static/blog/ultra-v3/ultra-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/ultra-v3/ultra-v3.png -------------------------------------------------------------------------------- /static/blog/ultra-v3/vwa-diff-executed-slippage-vs-quoted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/ultra-v3/vwa-diff-executed-slippage-vs-quoted.png -------------------------------------------------------------------------------- /static/blog/why-ultra-v3/mintlifyblogbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/blog/why-ultra-v3/mintlifyblogbanner.jpg -------------------------------------------------------------------------------- /static/files/audits/dao-offside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/dao-offside.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-liquidity-offside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-liquidity-offside.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-oracle-and-flashloan-offside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-oracle-and-flashloan-offside.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-ottersec-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-ottersec-2.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-ottersec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-ottersec.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-vault-mixbytes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-vault-mixbytes.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-vault-offside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-vault-offside.pdf -------------------------------------------------------------------------------- /static/files/audits/lend-zenith.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lend-zenith.pdf -------------------------------------------------------------------------------- /static/files/audits/limit-v2-offside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/limit-v2-offside.pdf -------------------------------------------------------------------------------- /static/files/audits/lock-ottersec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lock-ottersec.pdf -------------------------------------------------------------------------------- /static/files/audits/lock-sec3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/lock-sec3.pdf -------------------------------------------------------------------------------- /static/files/audits/perpetual-offside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/perpetual-offside.pdf -------------------------------------------------------------------------------- /static/files/audits/perpetual-ottersec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/perpetual-ottersec.pdf -------------------------------------------------------------------------------- /static/files/audits/perpetual-sec3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/perpetual-sec3.pdf -------------------------------------------------------------------------------- /static/files/audits/swap-v3-sec3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/swap-v3-sec3.pdf -------------------------------------------------------------------------------- /static/files/audits/swap-v6-offside-april-2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/swap-v6-offside-april-2024.pdf -------------------------------------------------------------------------------- /static/files/audits/swap-v6-offside-october-2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/audits/swap-v6-offside-october-2025.pdf -------------------------------------------------------------------------------- /static/files/brand-kit/jupiter-brand-kit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/brand-kit/jupiter-brand-kit.zip -------------------------------------------------------------------------------- /static/files/legal/privacy-policy-4-may-2024.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/legal/privacy-policy-4-may-2024.docx -------------------------------------------------------------------------------- /static/files/legal/sdk-and-api-license-agreement-16-october-2025.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/legal/sdk-and-api-license-agreement-16-october-2025.docx -------------------------------------------------------------------------------- /static/files/legal/terms-of-use-21-january-2025.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/files/legal/terms-of-use-21-january-2025.docx -------------------------------------------------------------------------------- /static/images/gasless-support-mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/gasless-support-mechanism.png -------------------------------------------------------------------------------- /static/images/integrator-gas-payer-mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/integrator-gas-payer-mechanism.png -------------------------------------------------------------------------------- /static/images/jupiterz-gasless-mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/jupiterz-gasless-mechanism.png -------------------------------------------------------------------------------- /static/images/max_accounts_lifinity_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/max_accounts_lifinity_v2.png -------------------------------------------------------------------------------- /static/images/max_accounts_shared_accounts_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/max_accounts_shared_accounts_route.png -------------------------------------------------------------------------------- /static/images/max_accounts_stabble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/max_accounts_stabble.png -------------------------------------------------------------------------------- /static/images/organic-score-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/organic-score-diagram.png -------------------------------------------------------------------------------- /static/images/plugin-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/plugin-playground.png -------------------------------------------------------------------------------- /static/images/rfq-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/images/rfq-flow.png -------------------------------------------------------------------------------- /static/logos/dex/byreal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/byreal.png -------------------------------------------------------------------------------- /static/logos/dex/fluxbeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/fluxbeam.png -------------------------------------------------------------------------------- /static/logos/dex/gavel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/gavel.jpg -------------------------------------------------------------------------------- /static/logos/dex/lifinity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/lifinity.png -------------------------------------------------------------------------------- /static/logos/dex/meteora.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/meteora.svg -------------------------------------------------------------------------------- /static/logos/dex/moonit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/moonit.png -------------------------------------------------------------------------------- /static/logos/dex/obric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/obric.jpg -------------------------------------------------------------------------------- /static/logos/dex/orca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/orca.png -------------------------------------------------------------------------------- /static/logos/dex/pancakeswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/pancakeswap.png -------------------------------------------------------------------------------- /static/logos/dex/phoenix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/phoenix.svg -------------------------------------------------------------------------------- /static/logos/dex/pumpfun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/pumpfun.png -------------------------------------------------------------------------------- /static/logos/dex/raydium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/raydium.png -------------------------------------------------------------------------------- /static/logos/dex/sanctum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/sanctum.svg -------------------------------------------------------------------------------- /static/logos/dex/saros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/saros.png -------------------------------------------------------------------------------- /static/logos/dex/solfi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/solfi.jpg -------------------------------------------------------------------------------- /static/logos/dex/stabble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/dex/stabble.png -------------------------------------------------------------------------------- /static/logos/integrator/backpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/backpack.png -------------------------------------------------------------------------------- /static/logos/integrator/basedbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/basedbot.png -------------------------------------------------------------------------------- /static/logos/integrator/binance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/binance.png -------------------------------------------------------------------------------- /static/logos/integrator/birdeye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/birdeye.png -------------------------------------------------------------------------------- /static/logos/integrator/bitget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/bitget.png -------------------------------------------------------------------------------- /static/logos/integrator/bybit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/bybit.jpg -------------------------------------------------------------------------------- /static/logos/integrator/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/coinbase.png -------------------------------------------------------------------------------- /static/logos/integrator/cryptodotcom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/cryptodotcom.png -------------------------------------------------------------------------------- /static/logos/integrator/gatedotio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/gatedotio.png -------------------------------------------------------------------------------- /static/logos/integrator/hawksight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/hawksight.png -------------------------------------------------------------------------------- /static/logos/integrator/kraken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/kraken.jpg -------------------------------------------------------------------------------- /static/logos/integrator/kraken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/kraken.png -------------------------------------------------------------------------------- /static/logos/integrator/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/metamask.svg -------------------------------------------------------------------------------- /static/logos/integrator/metengine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/metengine.png -------------------------------------------------------------------------------- /static/logos/integrator/moonshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/moonshot.png -------------------------------------------------------------------------------- /static/logos/integrator/okx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/okx.png -------------------------------------------------------------------------------- /static/logos/integrator/phantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/phantom.svg -------------------------------------------------------------------------------- /static/logos/integrator/solflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/static/logos/integrator/solflare.svg -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/style.css -------------------------------------------------------------------------------- /tool-kits/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/index.mdx -------------------------------------------------------------------------------- /tool-kits/plugin/customization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/plugin/customization.mdx -------------------------------------------------------------------------------- /tool-kits/plugin/faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/plugin/faq.mdx -------------------------------------------------------------------------------- /tool-kits/plugin/html-app-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/plugin/html-app-example.mdx -------------------------------------------------------------------------------- /tool-kits/plugin/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/plugin/index.mdx -------------------------------------------------------------------------------- /tool-kits/plugin/nextjs-app-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/plugin/nextjs-app-example.mdx -------------------------------------------------------------------------------- /tool-kits/plugin/react-app-example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/plugin/react-app-example.mdx -------------------------------------------------------------------------------- /tool-kits/referral-program.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/referral-program.mdx -------------------------------------------------------------------------------- /tool-kits/wallet-kit/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/wallet-kit/index.mdx -------------------------------------------------------------------------------- /tool-kits/wallet-kit/jupiter-mobile-adapter.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/wallet-kit/jupiter-mobile-adapter.mdx -------------------------------------------------------------------------------- /tool-kits/wallet-kit/jupiter-wallet-extension.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/tool-kits/wallet-kit/jupiter-wallet-extension.mdx -------------------------------------------------------------------------------- /updates/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/updates/index.mdx -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jup-ag/docs/HEAD/vercel.json --------------------------------------------------------------------------------