curl --request PUT \
--url https://api.gigabrain.gg/v1/superagents/{agent_id}/skills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"disabled": [
"polymarket"
]
}
'{
"agent_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"status": "updated"
}{
"statusCode": 401,
"message": "Invalid or revoked API key"
}{
"statusCode": 404,
"message": "Agent not found"
}{
"statusCode": 429,
"message": "Rate limit exceeded",
"retryAfter": 45,
"resetAt": "2023-11-07T05:31:56Z"
}Config
Update skills config
Enable or disable specific skills. Pass a list of skill names to disable.
PUT
/
v1
/
superagents
/
{agent_id}
/
skills
curl --request PUT \
--url https://api.gigabrain.gg/v1/superagents/{agent_id}/skills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"disabled": [
"polymarket"
]
}
'{
"agent_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"status": "updated"
}{
"statusCode": 401,
"message": "Invalid or revoked API key"
}{
"statusCode": 404,
"message": "Agent not found"
}{
"statusCode": 429,
"message": "Rate limit exceeded",
"retryAfter": 45,
"resetAt": "2023-11-07T05:31:56Z"
}Authorizations
Your Gigabrain API key. Get one at https://gigabrain.gg/profile?tab=api. Format: gb_sk_...
Path Parameters
The SuperAgent's unique identifier
Body
application/json
List of skill names to disable. Pass an empty array to enable all.
Response
Skills config updated
Was this page helpful?