Skip to main content
POST
/
v1
/
a2a
/
discover
Typescript (SDK)
import { RaijinLabsLucidAi } from "raijin-labs-lucid-ai";

const raijinLabsLucidAi = new RaijinLabsLucidAi({
  bearerAuth: process.env["RAIJINLABSLUCIDAI_BEARER_AUTH"] ?? "",
});

async function run() {
  const result = await raijinLabsLucidAi.a2A.lucidDiscoverA2aAgent({
    agentUrl: "https://unripe-bug.info/",
  });

  console.log(result);
}

run();
{
  "success": true,
  "agent_card": {
    "name": "<string>",
    "description": "<string>",
    "url": "<string>",
    "provider": {
      "organization": "<string>",
      "url": "<string>"
    },
    "version": "<string>",
    "capabilities": {},
    "skills": [
      {
        "id": "<string>",
        "name": "<string>",
        "description": "<string>"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.lucid.foundation/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Lucid API key (lk_live_... or lk_test_...)

Body

application/json
agent_url
string<uri>
required

HTTPS URL of the agent

auth_token
string

Optional auth token for the remote agent

Response

Agent discovered

success
boolean
required
agent_card
object
required

A2A Agent Card for agent discovery (per A2A protocol spec).