Welcome to the Quickbutik API! Our REST API allows you to manage your store’s orders, products, categories, and more programmatically. Build powerful integrations to automate your e-commerce operations.

Base URL

All API requests are made to our base URL:

https://api.quickbutik.com/v1

Key Features

Order Management

Create, update, and retrieve orders with full order lifecycle support

Product Catalog

Manage your product inventory, pricing, and product information

Category Management

Organize products with hierarchical category structures

Real-time Updates

Get instant updates via webhooks when important events occur

Getting Started

1

Get your API key

Generate an API key in the Quickbutik Control Panel under Settings → API

2

Set up authentication

All requests require Basic Authentication using your API key

3

Make your first request

Try fetching your product count to test your setup:

curl https://api.quickbutik.com/v1/products/count \
  -u your_api_key:your_api_key

Response Format

All API responses are returned in JSON format, including error messages. Successful responses will contain the requested data, while errors will include helpful error codes and descriptions.

Success Response Example

{
  "count": "42"
}

Error Response Example

{
  "code": 404,
  "error": "Resource not found"
}

HTTP Status Codes

The API uses conventional HTTP response codes:

  • 200 - OK: The request was successful
  • 400 - Bad Request: The request was invalid
  • 401 - Unauthorized: Authentication failed
  • 404 - Not Found: The requested resource doesn’t exist
  • 500 - Internal Server Error: Something went wrong on our end

Rate Limiting

To ensure fair usage and optimal performance for all users, please be mindful of your request frequency. If you encounter rate limiting, implement exponential backoff in your retry logic.

Support

We’re here to help! For feature requests, feedback, or technical questions:

Contact Support

Email us at support@quickbutik.com

We greatly appreciate your feedback and are always working to improve our API.

Ready to get started? Check out our Authentication guide to begin integrating with the Quickbutik API.