Skip to content

[fix] Wrong Urls #649

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Apr 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/100-swap-api/1-get-quote.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To fully utilize the Quote API, check out the [Quote API Reference](/docs/api/sw
## Quote API

:::note
Base URL: `https://lite-jup.ag/swap/v1/quote`
Base URL: `https://lite-api.jup.ag/swap/v1/quote`

For higher rate limits, [refer to the API Key Setup doc](/docs/api-setup).
:::
Expand Down
2 changes: 1 addition & 1 deletion docs/100-swap-api/2-build-swap-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ To fully utilize the Swap API, check out the [Swap API or Swap Instructions Refe


:::note
Base URL: `https://lite-jup.ag/swap/v1/swap`
Base URL: `https://lite-api.jup.ag/swap/v1/swap`

For higher rate limits, [refer to the API Key Setup doc](/docs/api-setup).
:::
Expand Down
8 changes: 4 additions & 4 deletions docs/100-swap-api/3-send-swap-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ We are using [Triton’s `getRecentPrioritizationFees`](https://docs.triton.one/

```jsx
const swapResponse = await (
await fetch('https://lite-api.jup.ag/swap/v1', {
await fetch('https://lite-api.jup.ag/swap/v1/swap', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
Expand Down Expand Up @@ -164,7 +164,7 @@ When `true`, it allows the transaction to utilize a dynamic compute unit rather

```jsx
const swapTransaction = await (
await fetch('https://lite-api.jup.ag/swap/v1', {
await fetch('https://lite-api.jup.ag/swap/v1/swap', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
Expand Down Expand Up @@ -194,7 +194,7 @@ To understand Dynamic Slippage better, you can reference this repository to unde

```jsx
const swapTransaction = await (
await fetch('https://lite-api.jup.ag/swap/v1', {
await fetch('https://lite-api.jup.ag/swap/v1/swap', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
Expand Down Expand Up @@ -246,7 +246,7 @@ Additionally, Jito enables bundling transactions to ensure they execute together

```jsx
const swapTransaction = await (
await fetch('https://lite-api.jup.ag/swap/v1', {
await fetch('https://lite-api.jup.ag/swap/v1/swap', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
Expand Down