색인미확인수명주기 미확인품질 미측정구조화 한국어 안내 · 문장 번역 전

Jumpseller API

jumpseller.com에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 인증·계정, 지도·공간정보입니다.

영문 원문 보기
Jumpseller API

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 The API uses a token-based authentication with a combination of a login key and an auth token. Both parameters can be found on the left sidebar of the Account section, accessed from the main menu of your Admin Panel . The auth token of the user can be reset on the same page. ![Store Login](/images/support/api/apilogin.png) The auth token is a 32 characters string. If you are developing a Jumpseller App, the authentication should be done using [OAuth-2](/support/oauth-2). Please read the article [Build an App](/support/apps) for more information. Curl Examples To request all the products at your store, you would append the products index path to the base url to create an URL with the format: text https://api.jumpseller.com/v1/products.json?login=XXXXXX&authtoken=XXXXX In curl, you can invoque that URL with: text curl -X GET "https://api.jumpseller.com/v1/products.json?login=XXXXXX&authtoken=XXXXX" To create a product, you will include the JSON data and specify the MIME Type: text curl -X POST -d '{ "product" : {"name": "My new Product!", "price": 100} }' "https://api.jumpseller.com/v1/products.json?login=XXXXXX&authtoken=XXXXX" -H "Content-Type:application/json" and to update the product identified with 123: text curl -X PUT -d '{ "product" : {"name": "My updated Product!", "price": 99} }' "https://api.jumpseller.com/v1/products/123.json?login=XXXXXX&authtoken=XXXXX" -H "Content-Type:application/json" or delete it: text curl -X DELETE "https://api.jumpseller.com/v1/products/123.json?login=XXXXXX&authtoken=XXXXX" -H "Content-Type:application/json" PHP Examples Create a new Product (POST method) php $url = 'https://api.jumpseller.com/v1/products.json?login=XXXXX&authtoken=XXXXX; $ch = curl init($url); curl setopt($ch, CURLOPT RETURNTRANSFER, true); curl setopt($ch, CURLOPT HTTPHEADER, array('Content-Type: application/json')); curl setopt($ch, CURLOPT CUSTOMREQUEST, "POST"); //post method curl setopt($ch, CURLOPT POSTFIELDS, '{ "product" : {"name": "My updated Product!", "price": 99} }'); $result = curl exec($ch); print r($result); curl close($ch); Plain JSON only. No XML. We only support JSON for data serialization. Our node format has no root element. We use snake case to describe attribute keys (like "created at"). All empty value are replaced with null strings. All API URLs end in .json to indicate that they accept and return JSON. POST and PUT methods require you to explicitly state the MIME type of your request's body content as "application/json" . Rate Limit You can perform a maximum of: + 240 (two hundred forty) requests per minute and + 8 (eight) requests per second If you exceed this limit, you'll get a 403 Forbidden (Rate Limit Exceeded) response for subsequent requests. The rate limits apply by IP address and by store. This means that multiple requests on different stores are not counted towards the same rate limit. This limits are necessary to ensure resources are correctly used. Your application should be aware of this limits and retry any unsuccessful request, check the following Ruby stub: ruby tries = 0; max tries = 3; begin HTTParty.send(method, uri) perform an API call. sleep 0.5 tries += 1 rescue unless tries = max tries sleep 1.0 wait the necessary time before retrying the call again. retry end end Finally, you can review the Response Headers of each request: text Jumpseller-PerMinuteRateLimit-Limit: 60 Jumpseller-PerMinuteRateLimit-Remaining: 59 requests available on the per-second interval Jumpseller-PerSecondRateLimit-Limit: 2 Jumpseller-PerSecondRa…

번역은 이해를 돕기 위한 미검수 초벌 또는 구조화 안내입니다. 계약·의료·법률 판단에는 원문을 확인하세요.
연결된 문서
전역 집계 전현재 별표는 이 브라우저에만 저장
종합 품질근거 0%
가격미확인상세 가격 미수집
인증미확인
프로토콜REST142개 엔드포인트 수집
마지막 확인2026. 7. 28.출처 확인됨

SELECTION SUMMARY

도입 판단 요약

이 항목은 지도·공간정보 카테고리로 분류된 API 제품입니다. 확인된 분류 신호는 인증·계정, 지도·공간정보입니다. 상세 문장 번역은 아직 검수되지 않았으므로 아래 원문을 함께 확인하세요.

검수된 적합 용도

검증 정보 없음 — 태그와 카테고리는 분류 정보이며 적합성 보증이 아닙니다.

도입 전 확인

인증, 호출 제한, 데이터 처리 지역과 가격 조건을 연결된 문서에서 직접 확인하세요.

피해야 할 조건

제품별 제한 조건이 검수되지 않았습니다. 운영 적용 전에 공급자 조건을 재확인하세요.

EVIDENCED ADVANTAGES

API 특·장점

공급자·카탈로그·실측·편집 근거가 있는 신호만 표시하며, 근거 유형을 함께 밝힙니다.

카탈로그출처가 확인된 제품

카탈로그 원본과 확인 시점이 연결되어 있습니다.

공급자OpenAPI 3.0.0

정규화된 엔드포인트 142개를 탐색할 수 있습니다.

CATALOG TRUST

색인0

재배포 정책과 기본 식별 조건을 통과해 검색할 수 있지만 편집 승인은 아직 완료되지 않았습니다.

평가 2026. 07. 28. 13:05

QUALITY COVERAGE

미측정종합 점수
근거 충족률 0% · 신뢰 0%

unrated

핵심 도입 정보

인증검증 정보 없음
프로토콜REST
가격 모델미확인
리전검증 정보 없음
수집된 엔드포인트142개
마지막 확인2026. 07. 28. 13:05

같은 목적의 대체 API

같은 카테고리에서 공개 상태와 품질 근거를 우선해 표시합니다.

DNP-XGboostGarzonDepartamento Nacional de Planeación - DNP, Bogotá D.C.

Departamento Nacional de Planeación - DNP, Bogotá D.C.에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 지도·공간정보입니다.

미측정
Servicio de descarga (ATOM Feed) del Nomenclátor Geográfico Básico de España Servicio de descarga (ATOM Feed) del Nomenclátor Geográfico Básico de España Download Services (ATOM Feed) of Basic Gazetteer of SpainCentro Nacional de Información Geográfica (CNIG)

Centro Nacional de Información Geográfica (CNIG)에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 지도·공간정보, 파일·데이터 다운로드입니다.

미측정
AP_AREA_16Cook County GIS Department

Cook County GIS Department에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 지도·공간정보입니다.

미측정
Traccartraccar.org

traccar.org에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 지도·공간정보입니다.

미측정
Census_Tract_City_of_Gainesville_2010_PopDepartment of Doing

Department of Doing에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 지도·공간정보, 통계·지표, 지도·공간 조회, 데이터·통계입니다.

미측정
Punti di interesseComune di Busto Arsizio

Comune di Busto Arsizio에서 제공하는 지도·공간정보 분야의 API 제품입니다. 확인된 분류 신호는 지도·공간정보입니다.

미측정