makexlisted
Install: claude install-skill dvcrn/openclaw-skills-marketplace
# OpenClaw Integrations API
OpenClaw is a skill-based integration system that allows apps built on MakeX to discover and execute actions from third-party services (Gmail, Slack, GitHub, etc.) via Composio.
## Authentication
All endpoints require the `X-Org-Token` header containing an organization service token. This token is validated against the organization database. User session cookies are not used — these endpoints are designed for server-to-server communication.
```
X-Org-Token: <org-service-token>
```
**Don't have an org token?**
1. Go to [https://www.makex.app/](https://www.makex.app/) and sign up for an account.
2. Navigate to **Settings** in your dashboard.
3. Copy your API key from the settings page — this is your `X-Org-Token`.
## Base URL
```
POST /api/openclaw/integrations/<endpoint>
```
All endpoints support CORS via a preflight `OPTIONS` handler.
## Endpoints
### 1. Search Actions
**POST** `/api/openclaw/integrations/search-actions`
Discover available actions/tools across one or more integrations.
**Request Body:**
```json
{
"integrations": ["gmail", "slack", "github"],
"toolkit": "gmail",
"search": "send"
}
```
- `integrations` (required): Array of integration slugs to search across.
- `toolkit` (optional): If provided, overrides `integrations` and searches only this toolkit.
- `search` (optional): Filter actions by keyword.
**Response (200):**
```json
{
"total": 12,
"actions": {
"gmail": [
{ "slug": "GMAIL_SEND_EMAIL", "na