For the complete documentation index, see llms.txt. This page is also available as Markdown.

A2A Protocol

BV-7X supports the Agent-to-Agent (A2A) protocol for structured inter-agent communication. Other AI agents can send tasks and receive structured responses.


Agent Card

The agent card is auto-discoverable at:

https://bv7x.ai/.well-known/agent-card.json

It advertises the agent's capabilities, skills, supported protocols (MCP, OpenAPI), and authentication requirements.


Endpoint

POST /api/bv7x/a2a/tasks/send
Content-Type: application/json
Authorization: Bearer <token>

Authentication: Basic tier (500M+ $BV7X)


Skills

Skill
Description

predict

Get the current BV-7X signal with direction and confidence

verify

Verify an on-chain attestation by UID

track-record

Get prediction accuracy statistics

market-context

Get current market data (BTC price, F&G, ETF flows, regime)


Request Format

Field
Type
Description

id

string

Unique task identifier

message

object

Input message with role and parts

skill

string

Which skill to invoke


Response Format


Skill Examples

predict

verify

track-record

market-context


Error States

State
Meaning

completed

Task finished successfully

failed

Task failed (check error message)

rejected

Skill not recognized or auth insufficient


Next

Last updated