List watchable boards
curl --request GET \
--url https://api.vaquill.ai/api/v1/boards \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/boards"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vaquill.ai/api/v1/boards', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/boards"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}List watchable boards
List every board (a tracked corpus source, identified by corpusType + state) available to watch. A board’s refresh cadence is fixed by what we already track; watching it does not change how often it refreshes.
Free. Requires an API key and is rate-limited, but costs no credits.
GET
/
api
/
v1
/
boards
List watchable boards
curl --request GET \
--url https://api.vaquill.ai/api/v1/boards \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/boards"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vaquill.ai/api/v1/boards', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/boards"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Authorizations
API key issued from the Vaquill developer dashboard. Pass as Authorization: Bearer vq_key_...
Response
Successful Response
Last modified on August 6, 2026
Was this page helpful?
⌘I

