{
  "info": {
    "name": "Hyperise — mcp.ai",
    "description": "REST API for the Hyperise 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/hyperise",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "hyperise_create_client_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/client/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "client",
            "account"
          ]
        },
        "description": "Creates a new Hyperise business/client account for personalized image campaigns. Use this to provision prospect records that can be linked to Hyperise image templates. The website field is required in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"extras\": {},\n  \"business_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperise_list_image_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/image/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "image",
            "templates"
          ]
        },
        "description": "Retrieves all active personalized image templates for the authenticated user. Use this tool when you need to: - Get a list of available Hyperise image templates - Find template IDs for use with other ",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperise_personalized_short_links",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/personalized/short/links",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "personalized",
            "short",
            "links"
          ]
        },
        "description": "Generate a personalized short link with Open Graph metadata for rich link previews. This tool creates a shareable URL that: - Redirects to your destination page - Shows personalized image previews whe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"desc\": \"\",\n  \"title\": \"\",\n  \"image_hash\": \"\",\n  \"query_params\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperise_prospect_business_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/prospect/business/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "prospect",
            "business",
            "data"
          ]
        },
        "description": "Tool to perform CRUD operations on Hyperise business prospect records. Use when managing business data via the Hyperise API.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"lat\": \"\",\n  \"logo\": \"\",\n  \"long\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"title\": \"\",\n  \"gender\": \"\",\n  \"website\": \"\",\n  \"category\": \"\",\n  \"job_title\": \"\",\n  \"last_name\": \"\",\n  \"operation\": \"\",\n  \"first_name\": \"\",\n  \"business_name\": \"\",\n  \"custom_text_1\": \"\",\n  \"custom_text_2\": \"\",\n  \"custom_text_3\": \"\",\n  \"custom_text_4\": \"\",\n  \"profile_image\": \"\",\n  \"business_phone\": \"\",\n  \"custom_image_1\": \"\",\n  \"custom_image_2\": \"\",\n  \"custom_image_3\": \"\",\n  \"business_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "hyperise_user_authentication",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/user/authentication",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "user",
            "authentication"
          ]
        },
        "description": "Tool to authenticate an API token and retrieve user details. Use after obtaining a valid API token from Hyperise settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"api_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}