Find an API

Search public APIs with auth details & Postman guides

← All APIs

Vault API

apideck · Developer Tools

Developer Tools No Auth Free & Open developer_tools

Welcome to the Vault API ๐Ÿ‘‹ When you're looking to connect to an API, the first step is authentication. Vault helps you handle OAuth flows, store API keys, and refresh access tokens from users (called consumers in Apideck). ## Base URL The base URL for all API requests is `https://unify.apideck.com` ## Get Started To use the Apideck APIs, you need to sign up for free at [https://app.apideck.com/signup](). Follow the steps below to get started. - [Create a free account.](https://app.apidec

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Callback

This endpoint gets called after the triggering the authorize flow. Callback links need a state and code parameter to verify the validity of the request.

https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/callback?code=example&state=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/callback?code=example&state=example"
import requests
params = {
    "code": "example",
    "state": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/callback",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/callback');
url.searchParams.set('code', 'example');
url.searchParams.set('state', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/callback")
	q := baseURL.Query()
	q.Set("code", "example")
	q.Set("state", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	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/vault/9.3.0/vault/callback")
uri.query = URI.encode_www_form({
  "code" => "example",
  "state" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/callback?" . http_build_query([
    "code" => "example",
    "state" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get all connections

This endpoint includes all the configured integrations and contains the required assets to build an integrations page where your users can install integrations. OAuth2 supported integrations will contain authorize and revoke links to handle the authentication flows.

https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/connections?api=example&configured=true

Hover any highlighted part to learn what it does

Headers โ€” extra info sent with the request
x-apideck-app-id example
x-apideck-consumer-id example
curl -X GET "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/connections?api=example&configured=true" \
  -H "x-apideck-app-id: example" \
  -H "x-apideck-consumer-id: example"
import requests
params = {
    "api": "example",
    "configured": "true"
}
headers = {
    "x-apideck-app-id": "example",
    "x-apideck-consumer-id": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/connections",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/connections');
url.searchParams.set('api', 'example');
url.searchParams.set('configured', 'true');

const response = await fetch(url, {
  headers: {
    'x-apideck-app-id': 'example',
    'x-apideck-consumer-id': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/connections")
	q := baseURL.Query()
	q.Set("api", "example")
	q.Set("configured", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("x-apideck-app-id", "example")
	req.Header.Set("x-apideck-consumer-id", "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/vault/9.3.0/vault/connections")
uri.query = URI.encode_www_form({
  "api" => "example",
  "configured" => "true"
})

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-consumer-id"] = "example"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/connections?" . http_build_query([
    "api" => "example",
    "configured" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "x-apideck-app-id: example",
        "x-apideck-consumer-id: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get all consumers

This endpoint includes all application consumers, along with an aggregated count of requests made.

https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/consumers?limit=20&cursor=example

Hover any highlighted part to learn what it does

Headers โ€” extra info sent with the request
x-apideck-app-id example
curl -X GET "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/consumers?limit=20&cursor=example" \
  -H "x-apideck-app-id: example"
import requests
params = {
    "limit": "20",
    "cursor": "example"
}
headers = {
    "x-apideck-app-id": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/consumers",
    params=params,
    headers=headers,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/consumers');
url.searchParams.set('limit', '20');
url.searchParams.set('cursor', 'example');

const response = await fetch(url, {
  headers: {
    'x-apideck-app-id': 'example'
  },
}); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/consumers")
	q := baseURL.Query()
	q.Set("limit", "20")
	q.Set("cursor", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)
	req.Header.Set("x-apideck-app-id", "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/vault/9.3.0/vault/consumers")
uri.query = URI.encode_www_form({
  "limit" => "20",
  "cursor" => "example"
})

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"

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/apideck.com/vault/9.3.0/vault/consumers?" . http_build_query([
    "limit" => "20",
    "cursor" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
    "header" => implode("\r\n", [
        "x-apideck-app-id: example"
    ]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Vault API?

Vault 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. Vault 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?

Open documentation โ†—