Crisp Website API

The Website API from Crisp — 3 operation(s) for website.

Operations 5

HEAD /website Check if website exists #
POST /website Create a new website #
GET /website/{website_id} Get website #
DELETE /website/{website_id} Delete website #
DELETE /website/{website_id}/expunge Abort scheduled website deletion #

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/crisp-website-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

crisp-website-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Crisp REST API v1 Conversations Website API
  description: 'Crisp customer messaging REST API covering websites, conversations,

    messages, people and metadata. Endpoint inventory drawn from

    https://docs.crisp.chat/references/rest-api/v1/.

    '
  version: '1.0'
  contact:
    name: Crisp API
    url: https://docs.crisp.chat/references/rest-api/v1/
servers:
- url: https://api.crisp.chat/v1
  description: Production
security:
- BasicAuth: []
tags:
- name: Website
paths:
  /website:
    head:
      summary: Check if website exists
      operationId: checkWebsite
      tags:
      - Website
      responses:
        '200':
          description: Exists
    post:
      summary: Create a new website
      operationId: createWebsite
      tags:
      - Website
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                domain:
                  type: string
      responses:
        '201':
          description: Created
  /website/{website_id}:
    get:
      summary: Get website
      operationId: getWebsite
      tags:
      - Website
      parameters:
      - $ref: '#/components/parameters/websiteId'
      responses:
        '200':
          description: Website
    delete:
      summary: Delete website
      operationId: deleteWebsite
      tags:
      - Website
      parameters:
      - $ref: '#/components/parameters/websiteId'
      responses:
        '200':
          description: Deletion scheduled
  /website/{website_id}/expunge:
    delete:
      summary: Abort scheduled website deletion
      operationId: abortDeleteWebsite
      tags:
      - Website
      parameters:
      - $ref: '#/components/parameters/websiteId'
      responses:
        '200':
          description: Aborted
components:
  parameters:
    websiteId:
      in: path
      name: website_id
      required: true
      schema:
        type: string
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: 'Use plugin token credentials. HTTP Basic with identifier:key, plus

        the X-Crisp-Tier header (`plugin`, `user`, or `tier`).

        '