🌐
OpenRouter
openrouter.ai › deepseek › deepseek-r1:free
R1 - API, Providers, Stats | OpenRouter
DeepSeek R1 is here: Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass. Run R1 with API
🌐
GitHub
github.com › browser-use › browser-use › issues › 567
How to use OpenRouter API for DeepSeek? · Issue #567 · browser-use/browser-use
February 5, 2025 - import asyncio import os from dotenv import load_dotenv from langchain_openai import ChatOpenAI from browser_use import Agent # dotenv load_dotenv() api_key = "sk-or-v1-xxx" if not api_key: raise ValueError('DEEPSEEK_API_KEY is not set') async def run_search(): agent = Agent( task=( '1. Go to https://www.reddit.com/r/LocalLLaMA ' "2. Search for 'browser use' in the search bar" '3. Click on first result' '4. Return the first comment' ), llm=ChatOpenAI( base_url='https://openrouter.ai/api/v1', model='deepseek/deepseek-chat', api_key=api_key, ), use_vision=False, ) await agent.run() if __name__ == '__main__': asyncio.run(run_search())
Published   Feb 05, 2025
People also ask

Is the DeepSeek API key free?

Yes, it’s free of cost. That's why it has become the favorite of all developers, and they prefer the DeepSeek AI API more than its rivals. It also gives more accurate results than its alternatives.

🌐
deepseeksguides.com
deepseeksguides.com › how-to-get-deepseek-api-key
How to Get DeepSeek API Key for R1 & V3 Models ( 2 Tested Methods)
What models are accessible through the DeepSeek API?

DeepSeek-Chat (V3) and DeepSeek-Reasoner (R1) are accessible through DeepSeek API. Both offer advanced natural language processing capabilities. 

🌐
deepseeksguides.com
deepseeksguides.com › how-to-get-deepseek-api-key
How to Get DeepSeek API Key for R1 & V3 Models ( 2 Tested Methods)
What are the token limits for DeepSeek API requests?

DeepSeek's models support a context length of up to 64K tokens with a default output of 4K tokens.

🌐
deepseeksguides.com
deepseeksguides.com › how-to-get-deepseek-api-key
How to Get DeepSeek API Key for R1 & V3 Models ( 2 Tested Methods)
🌐
Reddit
reddit.com › r/janitorai_official › how to get the deepseek api back! (openrouter method)
[Mature Content] r/JanitorAI_Official on Reddit: HOW TO GET THE DEEPSEEK API BACK! (OPENROUTER METHOD)
July 3, 2025 -

openrouter.ai does literally what chutes did, for freeah~ . anyways enough gatekeeping.

  1. Make an openrouter.ai account

  2. Top right, hover over the burger button and click Settings > API key

  3. Create API Key, name it literally anything it doesnt matter.

  4. COPY API KEY. NOW, SAVE IT. (AND DONT SHARE IT OMFG??)

  5. GO BACK into Janitor.ai, create/go back into a chat or whatever

  6. Top right > API settings > Proxy

(FOLLOW THIS PART VERY CAREFULLY NOW!)

7) PUT THESE IN THE FOLLOWING BOXES:

Model: Custom

deepseek/deepseek-chat-v3-0324:free

Other API/proxy URL:

https://openrouter.ai/api/v1/chat/completions

API Key:

(the api key that you created)

8) NOW: scroll down, press save. now refresh the website and click "Check API Key/Model"

YOU SHOULD GET: Valid API Key. Click Save Settings, and you can start chatting to your bots now!

"I didnt get it!! it said network error.." PRESS SAVE SETTINGS AT THE BOTTOM, THEN REFRESH THE WEBSITE, THEN CLICK CHECK API KEY AND MODEL!

Hope this tutorial helps :3

