{
  "info": {
    "name": "ASIN Data API — mcp.ai",
    "description": "REST API for the ASIN Data API 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/asin_data_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "asin_data_api_clear_collection_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/clear/collection/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "clear",
            "collection",
            "requests"
          ]
        },
        "description": "Delete multiple requests from a collection by their IDs using the bulk delete endpoint. Use this tool when you need to remove a selected set of request entries from an existing collection. Note: Reque",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_ids\": \"\",\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "asin_data_api_delete_destination",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/destination",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "destination"
          ]
        },
        "description": "Delete a destination from your account. Use this when you need to remove a destination that is no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"destination_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "asin_data_api_get_collection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/collection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "collection"
          ]
        },
        "description": "Get details of a specific collection including status and request counts. Use when you need to check collection configuration, operational status, or aggregate statistics.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "asin_data_api_list_collection_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/collection/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "collection",
            "requests"
          ]
        },
        "description": "List all requests in a Collection (paginated). Use to retrieve and paginate through all requests added to a specific collection. Returns up to 1000 requests per page with pagination info.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"collection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "asin_data_api_list_destinations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/destinations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "destinations"
          ]
        },
        "description": "List all destinations configured on your account. Use to retrieve and filter destination configurations for data export. Maximum 50 destinations allowed per account. Returns 10 destinations per page w",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort_by\": \"\",\n  \"search_term\": \"\",\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "asin_data_api_update_destination",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/destination",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "destination"
          ]
        },
        "description": "Update an existing destination's configuration. Use to modify cloud storage settings, change the destination name, or enable/disable a destination. Only include fields you want to update.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"enabled\": false,\n  \"oss_region_id\": \"\",\n  \"destination_id\": \"\",\n  \"gcs_access_key\": \"\",\n  \"gcs_secret_key\": \"\",\n  \"oss_access_key\": \"\",\n  \"oss_secret_key\": \"\",\n  \"s3_bucket_name\": \"\",\n  \"s3_path_prefix\": \"\",\n  \"gcs_bucket_name\": \"\",\n  \"gcs_path_prefix\": \"\",\n  \"oss_bucket_name\": \"\",\n  \"oss_path_prefix\": \"\",\n  \"s3_access_key_id\": \"\",\n  \"azure_account_key\": \"\",\n  \"azure_path_prefix\": \"\",\n  \"azure_account_name\": \"\",\n  \"azure_container_name\": \"\",\n  \"s3_secret_access_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}