{
  "info": {
    "name": "Niftyimages — mcp.ai",
    "description": "REST API for the Niftyimages 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/niftyimages",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "niftyimages_get_images_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/images/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "images",
            "stats"
          ]
        },
        "description": "Tool to get aggregated stats for all images. Use when you need to retrieve statistical data and performance metrics for all images in the account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_get_widget_user_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/widget/user/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "widget",
            "user",
            "images"
          ]
        },
        "description": "Tool to list widget images for a specific user. Use when you need to retrieve all images associated with a particular user and widget combination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user\": \"\",\n  \"widget_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_get_widget_user_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/widget/user/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "widget",
            "user",
            "stats"
          ]
        },
        "description": "Tool to get aggregated stats for a specific user on a widget. Use when you need to retrieve performance metrics for a particular user's interaction with a widget.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user\": \"\",\n  \"widget_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_list_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "images"
          ]
        },
        "description": "Tool to page through images in your NiftyImages account. Use when you need to retrieve a list of all available images.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_list_maps",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/maps",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "maps"
          ]
        },
        "description": "Tool to retrieve all maps in your NiftyImages account. Use when you need to view all available maps for geo-targeting or location-based email content.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_list_widget_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/widget/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "widget",
            "images"
          ]
        },
        "description": "Tool to list widget images for a time frame. Use when you need to retrieve images generated by a specific widget within an optional date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"widget_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_list_widget_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/widget/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "widget",
            "stats"
          ]
        },
        "description": "Tool to retrieve widget statistics for a specified time frame from NiftyImages. Use when you need to view performance metrics such as impressions and clicks for your widgets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"endDate\": \"\",\n  \"startDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_list_widget_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/widget/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "widget",
            "users"
          ]
        },
        "description": "Tool to list widget users for a specified time frame from NiftyImages. Use when you need to retrieve users who interacted with a specific widget during a date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"widgetKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "niftyimages_list_widgets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/widgets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "widgets"
          ]
        },
        "description": "Tool to list all widgets in your NiftyImages account. Use when you need to retrieve all available widgets.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}