🌐
OpenRouter
openrouter.ai › tngtech › deepseek-r1t-chimera:free
DeepSeek R1T Chimera (free) - API, Providers, Stats | OpenRouter
DeepSeek-R1T-Chimera is created by merging DeepSeek-R1 and DeepSeek-V3 (0324), combining the reasoning capabilities of R1 with the token efficiency improvements of V3. It is based on a DeepSeek-MoE Transformer architecture and is optimized for ...
🌐
DeepSeek's Guides
deepseeksguides.com › how-to-get-deepseek-api-key
How to Get DeepSeek API Key for R1 & V3 Models ( 2 Tested Methods)
2 weeks ago - But if you don’t want to waste your time fixing errors and looking for any other alternative source for DeepSeek AI API creation, then Open Router is the best option. Follow the following steps to create a DeepSeek API from the Open Router Website: Go to https://openrouter.ai/ and click on ...
🌐
Apidog
apidog.com › blog › how-to-use-deepseek-api-for-free
How to Use DeepSeek API for Free: A Step-by-Step Guide
October 20, 2025 - Below is the basic Python script that sends a request to the DeepSeek API using the requests library. import requests # Replace with your OpenRouter API key API_KEY = 'your_openrouter_api_key' API_URL = 'https://openrouter.ai/api/v1/chat/completions' # Define the headers for the API request headers = { 'Authorization': f'Bearer {API_KEY}', 'Content-Type': 'application/json' } # Define the request payload (data) data = { "model": "deepseek/deepseek-chat:free", "messages": [{"role": "user", "content": "What is the meaning of life?"}] } # Send the POST request to the DeepSeek API response = requests.post(API_URL, json=data, headers=headers) # Check if the request was successful if response.status_code == 200: print("API Response:", response.json()) else: print("Failed to fetch data from API.
🌐
OpenRouter
openrouter.ai › deepseek › deepseek-v3.2 › api
DeepSeek: DeepSeek V3.2 – Quickstart | OpenRouter
Sample code and API for DeepSeek: DeepSeek V3.2 - DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance.
🌐
Syntackle
syntackle.com › blog › deepseek-ai-model-and-openrouter
How to Use DeepSeek-R1 AI Model: A Comprehensive Guide
March 1, 2025 - If you do have existing balance in your DeepSeek account to use deepseek-r1, you can use OpenAI's SDK with your DeepSeek API key and change the base_url to https://api.deepseek.com.
Find elsewhere
🌐
Medium
medium.com › @fayaz-khan › how-to-use-deepseek-api-for-free-a-step-by-step-guide-b1362aed3e6f
How to Use DeepSeek API for Free: A Step-by-Step Guide | by Fayaz Khan | Medium
March 27, 2025 - Create a new Python file (I’ve named mine deepseek.py) and add the following code: import requests # Your OpenRouter API key (replace with your actual key) API_KEY = 'your_openrouter_api_key' API_URL = 'https://openrouter.ai/api/v1/chat/c...
🌐
OpenRouter
openrouter.ai › provider › deepseek
DeepSeek | OpenRouter
DeepSeek-V3.2 is a large language model designed to harmonize high computational efficiency with strong reasoning and agentic tool-use performance. It introduces DeepSeek Sparse Attention (DSA), a fine-grained sparse attention mechanism that ...
🌐
OpenRouter
openrouter.ai › deepseek › deepseek-v3.2-speciale › api
DeepSeek: DeepSeek V3.2 Speciale – Quickstart | OpenRouter
Sample code and API for DeepSeek: DeepSeek V3.2 Speciale - DeepSeek-V3.2-Speciale is a high-compute variant of DeepSeek-V3.2 optimized for maximum reasoning and agentic performance.
🌐
DEV Community
dev.to › web_dev-usman › here-how-to-build-a-chatbot-for-free-using-openrouter-and-deepseek-apis-492e
I have Built a Chatbot for Free Using OpenRouter and DeepSeek API - DEV Community
March 20, 2025 - I have provided the complete code below, all you need to do is create your API key from OpenRouter, and paste in the code: const API_KEY = "Add your API KEY"; const MODEL = "deepseek/deepseek-r1:free";
🌐
Lightnode
go.lightnode.com › tech › openrouter-free-deepseek-v3
OpenRouter Now Offering Access to Deepseek V3 0324 Free
OpenRouter now offers access to ... applications via OpenRouter's straightforward API. ... If you haven't already, sign up for an OpenRouter account and generate an API key from your dashboard....
🌐
DEV Community
dev.to › apilover › use-deepseek-r1-for-free-heres-your-ultimate-guide-1phe
Use DeepSeek-R1 for Free: Here's Your Ultimate Guide! - DEV Community
February 14, 2025 - 1. Visit OpenRouter Go to OpenRouter and search for "DeepSeek-R1 (free)." Click on the listing to proceed. 2. Generate a Free API Key Sign up for an OpenRouter account (if you don’t have one) and generate a free API key.
🌐
OpenRouter
openrouter.ai › tngtech › deepseek-r1t2-chimera:free
DeepSeek R1T2 Chimera (free) - API, Providers, Stats | OpenRouter
DeepSeek-TNG-R1T2-Chimera is the second-generation Chimera model from TNG Tech. It is a 671 B-parameter mixture-of-experts text-generation model assembled from DeepSeek-AI’s R1-0528, R1, and V3-0324 checkpoints with an Assembly-of-Experts merge. Run DeepSeek R1T2 Chimera (free) with API
🌐
Reddit
reddit.com › r/sillytavernai › use this free deepseek v3 after openrouter's 50 daily request limit
r/SillyTavernAI on Reddit: Use this free Deepseek V3 after Openrouter's 50 daily request limit
April 16, 2025 -

