can I plug in Deepseek api
Yes! We have a native Deepseek integration that enables you to use DeepSeek R1 within your Clay tables. This integration is included in all plans and provides AI-generated responses. If you need to connect to any external API that isn't in our integrations list, you can also use our HTTP API feature to connect to any tool you have API access to.
Great
Hey, Yes, you can connect the DeepSeek API using the HTTP API column in Clay. Just follow their API documentation format when setting it up. Just note—it can’t be used inside a standard enrichment like Claygent. Let me know if you have more questions.
I saw ,but still don’t know how to set up
Hey! Here’s how to set up the DeepSeek API in Clay using the HTTP API column:
1. Go to the DeepSeek API docs and find the curl example
https://api.deepseek.com/chat/completions
1. In Clay, create a new HTTP API column and fill in the fields as follows:
** Endpoint::[https:://api.deepseek.com/chat/completions](https://api.deepseek.com/chat/completions)
** Method: POST
** Headers: LBKSContent-Type: application/json, Authorization: Bearer YOUR_API_KEYLBKS
** Body: LBKS{ "model": "deepseek-chat", "messages": [ { "role": "system", "content": "You are a helpful assistant." }, { "role": "user", "content": "Hello!" } ], "stream": false }LBKS
1. Replace "YOUR_API_KEY" with your actual DeepSeek key.
2. You can make the body dynamic using column references like /prompt if needed.
That’s it. This setup mirrors their cURL call and works within Clay. Let me know if you want help adjusting the prompt or using a different model.
sorry, Ican't open the Link
Hello! Thanks for reaching out. This is the revised link: https://api-docs.deepseek.com/api/create-chat-completion