# Jumpseller API
**Provider:** Jumpseller
**Category:** auth
**Base URL:** `https://api.jumpseller.com/v1`
**Auth:** none — `# No auth required`
**Rate Limit:** See documentation
**Free Tier:** Yes — available
**Pricing:** Enterprise / contact sales (subscription)
**Docs:** https://api.jumpseller.com/v1
## Description
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.
*
## Endpoints
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `https://api.jumpseller.com/v1/categories.json` | Retrieve all Categories. |
| POST | `https://api.jumpseller.com/v1/categories.json` | Create a new Category. |
| GET | `https://api.jumpseller.com/v1/categories/count.json` | Count all Categories. |
| DELETE | `https://api.jumpseller.com/v1/categories/{id}.json` | Delete an existing Category. |
| GET | `https://api.jumpseller.com/v1/categories/{id}.json` | Retrieve a single Category. |
| PUT | `https://api.jumpseller.com/v1/categories/{id}.json` | Modify an existing Category. |
| GET | `https://api.jumpseller.com/v1/checkout_custom_fields.json` | Retrieve all Checkout Custom Fields. |
| POST | `https://api.jumpseller.com/v1/checkout_custom_fields.json` | Create a new CheckoutCustomField. |
## Authentication
No authentication required
```
# No auth required
```
## Sample Request
```bash
curl -X GET 'https://api.jumpseller.com/v1/categories.json' \
-H '# No auth required'
```
## Sample Response
```json
{}
```
## Pricing Details
Free — open public API, no authentication required.
---
*Source: [API Map](https://apimap.dev/apis/jumpseller/) — CC BY 4.0*