2018-04-17 00:15:26 +02:00
|
|
|
# The Zulip API
|
2017-07-25 02:37:04 +02:00
|
|
|
|
2018-04-17 00:15:26 +02:00
|
|
|
Zulip's APIs allow you to integrate other services with Zulip. This
|
|
|
|
guide should help you find the API you need:
|
2017-07-25 02:37:04 +02:00
|
|
|
|
2018-04-17 00:15:26 +02:00
|
|
|
* First, check if the tool you'd like to integrate with Zulip
|
2018-06-18 17:44:48 +02:00
|
|
|
[already has a native integration](/integrations).
|
2018-04-17 00:15:26 +02:00
|
|
|
* Next, check if [Zapier](https://zapier.com/apps) or
|
2018-08-10 19:11:57 +02:00
|
|
|
[IFTTT](https://ifttt.com/search) has an integration.
|
|
|
|
[Zulip's Zapier integration](/integrations/doc/zapier) and
|
|
|
|
[Zulip's IFTTT integration](/integrations/doc/ifttt) often allow
|
2018-04-17 00:15:26 +02:00
|
|
|
integrating a new service with Zulip without writing any code.
|
|
|
|
* If you'd like to send content into Zulip, you can
|
2018-07-04 02:08:27 +02:00
|
|
|
[write a native incoming webhook integration](/api/incoming-webhooks-overview)
|
2018-06-18 17:44:48 +02:00
|
|
|
or use [Zulip's API for sending messages](/api/send-message).
|
2018-04-17 00:15:26 +02:00
|
|
|
* If you're building an interactive bot that reacts to activity inside
|
|
|
|
Zulip, you'll want to look at Zulip's
|
|
|
|
[Python framework for interactive bots](/api/running-bots) or
|
|
|
|
[Zulip's real-time events API](/api/get-events-from-queue).
|
2018-06-30 14:41:50 +02:00
|
|
|
|
|
|
|
And if you still need to build your own integration with Zulip, check out
|
|
|
|
the full [REST API](/api/rest), generally starting with
|
|
|
|
[installing the API client bindings](/api/installation-instructions).
|
|
|
|
|
|
|
|
In case you already know how you want to build your integration and you're
|
|
|
|
just looking for an API key, we've got you covered [here](/api/api-keys).
|