Platform & Plugin API

Extend your Marqet instance with REST APIs, webhooks, and connector integrations for custom workflows.

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/instanceGet instance details
GET/api/v1/pluginsList installed plugins
POST/api/v1/plugins/installInstall a plugin
GET/api/v1/connectorsList connector status
POST/api/v1/webhooksRegister a webhook
GET/api/v1/analytics/summaryAI analytics summary

Full API Documentation

Explore complete API reference, code examples, and integration guides