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/burstiq-blastai-apis-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:
title: LifeGraph BlastAI APIs API
description: LifeGraph API descriptions
license:
name: BurstIQ, Inc.
url: https://www.burstiq.com
version: 2.42.0
servers:
- url: https://api.burstiq.com
description: Generated server url
tags:
- name: BlastAI APIs
description: Set of operations for Blast AI
paths:
/api/blastai/conversation/user:
post:
tags:
- BlastAI APIs
description: 'Allowed user roles:
sdzAdmin
sdzReadOnly
sdzUser
request conversational response to user''s prompt; where the user is a developer/admin/user'
operationId: postDevConversation
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ConversationRequest'
required: true
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/ConversationResponse'
summary: Post dev conversation
x-summary-source: derived
/api/blastai/conversation/public:
post:
tags:
- BlastAI APIs
description: 'Allowed user roles:
sdzAdmin
sdzReadOnly
sdzUser
request conversational response to user''s prompt; where the user is a public user, not a customer'
operationId: postCorpConversation
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ConversationRequest'
required: true
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/ConversationResponse'
summary: Post corp conversation
x-summary-source: derived
/api/blastai/conversation/{conversationId}:
get:
tags:
- BlastAI APIs
description: 'Allowed user roles:
sdzAdmin
sdzReadOnly
sdzUser
get conversation history'
operationId: getConversationHistory
parameters:
- name: conversationId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
'*/*':
schema:
$ref: '#/components/schemas/ConversationHistory'
summary: Get conversation history
x-summary-source: derived
components:
schemas:
ConversationResponse:
type: object
properties:
conversationId:
type: string
format: uuid
answer:
type: string
ConversationHistory:
type: object
properties:
conversationId:
type: string
format: uuid
history:
type: array
items:
$ref: '#/components/schemas/Conversation'
ConversationRequest:
type: object
properties:
conversationId:
type: string
format: uuid
userPrompt:
type: string
approvalToUseMetadata:
type: boolean
Conversation:
type: object
properties:
requestDateTime:
type: string
format: date-time
prompt:
type: string
answer:
type: string