Triple Whale Compliance API

The Compliance API from Triple Whale — 1 operation(s) for compliance.

Operations 1

POST /compliance/requests/create-request Create Compliance Data Deletion Request #

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/triple-whale-compliance-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

triple-whale-compliance-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Triple Whale API Keys Compliance API
  version: '1.0'
  description: 'Triple Whale API documentation, providing endpoints for managing user authentication, API key validation, and uploading data such as ads and metrics.

    '
servers:
- url: https://api.triplewhale.com/api/v2/
security:
- apiKeyAuth: []
tags:
- name: Compliance
paths:
  /compliance/requests/create-request:
    post:
      summary: Create Compliance Data Deletion Request
      description: 'Create a compliance request to delete/mask customer PII for a shop using one or more identifiers (emails and/or phone numbers).

        '
      operationId: create-compliance-request
      tags:
      - Compliance
      security:
      - apiKeyAuth:
        - compliance:write
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - shop
              properties:
                shop:
                  type: string
                  description: 'The shop domain. The API key owner must have access to this shop.

                    '
                  example: madisonbraids.myshopify.com
                emails:
                  type: array
                  description: Customer email addresses to include in the request.
                  items:
                    type: string
                    format: email
                  default: []
                  example:
                  - john.smith@gmail.com
                phones:
                  type: array
                  description: Customer phone numbers to include in the request.
                  items:
                    type: string
                  default: []
                  example:
                  - +1-555-123-4567
      responses:
        '200':
          description: Request created successfully.
          content:
            application/json:
              schema:
                type: object
                required:
                - success
                - message
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Request created successfully
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                required:
                - success
                - message
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Shop ID is required
        '403':
          description: Forbidden
        '429':
          description: Too Many Requests
          headers:
            Retry-After:
              description: The number of seconds until the user can make another request.
              schema:
                type: string
              example: '60'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                required:
                - success
                - message
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: An unknown error occurred
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
x-readme:
  explorer-enabled: true
  proxy-enabled: true