List cached vault lists
curl --request GET \
--url https://api.ofauth.com/v2/vault-plus/lists \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <x-connection-id>'import requests
url = "https://api.ofauth.com/v2/vault-plus/lists"
headers = {
"x-connection-id": "<x-connection-id>",
"apiKey": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'x-connection-id': '<x-connection-id>', apiKey: '<api-key>'}
};
fetch('https://api.ofauth.com/v2/vault-plus/lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ofauth.com/v2/vault-plus/lists",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiKey: <api-key>",
"x-connection-id: <x-connection-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ofauth.com/v2/vault-plus/lists"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-connection-id", "<x-connection-id>")
req.Header.Add("apiKey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ofauth.com/v2/vault-plus/lists")
.header("x-connection-id", "<x-connection-id>")
.header("apiKey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ofauth.com/v2/vault-plus/lists")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-connection-id"] = '<x-connection-id>'
request["apiKey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"listId": "28489180",
"mediaCount": 42,
"lastAddedAt": "2026-06-06T20:00:00.000Z",
"lastSyncedAt": "2026-06-06T21:00:00.000Z",
"lastSeenAt": "2026-06-06T21:00:00.000Z"
}
]
}{
"error": "x-connection-id header is required"
}{
"error": "Unauthorized"
}Lists
List cached vault lists
Returns cached list records for the connection. This route does not fetch live OF state.
GET
/
v2
/
vault-plus
/
lists
List cached vault lists
curl --request GET \
--url https://api.ofauth.com/v2/vault-plus/lists \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <x-connection-id>'import requests
url = "https://api.ofauth.com/v2/vault-plus/lists"
headers = {
"x-connection-id": "<x-connection-id>",
"apiKey": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'x-connection-id': '<x-connection-id>', apiKey: '<api-key>'}
};
fetch('https://api.ofauth.com/v2/vault-plus/lists', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ofauth.com/v2/vault-plus/lists",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"apiKey: <api-key>",
"x-connection-id: <x-connection-id>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ofauth.com/v2/vault-plus/lists"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-connection-id", "<x-connection-id>")
req.Header.Add("apiKey", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ofauth.com/v2/vault-plus/lists")
.header("x-connection-id", "<x-connection-id>")
.header("apiKey", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ofauth.com/v2/vault-plus/lists")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-connection-id"] = '<x-connection-id>'
request["apiKey"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"items": [
{
"listId": "28489180",
"mediaCount": 42,
"lastAddedAt": "2026-06-06T20:00:00.000Z",
"lastSyncedAt": "2026-06-06T21:00:00.000Z",
"lastSeenAt": "2026-06-06T21:00:00.000Z"
}
]
}{
"error": "x-connection-id header is required"
}{
"error": "Unauthorized"
}Headers
Connection ID whose Vault+ list cache should be read or modified.
Minimum string length:
1Example:
"conn_v5bsqkzsjfk8cgr7hqbbw09t"
Response
Cached vault-list summaries for this connection. This response is read from Vault+ list cache records and does not fetch live OnlyFans state.
Cached Vault+ list summaries.
Cached lists for the connection.
Show child attributes
Show child attributes
Was this page helpful?
⌘I