Skip to main content

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
  • Python
  • TypeScript
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

Now that you’ve made your first API call, here are a few things you can do to learn more about the Manus API:

Switch from OpenAI in 3 lines of code

Learn more about our Responses API, allowing you to switch from OpenAI to the Manus API with just 3 lines of code.
I