Skip to main content
POST
/
v1
/
agents
/
suggest
curl --request POST \
  --url https://api.gigabrain.gg/v1/agents/suggest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "context": {
    "asset": "ETH",
    "style": "momentum",
    "risk_tolerance": "moderate",
    "max_position_size": "10%",
    "timeframe": "4H"
  }
}
'
{
  "suggestions": [
    {
      "name": "<string>",
      "description": "<string>",
      "goal": "<string>",
      "instructions": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Gigabrain API key. Get one at https://gigabrain.gg/profile?tab=api. Format: gb_sk_...

Body

application/json
context
object

Free-form JSON object. Pass in any market context, preferences, or constraints you want. Gets sent to the AI strategy engine alongside your account.

Response

Strategy suggestions

suggestions
object[]