Proxy API
apideck · Developer Tools
Welcome to the Proxy API. You can use this API to access all Proxy API endpoints. ## Base URL The base URL for all API requests is `https://unify.apideck.com` ## Headers Custom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230) states header names are case insensitive. | Name | Type | Required | Description | | ---------------------------------- | ------ | -------- | ------------------------------------
Authentication
Sample Requests
Proxies a downstream GET request to a service and injects the necessary credentials into a request stored in Vault. This allows you to have an additional security layer and logging without needing to rely on Unify for normalization. **Note**: Vault will proxy all data to the downstream URL and metho
Hover any highlighted part to learn what it does
| x-apideck-app-id | example |
| x-apideck-service-id | example |
| x-apideck-consumer-id | example |
| x-apideck-downstream-url | example |
curl -X GET "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy" \ -H "x-apideck-app-id: example" \ -H "x-apideck-service-id: example" \ -H "x-apideck-consumer-id: example" \ -H "x-apideck-downstream-url: example"
import requests
headers = {
"x-apideck-app-id": "example",
"x-apideck-service-id": "example",
"x-apideck-consumer-id": "example",
"x-apideck-downstream-url": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy';
const response = await fetch(url, {
headers: {
'x-apideck-app-id': 'example',
'x-apideck-service-id': 'example',
'x-apideck-consumer-id': 'example',
'x-apideck-downstream-url': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("x-apideck-app-id", "example")
req.Header.Set("x-apideck-service-id", "example")
req.Header.Set("x-apideck-consumer-id", "example")
req.Header.Set("x-apideck-downstream-url", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["x-apideck-app-id"] = "example"
req["x-apideck-service-id"] = "example"
req["x-apideck-consumer-id"] = "example"
req["x-apideck-downstream-url"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"x-apideck-app-id: example",
"x-apideck-service-id: example",
"x-apideck-consumer-id: example",
"x-apideck-downstream-url: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Proxies a downstream POST request to a service and injects the necessary credentials into a request stored in Vault. This allows you to have an additional security layer and logging without needing to rely on Unify for normalization. **Note**: Vault will proxy all data to the downstream URL and meth
Hover any highlighted part to learn what it does
| x-apideck-app-id | example |
| x-apideck-service-id | example |
| x-apideck-consumer-id | example |
| x-apideck-downstream-url | example |
curl -X POST "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy" \ -H "x-apideck-app-id: example" \ -H "x-apideck-service-id: example" \ -H "x-apideck-consumer-id: example" \ -H "x-apideck-downstream-url: example"
import requests
headers = {
"x-apideck-app-id": "example",
"x-apideck-service-id": "example",
"x-apideck-consumer-id": "example",
"x-apideck-downstream-url": "example"
}
response = requests.post(
"https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy';
const response = await fetch(url, {
method: 'POST',
headers: {
'x-apideck-app-id': 'example',
'x-apideck-service-id': 'example',
'x-apideck-consumer-id': 'example',
'x-apideck-downstream-url': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy"
req, _ := http.NewRequest("POST", targetURL, nil)
req.Header.Set("x-apideck-app-id", "example")
req.Header.Set("x-apideck-service-id", "example")
req.Header.Set("x-apideck-consumer-id", "example")
req.Header.Set("x-apideck-downstream-url", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Post.new(uri)
req["x-apideck-app-id"] = "example"
req["x-apideck-service-id"] = "example"
req["x-apideck-consumer-id"] = "example"
req["x-apideck-downstream-url"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy";
$opts = ["http" => [
"method" => "POST",
"header" => implode("\r\n", [
"x-apideck-app-id: example",
"x-apideck-service-id: example",
"x-apideck-consumer-id: example",
"x-apideck-downstream-url: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Proxies a downstream PUT request to a service and injects the necessary credentials into a request stored in Vault. This allows you to have an additional security layer and logging without needing to rely on Unify for normalization. **Note**: Vault will proxy all data to the downstream URL and metho
Hover any highlighted part to learn what it does
| x-apideck-app-id | example |
| x-apideck-service-id | example |
| x-apideck-consumer-id | example |
| x-apideck-downstream-url | example |
curl -X PUT "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy" \ -H "x-apideck-app-id: example" \ -H "x-apideck-service-id: example" \ -H "x-apideck-consumer-id: example" \ -H "x-apideck-downstream-url: example"
import requests
headers = {
"x-apideck-app-id": "example",
"x-apideck-service-id": "example",
"x-apideck-consumer-id": "example",
"x-apideck-downstream-url": "example"
}
response = requests.put(
"https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy';
const response = await fetch(url, {
method: 'PUT',
headers: {
'x-apideck-app-id': 'example',
'x-apideck-service-id': 'example',
'x-apideck-consumer-id': 'example',
'x-apideck-downstream-url': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy"
req, _ := http.NewRequest("PUT", targetURL, nil)
req.Header.Set("x-apideck-app-id", "example")
req.Header.Set("x-apideck-service-id", "example")
req.Header.Set("x-apideck-consumer-id", "example")
req.Header.Set("x-apideck-downstream-url", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Put.new(uri)
req["x-apideck-app-id"] = "example"
req["x-apideck-service-id"] = "example"
req["x-apideck-consumer-id"] = "example"
req["x-apideck-downstream-url"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/proxy/9.3.0/proxy";
$opts = ["http" => [
"method" => "PUT",
"header" => implode("\r\n", [
"x-apideck-app-id: example",
"x-apideck-service-id: example",
"x-apideck-consumer-id: example",
"x-apideck-downstream-url: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Proxy API?
Proxy API is a Developer Tools API. Developers commonly use developer tools APIs for:
- automating code review and quality checks
- integrating CI/CD pipelines and build systems
- managing feature flags and A/B tests
- monitoring errors and application performance
- generating and validating test data
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Proxy API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?