Jumpseller API
jumpseller · Commerce
# Endpoint Structure All URLs are in the format: ```text https://api.jumpseller.com/v1/path.json?login=XXXXXX&authtoken=storetoken ``` The path is prefixed by the API version and the URL takes as parameters the login (your store specific API login) and your authentication token. *** # Version The current version of the API is **v1**. If we change the API in backward-incompatible ways, we'll increase the version number and maintain stable support for the old urls.
Authentication
Sample Requests
Retrieve all Promotions.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/promotions.json?page=1&limit=10&login=example&authtoken=example"
import requests
params = {
"page": "1",
"limit": "10",
"login": "example",
"authtoken": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/promotions.json",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/promotions.json');
url.searchParams.set('page', '1');
url.searchParams.set('limit', '10');
url.searchParams.set('login', 'example');
url.searchParams.set('authtoken', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/promotions.json")
q := baseURL.Query()
q.Set("page", "1")
q.Set("limit", "10")
q.Set("login", "example")
q.Set("authtoken", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/promotions.json")
uri.query = URI.encode_www_form({
"page" => "1",
"limit" => "10",
"login" => "example",
"authtoken" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/promotions.json?" . http_build_query([
"page" => "1",
"limit" => "10",
"login" => "example",
"authtoken" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Retrieve statistics.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/partners/stores.json?to=2024-12-31&from=2024-01-01&page=1&auth_token=example&partner_code=example"
import requests
params = {
"to": "2024-12-31",
"from": "2024-01-01",
"page": "1",
"auth_token": "example",
"partner_code": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/partners/stores.json",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/partners/stores.json');
url.searchParams.set('to', '2024-12-31');
url.searchParams.set('from', '2024-01-01');
url.searchParams.set('page', '1');
url.searchParams.set('auth_token', 'example');
url.searchParams.set('partner_code', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/partners/stores.json")
q := baseURL.Query()
q.Set("to", "2024-12-31")
q.Set("from", "2024-01-01")
q.Set("page", "1")
q.Set("auth_token", "example")
q.Set("partner_code", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/partners/stores.json")
uri.query = URI.encode_www_form({
"to" => "2024-12-31",
"from" => "2024-01-01",
"page" => "1",
"auth_token" => "example",
"partner_code" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/partners/stores.json?" . http_build_query([
"to" => "2024-12-31",
"from" => "2024-01-01",
"page" => "1",
"auth_token" => "example",
"partner_code" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Endpoint example: ```text https://api.jumpseller.com/v1/products/search.json?login=XXXXXX&authtoken=XXXXX&query=test&fields=name,description ```
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/products/search.json?login=example&query=test&fields=sku&locale=en-US&authtoken=example"
import requests
params = {
"login": "example",
"query": "test",
"fields": "sku",
"locale": "en-US",
"authtoken": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/products/search.json",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/products/search.json');
url.searchParams.set('login', 'example');
url.searchParams.set('query', 'test');
url.searchParams.set('fields', 'sku');
url.searchParams.set('locale', 'en-US');
url.searchParams.set('authtoken', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/products/search.json")
q := baseURL.Query()
q.Set("login", "example")
q.Set("query", "test")
q.Set("fields", "sku")
q.Set("locale", "en-US")
q.Set("authtoken", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/products/search.json")
uri.query = URI.encode_www_form({
"login" => "example",
"query" => "test",
"fields" => "sku",
"locale" => "en-US",
"authtoken" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/jumpseller.com/1.0.0/products/search.json?" . http_build_query([
"login" => "example",
"query" => "test",
"fields" => "sku",
"locale" => "en-US",
"authtoken" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Jumpseller API?
Jumpseller API is a Commerce API. Developers commonly use commerce APIs for:
- syncing product catalogues and inventory levels
- building price comparison and deal-finder tools
- processing orders and tracking shipments
- managing customer wishlists and reviews
- automating abandoned-cart and promotional emails
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Jumpseller API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?