Skip to main content
GET
/
agent
/
skill
/
skills
Skill List
curl --request GET \
  --url https://www.aionmarket.com/bvapi/agent/skill/skills \
  --header 'Authorization: Bearer <token>'
{
  "list": [
    {
      "skillCode": "<string>",
      "skillName": "<string>",
      "uploadUserId": 123,
      "category": 123,
      "version": "<string>",
      "description": "<string>",
      "howItWorks": "<string>",
      "author": "<string>",
      "clawhubUrl": "<string>",
      "githubUrl": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.aionmarket.com/llms.txt

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

Skills

Get discoverable skills from the public registry view. Only skills with:
  • review_status = 2 (approved)
  • is_visible = 1 (visible)
are returned.

Endpoint

GET /agent/skill/skills

Headers

HeaderRequiredDescription
AuthorizationYesBearer API_KEY_CODE

Query Params

FieldTypeRequiredDescription
categorynumberNoSkill category filter (1 Official, 2 Partner)
limitnumberNoPage size, default 20, max 100
offsetnumberNoPagination offset, default 0

Example

curl -X GET "https://www.aionmarket.com/bvapi/agent/skill/skills?category=2&limit=20&offset=0" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response Example

{
  "list": [
    {
      "skillCode": "7f3b9f2a-2051-4be3-b0cc-7a9c4c8d0f15",
      "skillName": "Weather Arbitrage",
      "uploadUserId": 35,
      "category": 2,
      "version": "1.0.0",
      "author": "AION Trader",
      "description": "Use weather signals to identify divergence.",
      "difficultyLevel": 2,
      "installCount": 0,
      "how_it_works": "Scan weather events and place entries.",
      "clawhubUrl": "",
      "githubUrl": "",
      "createSource": 1,
      "reviewStatus": 2,
      "reviewRemark": "Approved",
      "createdAt": "1713000000000",
      "updatedAt": "1713000000000"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
default:YOUR_API_KEY
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

category
enum<integer>

Skill category: 1=Official, 2=Partner

Available options:
1,
2
limit
integer
default:20

Page size (default 20, max 100)

Required range: 1 <= x <= 100
offset
integer
default:0

Pagination offset

Required range: x >= 0

Response

200 - application/json

Skill list

list
object[]