curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/agents/proxy/agent-card \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sourceURL": "https://example.com/.well-known/agent-card.json"
}
'Fetch agent card JSON from a source URL.
curl --request POST \
--url https://{controlPlaneURL}/api/svc/v1/agents/proxy/agent-card \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sourceURL": "https://example.com/.well-known/agent-card.json"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
URL to fetch agent card JSON from
"https://example.com/.well-known/agent-card.json"
Agent card fetched successfully
Was this page helpful?