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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/cachet-connect-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
openapi: 3.2.0
info:
version: 1.0.0
title: Cachet Partners Connect API
termsOfService: https://cachet.me/en/terms-conditions/terms-of-use/
contact:
name: Cachet OÜ
url: https://cachet.me
email: devs@cachet.me
license:
name: Copyright (C) Cachet OÜ - All Rights Reserved
url: https://cachet.me/en/terms-conditions/terms-of-use/
x-logo:
url: web/logo.png
description: "# Introduction\n\nCachet partners API can be used to embed Cachet link into the partner application. API call is made on the click of a button and customer data is sent to Cachet server. Cachet will return a redirection link which will already prefill data for the customer to make the onboarding process much smoother. \n\n# Getting started\n\n1. Contact Cachet at sales@cachet.me to get access to the API\n2. Use /connect endpoint to send the agreed user data to Cachet and receive a redirection link.\n3. Redirect the customer to this link and let Cachet handle everything for the customer onboarding.\n\n# Authentication\n\nAuthentication is done via Security headers.\nEach request sent to the Cachet Platform API need to have headers `x-api-key`and `x-api-username` which are both provided by the Cachet IT Team.\n"
servers:
- url: https://partners.cachet.me
description: Production
- description: Development
url: https://dev-partners.cachet.me
security:
- x-api-username: []
x-api-key: []
tags:
- name: Connect
description: Endpoint where to send the connect request
paths:
/connect:
post:
tags:
- Connect
summary: /connect
operationId: post-connect
description: Based on the data sent Cachet will generate a redirect link to which you can then send the customer.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ConnectInput'
description: Details of customer and his assets
responses:
'200':
$ref: '#/components/responses/ConnectCreated'
'401':
$ref: '#/components/responses/Unauthorized'
'500':
$ref: '#/components/responses/ValidationError'
components:
responses:
ValidationError:
description: ValidationError
content:
application/json:
schema:
type: object
properties:
statusCode:
type: number
example: 500
error:
type: string
example: ValidationError
message:
type: string
example: '"lastName" is required'
required:
- statusCode
- error
- message
Unauthorized:
description: Unauthorized
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: Unauthorized
required:
- message
ConnectCreated:
description: Connect request succeeded
content:
application/json:
schema:
type: object
properties:
redirectUrl:
type: string
description: Redirect URL where to send the customer
example: https://dev-app.cachet.me/register?connectId=4add0fa8-d458-4582-8cd2-a7de27e8990b&connectSecret=b9e7845e5683c602c2c4bafb0553d88307509171adea1b8f751d4c84ebb531d0d09b84bbeb57c20ae1f1b7480746dcef0138ca0234eb15b62ec78ff283e5c06d&type=BOLT_DEMO&filter=rh-vehicle
required:
- redirectUrl
schemas:
ConnectInput:
title: ConnectInput
type: object
description: Payload for the create-user endpoint
properties:
person:
type: object
description: Personal details of the customer
properties:
firstName:
type: string
description: Customer's first name
example: John
lastName:
type: string
description: Customer's last name
example: Doe
email:
type: string
format: email
description: Customer's e-mail address
example: john@doe.com
personCode:
type: string
description: Customer's personal code
example: '39010232616'
required:
- firstName
- lastName
- email
vehicle:
type: object
description: Payload for sending vehicle details
properties:
licenseNr:
type: string
description: Vehicle registration number
example: 123ABC
make:
type: string
description: Vehicle make
example: Volvo
model:
type: string
description: Vehicle model
example: V60
year:
type: string
description: Vehicle production year
example: '2019'
vinNumber:
type: string
description: Vehicle VIN number
example: YV1LS5587W2552511
required:
- licenseNr
bolt:
type: object
description: Bolt platform specific parameters
properties:
insuranceKey:
type: string
description: Driver insurance key on Bolt platform
example: c76aadc8-b004-4dfb-90ef-87758261199e
required:
- insuranceKey
required:
- person
securitySchemes:
x-api-username:
name: x-api-username
type: apiKey
in: header
description: Username provided by Cachet IT
x-api-key:
name: x-api-key
type: apiKey
in: header
description: API Key provided by Cachet IT