> ## Documentation Index
> Fetch the complete documentation index at: https://docs.darwin.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Configure an agent

> Create an agent, add a skill, and inspect its integrations.

Create a business agent:

```bash theme={null}
curl https://api.darwin.so/api/v1/agents \
  -X POST \
  -H "Authorization: Bearer $DARWIN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"Procurement","description":"Sources software and services."}'
```

Use the returned `agent.id` to add skills, assets, teammates, and access policies. Integrations are listed separately because a connection grants availability, while skills describe how the agent should use it.

```bash theme={null}
curl https://api.darwin.so/api/v1/integrations \
  -H "Authorization: Bearer $DARWIN_API_KEY"
```

<Card title="Agent endpoints" icon="robot" href="/api-reference/agents/list-accessible-agents">
  Open the complete Agents reference.
</Card>
