Nexwatt speaks your stack.
Pre-built connectors for the tools your ops team already runs. Six categories: CRM, project management, communication, spreadsheets and databases, HR and finance, and custom REST APIs. If it has an API, the agent can call it.
24 pre-built connectors. New ones added based on demand.
If it has a REST API, Nexwatt can connect to it.
Define a custom connector with a JSON descriptor: base URL, authentication method (API key, OAuth 2.0, or bearer token), and the endpoints your agent should call. Nexwatt handles the request lifecycle, response parsing, and retry logic. Credentials are stored in the vault, never in the agent definition.
Webhook triggers are supported for any system that can make an outbound HTTP request. If your internal tool can POST a JSON payload, it can trigger an agent.
"connector_id": "my-internal-api",
"base_url": "https://api.yourco.com/v1",
"auth": {
"type": "bearer",
"secret_ref": "vault://nexwatt/my-api-key"
},
"endpoints": [
{
"id": "get_order",
"method": "GET",
"path": "/orders/{order_id}"
},
{
"id": "update_status",
"method": "PATCH",
"path": "/orders/{order_id}/status"
}
]
}
Don't see your tool? Tell us what you need.
We prioritize new connectors based on request volume. If five or more teams need the same tool, it goes to the front of the build queue. If your tool has a REST API and you can't wait, the custom connector path takes most engineering teams under an hour.