OpenAPI node add

I made OpenAPI node but it doesn’t work.

I made OpenAPI key and used it.

Why it doesn’t work?

N8n server is ubuntu os and not os local environment .
Url is http://192.168.100.0:5678

  • n8n version: → 1.69.2
  • Database (default: SQLite): → nothing maybe
  • n8n EXECUTIONS_PROCESS setting (default: own, main): → ? nothing maybe
  • Running n8n via (Docker, npm, n8n cloud, desktop app): → Docker compose
  • Operating system: → ubuntu

docker-compose.yml config below
version: ‘3’

services:
n8n:
image: n8n-langchain
restart: always
ports:
- “192.168.100.00:5678:5678”
- “192.168.100.00:11434:11434”
environment:
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=
- N8N_BASIC_AUTH_PASSWORD=
- N8N_SECURE_COOKIE=false

Other info is below
[error cause]
{ “status”: 429, “headers”: { “alt-svc”: “h3=":443"; ma=86400”, “cf-cache-status”: “DYNAMIC”, “cf-ray”: “8ecac6e8cbefea20-ICN”, “connection”: “keep-alive”, “content-length”: “337”, “content-type”: “application/json; charset=utf-8”, “date”: “Wed, 04 Dec 2024 09:30:18 GMT”, “server”: “cloudflare”, “set-cookie”: “__cf_bm=1Ir6F5QnTWbB9mYXFlDkKLlSM2dSgFjVWKcquNlwFgU-1733304618-1.0.1.1-DoxUH017nCdg.LcP87eIp6H0X0YLWBtjU7eYNiVG1cGlc_nO0KZc94bW1p2o4AzFS7hAnCKixvUqPaG8_iiHcQ; path=/; expires=Wed, 04-Dec-24 10:00:18 GMT; domain=.api.openai.com; HttpOnly; Secure; SameSite=None, _cfuvid=z4FRGPzIqhKNTPsvTIu2dhOVSVqVbJTv.CQRn.vDfY4-1733304618686-0.0.1.1-604800000; path=/; domain=.api.openai.com; HttpOnly; Secure; SameSite=None”, “strict-transport-security”: “max-age=31536000; includeSubDomains; preload”, “vary”: “Origin”, “x-content-type-options”: “nosniff”, “x-request-id”: “req_0335bde6a3a7e27259cfa0bd3c4d3b00” }, “request_id”: “req_0335bde6a3a7e27259cfa0bd3c4d3b00”, “error”: { “message”: “Insufficient quota detected. <a href="OpenAI node common issues | n8n Docs” target="_blank">Learn more about resolving this issue", “type”: “insufficient_quota”, “param”: null, “code”: “insufficient_quota” }, “code”: “insufficient_quota”, “param”: null, “type”: “insufficient_quota”, “lc_error_code”: “MODEL_RATE_LIMIT”, “attemptNumber”: 1, “retriesLeft”: 2 }

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

I added your comment.

Welcome to the community @kimsijin33 !

Tip for sharing information

Pasting your n8n workflow


Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.

```
<your workflow>
```

That implies to any JSON output you would like to share with us.

Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!


Usage of OpenAI depends on the quota for your OpanAI account. You are probably still on free trial or have the very basic account - the tier with veru limited rate limits, https://platform.openai.com/docs/guides/rate-limits.

Since you are self-hosting and if you are testing AI functionality out, you could try a free service like Ollama. See https://www.youtube.com/watch?v=UCTCfB4J9J4 or https://www.youtube.com/watch?v=XQ7wNqbB1x8.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.