From 59460e85b671b1931f788b80116528189c036c16 Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Mon, 3 Aug 2026 14:10:16 -0400 Subject: [PATCH 1/2] Update overview.mdx - no auth req --- api-reference-v2/overview.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/api-reference-v2/overview.mdx b/api-reference-v2/overview.mdx index 339e0d197..4ab319ccb 100644 --- a/api-reference-v2/overview.mdx +++ b/api-reference-v2/overview.mdx @@ -40,15 +40,13 @@ Retrieve the complete OpenAPI specification for client generation, request valid ```bash cURL curl --request GET \ --url https://api.runpod.io/v2/openapi.json \ - --header 'Authorization: Bearer RUNPOD_API_KEY' ``` ```python Python import requests url = "https://api.runpod.io/v2/openapi.json" -headers = {"Authorization": "Bearer RUNPOD_API_KEY"} -response = requests.get(url, headers=headers) +response = requests.get(url) print(response.json()) ``` From 56bcfd50c26e3f747d6ff19f9df60c48c9b373ef Mon Sep 17 00:00:00 2001 From: lgunreddi Date: Mon, 3 Aug 2026 14:25:19 -0400 Subject: [PATCH 2/2] Update overview.mdx --- api-reference/overview.mdx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/api-reference/overview.mdx b/api-reference/overview.mdx index 0dd3f0224..d4d6ccb8d 100644 --- a/api-reference/overview.mdx +++ b/api-reference/overview.mdx @@ -30,16 +30,14 @@ Retrieve the complete OpenAPI specification for client generation, request valid ```bash cURL curl --request GET \ - --url https://rest.runpod.io/v1/openapi.json \ - --header 'Authorization: Bearer RUNPOD_API_KEY' + --url https://rest.runpod.io/v1/openapi.json \ ``` ```python Python import requests url = "https://rest.runpod.io/v1/openapi.json" -headers = {"Authorization": "Bearer RUNPOD_API_KEY"} -response = requests.get(url, headers=headers) +response = requests.get(url) print(response.json()) ```