Skip to content

Commit dd708b9

Browse files
mtrunkatTC-MO
andauthored
feat: Adding missing integrations and info for people integrating their services with Apify (#915)
- Added missing integrations to https://docs.apify.com/platform/integrations - Removed + redirected GPT plugin - Added info for 3rd SaaS apps that want to integrate with us @jancurn adding you as GPT plugin was yours and also as it was your idea to add this page. Once done content-wise, Ill add Theo. --------- Co-authored-by: TCMO <[email protected]>
1 parent 1714c98 commit dd708b9

File tree

9 files changed

+61
-41
lines changed

9 files changed

+61
-41
lines changed

nginx.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,4 +286,8 @@ server {
286286
rewrite ^/platform/actors/development/continuous-integration$ /platform/actors/development/deployment/continuous-integration redirect;
287287
rewrite ^/platform/actors/development/testing-and-maintenance$ /platform/actors/development/deployment/automated-tests redirect;
288288
rewrite ^/platform/actors/development/source-code$ /platform/actors/development/deployment/source-types redirect;
289+
290+
# Removed pages
291+
# GPT plugins were discontinued April 9th, 2024 - https://help.openai.com/en/articles/8988022-winding-down-the-chatgpt-plugins-beta
292+
rewrite ^/platform/integrations/chatgpt-plugin$ https://blog.apify.com/add-custom-actions-to-your-gpts/ redirect;
289293
}

sources/platform/integrations/chatgpt.md

Lines changed: 0 additions & 41 deletions
This file was deleted.
343 KB
Loading
303 KB
Loading

sources/platform/integrations/index.mdx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ import CardGrid from "@site/src/components/CardGrid";
2121
2222
Integrations allow you to combine separate applications and take advantage of their combined capabilities. Automation of these online processes increases your productivity. That's why we made Apify in a way that allows you to connect it with practically any cloud service or web app and make it part of your larger projects.
2323

24+
If you are building a service and your users could benefit from integrating with Apify or wise-versa then ready the [integrate with Apify](./integrate_with_apify.md).
25+
2426
## Built-in integrations
2527

2628
Apify‘s RESTful API allows you to interact with the platform programmatically. HTTP webhooks notify you and your services when important events happen. By using the API, you can start Actors, retrieve their results, or basically do anything you can do on a platform UI
@@ -120,6 +122,12 @@ If you use one of the main automation platforms, Apify support is here for you.
120122
imageUrl="/img/platform/integrations/transposit.svg"
121123
smallImage
122124
/>
125+
<Card
126+
title="Telegram (via Zapier)"
127+
to="./integrations/telegram"
128+
imageUrl="/img/platform/integrations/telegram.svg"
129+
smallImage
130+
/>
123131
</CardGrid>
124132

125133

@@ -158,6 +166,18 @@ If you are working on an AI/LLM-related project, we recommend you look into the
158166
imageUrl="/img/platform/integrations/langchain.png"
159167
smallImage
160168
/>
169+
<Card
170+
title="Llamaindex"
171+
to="./integrations/llama"
172+
imageUrl="/img/platform/integrations/llamaindex.jpeg"
173+
smallImage
174+
/>
175+
<Card
176+
title="Flowise"
177+
to="./integrations/flowise"
178+
imageUrl="/img/platform/integrations/Flowise.png"
179+
smallImage
180+
/>
161181
</CardGrid>
162182

163183
## Other Actors
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: Integrate with Apify 🤝
3+
sidebar_label: Integrate with Apify
4+
description: Learn about how to integrate your service with Apify to benefit from a mutual integration.
5+
sidebar_position: 90.00
6+
slug: /integrations/integrate
7+
---
8+
9+
If you are building a service and your users could benefit from integrating with Apify or vice versa, we would love to hear from you! Contact us at [[email protected]](mailto:[email protected]) to discuss potential collaboration. We are always looking for ways to make our platform more useful and powerful for our users. Here are some examples of services and tools integrating with Apify:
10+
11+
- [Langchain](./langchain.md) integration enables developers to build their projects, such as AI chatbots, with Langchain to feed them with data from the web easily.
12+
- [Zapier](./zapier.md) integration allows Zapier users to enrich their automation workflows with data from the web or to add additional Actions performed by [Apify Actors](https://apify.com/store).
13+
- [Keboola](https://help.apify.com/en/articles/2003234-keboola-integration) integration enables Keboola users to easily pull data crawled from the web into their data pipelines.
14+
15+
and many more that you can see at [integrations](./index.mdx).
16+
17+
## Integrating with Apify
18+
19+
To integrate your service with Apify, you have two options. You can either:
20+
21+
- build an [Apify actor](https://apify.com/docs/actor) that will be used as integration within the [Apify Console](https://console.apify.com)
22+
- build an external integration, such as [Zapier](./zapier.md).
23+
24+
![Integration-ready Actors](./images/integration-ready-actors.png)
25+
26+
### Building an integration Actor
27+
28+
The best way to reach out to Apify users is directly within [Apify Console](https://console.apify.com). To do that, you need to build an integrable Actor that can be piped into other Actors to upload existing data into a database. This can then be easily configured within Apify Console. Follow the [guide on building integration-ready Actors](./actors/integration_ready_actors.md).
29+
30+
### Building an external integration
31+
32+
Alternatively, you can let your users manage the connection directly on your side using [Apify API](https://docs.apify.com/api/v2) and our API clients for [JavaScript](/api/client/js/) or [Python](/api/client/python/). This way, you can provide a seamless experience for your users and let them manage the connection directly from your service.
33+
34+
For inspiration, take a look at the public repositories of our existing external integrations [Zapier](https://github.com/apify/apify-zapier-integration) or [Keboola](https://github.com/apify/keboola-ex-apify) both done in JavaScript or [Airbyte](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-apify-dataset) written in Python.
35+
36+
![Airbyte sources tab](./images/airbyte-sources-web.png)
13.1 KB
Loading
7.84 KB
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)