Skip to content

Commit

Permalink
feat(integrations): add support for replicate (#2766)
Browse files Browse the repository at this point in the history
## Describe your changes
Added Replicate support

## Issue ticket number and link
#2765

## Checklist before requesting a review (skip if just adding/editing
APIs & templates)
- [ ] I added tests, otherwise the reason is: 
- [ ] I added observability, otherwise the reason is:
- [ ] I added analytics, otherwise the reason is:
  • Loading branch information
claudfuen authored Sep 25, 2024
1 parent d27f107 commit 168ccb2
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 0 deletions.
31 changes: 31 additions & 0 deletions docs-v2/integrations/all/replicate.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Replicate
sidebarTitle: Replicate
---

API configuration: [`replicate`](https://nango.dev/providers.yaml)

## Features

| Features | Status |
| - | - |
| [Auth (API Key)](/integrate/guides/authorize-an-api) ||
| [Sync data](/integrate/guides/sync-data-from-an-api) ||
| [Perform workflows](/integrate/guides/perform-workflows-with-an-api) ||
| [Proxy requests](/integrate/guides/proxy-requests-to-an-api) ||
| [Receive webhooks](/integrate/guides/receive-webhooks-from-an-api) | 🚫 (time to contribute: <48h) |

<Tip>We can implement missing features in &lt;48h, just ask for it in the [community](https://nango.dev/slack).</Tip>

## Getting started

- [Replicate API docs](https://replicate.com/docs/reference/)
- [Authentication and API key](https://replicate.com/docs/reference/http#authentication)

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

## API gotchas

- Replicate uses API_KEY auth mode with Authorization: Bearer `api_key` in the request header to access different endpoints.

<Note>Add Getting Started links and Gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/replicate.mdx)</Note>
1 change: 1 addition & 0 deletions docs-v2/integrations/dev-tools.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ sidebarTitle: Developer Tools
<Card title="PagerDuty" href="/integrations/all/pagerduty" color="#68a063" />
<Card title="Pendo" href="/integrations/all/pendo" color="#68a063" />
<Card title="Posthog" href="/integrations/all/posthog" color="#68a063" />
<Card title="Replicate" href="/integrations/all/replicate" color="#68a063" />
<Card title="Shortcut" href="/integrations/all/shortcut" color="#68a063" />
<Card title="Snowflake" href="/integrations/all/snowflake" color="#68a063" />
<Card title="Squarespace" href="/integrations/all/squarespace" color="#68a063" />
Expand Down
1 change: 1 addition & 0 deletions docs-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@
"integrations/all/ramp",
"integrations/all/reddit",
"integrations/all/refiner",
"integrations/all/replicate",
"integrations/all/ring-central",
"integrations/all/sage",
"integrations/all/salesforce",
Expand Down
8 changes: 8 additions & 0 deletions packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2835,6 +2835,14 @@ refiner:
Authorization: Bearer ${apiKey}
base_url: https://api.refiner.io/v1
docs: https://docs.nango.dev/integrations/all/refiner
replicate:
display_name: Replicate
auth_mode: API_KEY
proxy:
headers:
Authorization: Bearer ${apiKey}
base_url: https://api.replicate.com
docs: https://docs.nango.dev/integrations/all/replicate
ring-central:
display_name: RingCentral
categories:
Expand Down
7 changes: 7 additions & 0 deletions packages/webapp/public/images/template-logos/replicate.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 168ccb2

Please sign in to comment.