Note: Some people said they get 403 error with the chutes website. Thanks to AI Act; looks like chutes.ai doesn't work in EU countries or at least in some of them. In this case use a VPN.

1-Register to chutes.ai (This is the main free deepseek provider on openrouter.)

2-Get your API KEY (generate a new one, don't use the default API KEY)

3-Open SillyTavern, go to API Connections

-"API" > choose "Chat Completion"
-"Chat Completion Source" > choose "Custom(OpenAI-compatible)"
-"Custom Endpoint (Base URL)" > https://llm.chutes.ai/v1/
-"Custom API Key" > Bearer yourapikeyhere
-"Enter model ID" > deepseek-ai/DeepSeek-V3-0324
-Press to "connect" button.
----If it doesn't select "deepseek-ai/DeepSeek-V3-0324" on "Available Models" section automatiacally, choose that manually and try to connect again.

Free Deepseek V3 0324. Enjoy. I just found this after dozens of trying. Also there are much more free models on chutes.ai so we can try those too I guess. Also there are free image generator AI's. Maybe we can use that on SillyTavern too? I don't know. I just started to use SillyTavern yesterday so I don't know what I can do with this and what I can't. Looks like chutes.ai added Hidream image generator as free which that is new and awesome model. If you know a way to integrate that to SillyTavern please enlighten me.

🌐
OpenRouter
openrouter.ai › deepseek › deepseek-chat-v3.1
DeepSeek V3.1 - API, Providers, Stats | OpenRouter
DeepSeek-V3.1 is a large hybrid reasoning model (671B parameters, 37B active) that supports both thinking and non-thinking modes via prompt templates. Run DeepSeek V3.1 with API
🌐
SurferCloud
surfercloud.com › blog › openrouter-now-offers-free-deepseek-v3-api-access-a-guide-for-developers
OpenRouter Now Offers Free Deepseek V3 API Access: A Guide for Developers - SurferCloud Blog
March 26, 2025 - OpenRouter now supports Deepseek V3 API calls, allowing users to integrate the model into their applications effortlessly. Follow these steps to get started. ... Sign up for an OpenRouter account and generate an API key in the dashboard.
🌐
OpenRouter
openrouter.ai › deepseek › deepseek-r1 › api
DeepSeek: R1 – Quickstart | OpenRouter
Sample code and API for DeepSeek: R1 - DeepSeek R1 is here: Performance on par with [OpenAI o1](/openai/o1), but open-sourced and with fully open reasoning tokens. It's 671B parameters in size, with 37B active in an inference pass. Fully open-source model & [technical report](https://api-d...
🌐
Medium
medium.com › data-science-in-your-pocket › deepseek-r1-free-api-58b47e849f1c
DeepSeek-R1 free API. How to use DeepSeek-R1 for free using… | by Mehul Gupta | Data Science in Your Pocket | Medium
June 8, 2025 - So, OpenRouter provides a free API for using DeepSeek-R1. You can follow the below steps or even follow the tutorial above to get started ... from openai import OpenAI client = OpenAI( base_url="https://openrouter.ai/api/v1", api_key="<OPENROUTER_API_KEY>", ) completion = client.chat.completions.create( extra_headers={ "HTTP-Referer": "<YOUR_SITE_URL>", # Optional.