{
  "info": {
    "name": "Remarkety — mcp.ai",
    "description": "REST API for the Remarkety MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/remarkety",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "remarkety_get_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaigns"
          ]
        },
        "description": "Tool to retrieve a list of marketing campaigns. Use when you need to page through campaigns with optional limit and skip.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "remarkety_get_customers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/customers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "customers"
          ]
        },
        "description": "Tool to retrieve customers. Use when you need to fetch a paginated list of customers from a Remarkety store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"updatedAtMax\": \"\",\n  \"updatedAtMin\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "remarkety_get_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "products"
          ]
        },
        "description": "Tool to retrieve products. Use when you need to fetch a paginated list of products from a Remarkety store.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"productId\": \"\",\n  \"createdAtMax\": \"\",\n  \"createdAtMin\": \"\",\n  \"updatedAtMax\": \"\",\n  \"updatedAtMin\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "remarkety_track_cart",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/track/cart",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "track",
            "cart"
          ]
        },
        "description": "Tool to track cart events in Remarkety. Use after a customer updates their cart to sync cart data for remarketing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"email\": \"\",\n  \"items\": \"\",\n  \"phone\": \"\",\n  \"cartId\": \"\",\n  \"fields\": {},\n  \"lastName\": \"\",\n  \"subtotal\": 0,\n  \"firstName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "remarkety_upload_contacts_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/contacts/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "contacts",
            "batch"
          ]
        },
        "description": "Tool to upload or update multiple contacts in batch. Use when you need to import or synchronize many contacts at once.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contacts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}