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/lucidlink-domain-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: LucidLink Service API Reference Domain API
description: The LucidLink API is organized around REST.
servers:
- url: /api/v1
security:
- standard: []
tags:
- name: Domain
description: Domain operations.
paths:
/domains:
x-swagger-router-controller: Domain
post:
tags:
- Domain
summary: Create a domain
operationId: createDomain
responses:
'201':
description: The domain object that has been created.
content:
application/json:
schema:
$ref: '#/components/schemas/Domain'
'400':
description: Invalid domain name.
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequest'
'409':
description: Domain name already taken or account has an existing domain.
content:
application/json:
schema:
$ref: '#/components/schemas/Conflict'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Domain'
description: Domain object to be created. Domains are globally unique across all LucidLink accounts.
required: true
get:
tags:
- Domain
summary: Get a list of domains
operationId: getDomains
responses:
'200':
description: A list of domains.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Domain'
/domains/{id}:
x-swagger-router-controller: Domain
get:
tags:
- Domain
summary: Retrieve a domain
operationId: getDomain
parameters:
- name: id
in: path
description: ID of the domain to be retrieved.
required: true
schema:
type: string
responses:
'200':
description: The domain object.
content:
application/json:
schema:
$ref: '#/components/schemas/Domain'
'400':
description: Invalid domain ID.
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequest'
'404':
description: Domain not found.
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
delete:
tags:
- Domain
summary: Delete a domain
operationId: deleteDomain
parameters:
- in: path
name: id
description: ID of the domain to be deleted.
required: true
schema:
type: string
responses:
'204':
description: Success.
'400':
description: Invalid domain ID.
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequest'
'404':
description: Domain not found.
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
'409':
description: Domain has filespaces.
content:
application/json:
schema:
$ref: '#/components/schemas/Conflict'
put:
tags:
- Domain
summary: Update a domain
operationId: updateDomain
parameters:
- in: path
name: id
description: ID of the domain to be updated.
required: true
schema:
type: string
responses:
'200':
description: The domain object that has been updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Domain'
'400':
description: Invalid domain name.
content:
application/json:
schema:
$ref: '#/components/schemas/BadRequest'
'404':
description: Domain not found.
content:
application/json:
schema:
$ref: '#/components/schemas/NotFound'
'409':
description: Domain has filespaces.
content:
application/json:
schema:
$ref: '#/components/schemas/Conflict'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/Domain'
description: Domain object to update with.
required: true
components:
schemas:
NotFound:
required:
- status
- message
properties:
status:
type: number
example: 404
message:
type: string
Domain:
required:
- name
properties:
id:
type: string
readOnly: true
name:
description: Lowercase letters, numbers or hyphens. 3-60 chars.
type: string
Conflict:
required:
- status
- message
properties:
status:
type: number
example: 409
message:
type: string
BadRequest:
required:
- status
- message
properties:
status:
type: number
example: 400
message:
type: string
securitySchemes:
standard:
type: oauth2
flows:
clientCredentials:
scopes: {}
tokenUrl: https://auth.lucidlink.com/oauth2/token