Powerful REST API
Build custom integrations with our comprehensive REST API. Full documentation, webhooks, and dedicated developer support.
RESTful Architecture
Clean, predictable API design following REST best practices
Real-Time Webhooks
Get instant notifications for events in your account
Secure Authentication
OAuth 2.0 and API key authentication with rate limiting
Quick Start
Get started with the Marqet API in minutes. Here's a simple example of fetching products:
1
Get your API key
Generate an API key from your dashboard
2
Make your first request
Use any HTTP client to call our endpoints
3
Build amazing things
Create custom integrations for your business
example.js
// Import the Marqet SDK
const marqet = require('@marqet/sdk');
// Initialize with your API key
const client = marqet.init({
apiKey: 'your_api_key_here'
});
// Fetch products
const products = await client.products.list({
limit: 10,
status: 'active'
});
console.log(products);API Endpoints
GET
/api/v1/productsList all productsPOST
/api/v1/productsCreate a new productGET
/api/v1/ordersList all ordersPOST
/api/v1/ordersCreate a new orderGET
/api/v1/inventoryGet inventory levelsPUT
/api/v1/inventory/:idUpdate inventoryFull API Documentation
Explore complete API reference, code examples, and integration guides