Skip to main content
POST
/
v1
/
marketplace
/
search
Search Marketplace Catalog
curl --request POST \
  --url https://api.aegisintent.xyz/v1/marketplace/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Aegis-Email: <x-aegis-email>' \
  --data '
{
  "keyword": "<string>",
  "category": "<string>",
  "type": "<string>",
  "limit": 49,
  "offset": 123
}
'
{
  "success": true,
  "results": {
    "services": [
      {}
    ],
    "total": 123,
    "limit": 123,
    "offset": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aegisintent.xyz/llms.txt

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

Query, paginate, and search available service resources registered in the Circle Marketplace catalog.

Authorizations

Authorization
string
header
required

Provide raw API session token issued by /v1/connect/complete

Headers

X-Aegis-Email
string
required

Agent email address

Body

application/json
keyword
string
category
string
type
string
limit
integer
Required range: x <= 50
offset
integer

Response

200 - application/json

Marketplace services searched successfully

success
boolean
results
object