Doppel phishing-simulation API

The phishing-simulation API from Doppel — 1 operation(s) for phishing-simulation.

Operations 1

GET /phishing/track Track Phishing Campaign Actions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/doppel-phishing-simulation-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

doppel-phishing-simulation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Doppel Phishing Simulation API
  description: APIs to interface with Doppel's core system for social engineering defense — Brand Protection alerts, URL scanning, reports, protected assets, and Human Risk Management campaigns.
  contact:
    name: Doppel API Support
    url: https://doppel.readme.io/
servers:
- url: https://api.doppel.com/v1
tags:
- name: phishing-simulation
paths:
  /phishing/track:
    get:
      description: Tracks user interactions with phishing simulation campaign emails. This endpoint records various actions such as email opens, link clicks, form submissions, and email reports while returning a transparent tracking pixel.
      summary: Track Phishing Campaign Actions
      operationId: track_campaign_actions
      tags:
      - phishing-simulation
      parameters:
      - name: email_id
        in: query
        required: false
        description: Identifier for the simulation email being tracked (deprecated)
        schema:
          type: string
      - name: short_id
        in: query
        required: true
        description: Identifier for the simulation attack instance being tracked
        schema:
          type: string
      - name: action
        in: query
        required: true
        description: Type of action being tracked
        schema:
          type: string
          enum:
          - EMAIL_OPENED
          - LINK_CLICKED
          - FORM_SUBMITTED
          - EMAIL_REPORTED
      responses:
        '200':
          description: Tracking pixel returned successfully and interaction recorded
          content:
            image/png:
              schema:
                type: string
                format: binary
        '400':
          description: Missing required tracking parameters
          content:
            image/png:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded
          content:
            image/png:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            image/png:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security: []
      x-google-backend:
        address: https://track-campaign-actions-725058953679.us-west1.run.app
        jwt_audience: https://track-campaign-actions-725058953679.us-west1.run.app
        deadline: 10
        path_translation: APPEND_PATH_TO_ADDRESS
      x-google-quota:
        metricCosts:
          track-campaign-action-request: 1
components:
  schemas:
    ErrorResponse:
      title: ErrorResponse
      description: Standard error response returned for all non-2xx responses. Contains a single `message` field with a human-readable error description.
      type: object
      required:
      - message
      properties:
        message:
          type: string
          description: Human-readable error description.
          example: This is an error message
  securitySchemes:
    api_key:
      type: apiKey
      name: x-api-key
      in: header
      description: API key from Doppel Vision API settings. Required for gateway authentication and quota.
    user_api_key:
      type: apiKey
      name: x-user-api-key
      in: header
      description: User API key from Doppel Vision API settings. Required together with x-api-key for authenticated requests.
x-readme:
  parameter-ordering:
  - path
  - header
  - query
  - body
  - cookie
  - form