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.
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: <b>Allowed user roles:</b><br/><ul><li>sdzAdmin</li><li>sdzReadOnly</li><li>sdzUser</li></ul><br/><br/>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'
/api/blastai/conversation/public:
post:
tags:
- BlastAI APIs
description: <b>Allowed user roles:</b><br/><ul><li>sdzAdmin</li><li>sdzReadOnly</li><li>sdzUser</li></ul><br/><br/>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'
/api/blastai/conversation/{conversationId}:
get:
tags:
- BlastAI APIs
description: <b>Allowed user roles:</b><br/><ul><li>sdzAdmin</li><li>sdzReadOnly</li><li>sdzUser</li></ul><br/><br/>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'
components:
schemas:
Conversation:
type: object
properties:
requestDateTime:
type: string
format: date-time
prompt:
type: string
answer:
type: string
ConversationRequest:
type: object
properties:
conversationId:
type: string
format: uuid
userPrompt:
type: string
approvalToUseMetadata:
type: boolean
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'