Agent skill
bitrix
Bitrix24 CRM API. Use when user mentions "Bitrix", "CRM", "Bitrix24 contacts", or asks about CRM management.
Install this agent skill to your Project
npx add-skill https://github.com/vm0-ai/vm0-skills/tree/main/bitrix
SKILL.md
Bitrix24 API
Use the Bitrix24 REST API via direct curl calls to manage CRM, tasks, and users in your Bitrix24 workspace.
Official docs:
https://apidocs.bitrix24.com/
When to Use
Use this skill when you need to:
- Manage CRM leads (create, update, list, delete)
- Manage CRM deals and sales funnels
- Manage CRM contacts and companies
- Create and manage tasks
- Get user information
- Automate business workflows
Prerequisites
- Log in to your Bitrix24 workspace
- Go to Applications → Developer Resources → Ready-made scenarios → Other → Incoming webhook
- Create a new webhook and select the required permissions (CRM, Tasks, Users)
- Copy the webhook URL
- Store it in the environment variable
export BITRIX_WEBHOOK_URL="https://your-domain.bitrix24.com/rest/1/your-secret-code"
Webhook URL Format
https://[domain]/rest/[user-id]/[secret-code]/[method].json
domain: Your Bitrix24 addressuser-id: Webhook creator's IDsecret-code: Authentication token (keep secure)method: API method name
How to Use
All examples assume BITRIX_WEBHOOK_URL is set to your webhook base URL.
1. Get Current User
Get information about the authenticated user:
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/user.current.json"
Response:
{
"result": {
"ID": "1",
"NAME": "John",
"LAST_NAME": "Doe",
"EMAIL": "john@example.com"
}
}
2. List Users
Get a list of users in the workspace:
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/user.get.json" | jq '.result[] | {ID, NAME, LAST_NAME, EMAIL}'
CRM - Leads
3. Create a Lead
Write to /tmp/bitrix_request.json:
{
"fields": {
"TITLE": "New Lead from API",
"NAME": "John",
"LAST_NAME": "Doe",
"PHONE": [{"VALUE": "+1234567890", "VALUE_TYPE": "WORK"}],
"EMAIL": [{"VALUE": "john@example.com", "VALUE_TYPE": "WORK"}]
}
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.add.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
Response:
{
"result": 123
}
4. Get a Lead
Replace <your-lead-id> with the actual lead ID:
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.get.json?id=<your-lead-id>"
5. List Leads
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.list.json" | jq '.result[] | {ID, TITLE, STATUS_ID}'
With filter:
Write to /tmp/bitrix_request.json:
{
"filter": {"STATUS_ID": "NEW"},
"select": ["ID", "TITLE", "NAME", "PHONE"]
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.list.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
6. Update a Lead
Write to /tmp/bitrix_request.json:
{
"id": 123,
"fields": {
"STATUS_ID": "IN_PROCESS",
"COMMENTS": "Updated via API"
}
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.update.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
7. Delete a Lead
Replace <your-lead-id> with the actual lead ID:
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.delete.json?id=<your-lead-id>"
CRM - Contacts
8. Create a Contact
Write to /tmp/bitrix_request.json:
{
"fields": {
"NAME": "Jane",
"LAST_NAME": "Smith",
"PHONE": [{"VALUE": "+1987654321", "VALUE_TYPE": "MOBILE"}],
"EMAIL": [{"VALUE": "jane@example.com", "VALUE_TYPE": "WORK"}]
}
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/crm.contact.add.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
9. List Contacts
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.contact.list.json" | jq '.result[] | {ID, NAME, LAST_NAME}'
CRM - Deals
10. Create a Deal
Write to /tmp/bitrix_request.json:
{
"fields": {
"TITLE": "New Deal from API",
"STAGE_ID": "NEW",
"OPPORTUNITY": 5000,
"CURRENCY_ID": "USD"
}
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/crm.deal.add.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
11. List Deals
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.deal.list.json" | jq '.result[] | {ID, TITLE, STAGE_ID, OPPORTUNITY}'
12. Update Deal Stage
Write to /tmp/bitrix_request.json:
{
"id": 456,
"fields": {
"STAGE_ID": "WON"
}
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/crm.deal.update.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
Tasks
13. Create a Task
Write to /tmp/bitrix_request.json:
{
"fields": {
"TITLE": "New Task from API",
"DESCRIPTION": "Task description here",
"RESPONSIBLE_ID": 1,
"DEADLINE": "2025-12-31"
}
}
Then run:
curl -s -X POST "$(printenv BITRIX_WEBHOOK_URL)/tasks.task.add.json" --header "Content-Type: application/json" -d @/tmp/bitrix_request.json
14. List Tasks
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/tasks.task.list.json" | jq '.result.tasks[] | {id, title, status}'
15. Complete a Task
Replace <your-task-id> with the actual task ID:
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/tasks.task.complete.json?taskId=<your-task-id>"
Get Field Definitions
Get available fields for any entity:
# Lead fields
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.lead.fields.json"
# Contact fields
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.contact.fields.json"
# Deal fields
curl -s -X GET "$(printenv BITRIX_WEBHOOK_URL)/crm.deal.fields.json"
Common Parameters
| Parameter | Description |
|---|---|
filter |
Filter results (e.g., {"STATUS_ID": "NEW"}) |
select |
Fields to return (e.g., ["ID", "TITLE"]) |
order |
Sort order (e.g., {"ID": "DESC"}) |
start |
Pagination offset |
Guidelines
- Keep webhook secret: Never expose your webhook URL publicly
- Use POST for complex queries: Filters and field selections work better with POST
- Check field names: Use
*.fields.jsonmethods to get valid field names - Rate limits: Bitrix24 has rate limits; add delays for bulk operations
- Pagination: Results are paginated; use
startparameter for large datasets
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
brave-search
Brave Search API for web search. Use when user says "search web", "Brave search", or asks to "find on web" without specifying Google.
supadata
Supadata API for YouTube/web data. Use when user mentions "Supadata", "YouTube data", "channel stats", or web scraping data.
roadmap-planning
Build and prioritize product roadmaps using scoring models like RICE, ICE, and value-effort matrices. Activate when creating a product roadmap, prioritizing features, sequencing initiatives, mapping dependencies, balancing team capacity, choosing between Now/Next/Later or quarterly planning, or communicating roadmap tradeoffs to executives and stakeholders.
qdrant
Qdrant API for vector search. Use when user mentions "Qdrant", "vector database", "semantic search", or embeddings storage.
calendly
Calendly scheduling API. Use when user mentions "Calendly", "calendly.com", "schedule a meeting", "booking link", "event types", or asks about interview scheduling.
stripe
Stripe API for payments. Use when user mentions "Stripe", "payment", "subscription", "billing", "invoice", or asks about payment processing.
Didn't find tool you were looking for?