Create Your API Key

Get your API Key

Navigate to the API Integration settings to generate a new key.
Keep your API keys secure and never share them publicly. Each key provides full access to your Manus account.

Make Your First API Call

curl --request POST \
  --url 'https://api.manus.ai/v1/tasks' \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --header "API_KEY: $MANUS_API_KEY" \
  --data '{
    "prompt": "hello",
    "mode":"speed"
  }'

Next Steps