Free.ai Slack Integration
Add AI tools directly to your Slack workspace.
Како то функционише
Connect Free.ai to your Slack workspace using an incoming webhook. Once connected, you can trigger AI tasks from Slack and receive results directly in your channels.
Корак 1: Узми свој Free.ai АПИ кључ
- Упиши се на your Free.ai account (или створи једног слободног).
- Иди на Поставке програмера и стварају API кључ.
- Copy the key — you will need it for the webhook configuration.
Корак 2: Направите долазни веб- корак
- In Slack, go to Апликације → search for Долазни веб- кугли → Додај у Слацк.
- Изаберите канал на ком желите да се пошаљу резултати ВИ.
- Копирај УРЛ веб- кугла (нпр.,
https://hooks.slack.com/services/T.../B.../...).
Корак 3: Повежи се преко АПИ‐ а
Use a simple script or Zapier to bridge Free.ai and Slack. Here is an example using curl:
# 1. Call Free.ai API
RESPONSE=$(curl -s -X POST https://api.free.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_FREEAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"qwen2.5-72b","messages":[{"role":"user","content":"Summarize the latest AI news"}]}')
# 2. Extract the reply
TEXT=$(echo $RESPONSE | python3 -c "import sys,json; print(json.load(sys.stdin)['choices'][0]['message']['content'])")
# 3. Post to Slack
curl -X POST YOUR_SLACK_WEBHOOK_URL \
-H "Content-Type: application/json" \
-d "{\"text\": \"$TEXT\"}"
Случаји коришћења
- Збир дугих Слацк нити са једном наредбом
- Преведи поруке за вишејезичне тимове
- Генериши нацрте садржаја и добиј повратну реакцију у каналу
- Ауто-пост дневни извештаји ВИ-генерирани
- Питања тима одговора користећи АИ базу знања
честа питања
You need a Free.ai API key and a Slack incoming webhook. Get the API key from your developer settings, create a webhook in Slack's app directory, then use a script or Zapier to bridge API calls between Free.ai and Slack.
No custom app installation is required. The integration uses Slack's built-in incoming webhooks feature and standard API calls to Free.ai. This keeps setup simple and does not require Slack admin approval in most workspaces.
Можете сажети дуге нити, превести поруке за вишејезичне тимове, генерисати нацрте садржаја, аутоматски дневни изв› јештаји ВИ, одговорити на питања тима користећи ВИ, класификовати долазеће поруке и стварати слике из описа текста.
Да. Приликом прављења АПИ позива, можете навести било који од 346+ доступних модела. Користите само- домаћинске моделе попут Qwen2.5-72B за бесплатно коришћење или премијум модела попут GPT-4o за сложеније задатке.
The integration itself is free to set up. API calls consume tokens from your Free.ai account. Self-hosted models are free within your daily limit, and premium models deduct from your token balance.
Yes. Combine Free.ai with Slack and a scheduler (cron job, Zapier, or similar) to run AI tasks on a recurring schedule. For example, generate a daily AI news summary and post it to a Slack channel every morning.
After calling the Free.ai API, extract the response content and send it to your Slack webhook URL as a JSON payload with a 'text' field. The example script on this page shows the complete flow.
Да. Направите одвојене долазне веб куглице за сваки канал где желите да се постављају резултати ВИ. Можете подесити различите радне токове за различите канале, сваки користећи различите моделе или упите.
Yes. You can configure your integration to post AI responses as thread replies rather than new messages. Use Slack's thread_ts parameter in your webhook payload to reply within a specific thread.
Free.ai does not store your Slack messages. The API processes the text you send, returns a response, and does not retain the input. Your data is never used for training. See our security page for full details.
Интеграција на интернету ради са свим плановима Слацк, укључујући и Ентерпрајз Мрежу, за организације које су потребне тешке интеграције са ССО и контроле усклађености, контактирајте нас о нашим плановима предузећа.
Check that your Free.ai API key is still valid, verify the Slack webhook URL has not been revoked, and ensure your script or automation is running. Test each component independently -- the Free.ai API first, then the Slack webhook.