curl --request POST \
--url https://app.govly.com/api/tools/v1/signals/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"page": 1,
"perPage": 10,
"contentTypes": [],
"categories": [],
"dateRange": [
"<string>"
]
}
'import requests
url = "https://app.govly.com/api/tools/v1/signals/search"
payload = {
"query": "<string>",
"page": 1,
"perPage": 10,
"contentTypes": [],
"categories": [],
"dateRange": ["<string>"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
page: 1,
perPage: 10,
contentTypes: [],
categories: [],
dateRange: ['<string>']
})
};
fetch('https://app.govly.com/api/tools/v1/signals/search', 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://app.govly.com/api/tools/v1/signals/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'page' => 1,
'perPage' => 10,
'contentTypes' => [
],
'categories' => [
],
'dateRange' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.govly.com/api/tools/v1/signals/search"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"page\": 1,\n \"perPage\": 10,\n \"contentTypes\": [],\n \"categories\": [],\n \"dateRange\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.govly.com/api/tools/v1/signals/search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"page\": 1,\n \"perPage\": 10,\n \"contentTypes\": [],\n \"categories\": [],\n \"dateRange\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.govly.com/api/tools/v1/signals/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"page\": 1,\n \"perPage\": 10,\n \"contentTypes\": [],\n \"categories\": [],\n \"dateRange\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"name": "<string>",
"executiveSummary": "<string>",
"firstPublishedAt": "2023-11-07T05:31:56Z",
"latestPublishedAt": "2023-11-07T05:31:56Z",
"contentTypes": [
"<string>"
],
"signalCount": 123,
"jurisdictions": [
"<string>"
],
"industryTags": [
"<string>"
],
"topicTags": [
"<string>"
],
"categories": [
"<string>"
],
"sourceNames": [
"<string>"
],
"signalUrl": "<string>",
"vendors": [
{}
],
"governmentEntities": [
{}
],
"contacts": [
{}
],
"eventStartDate": "<string>",
"bodyName": "<string>"
}
],
"meta": {
"totalCount": 123,
"page": 123,
"perPage": 123,
"totalPages": 123,
"query": "<string>",
"aggregations": {
"categories": [
{}
],
"contentTypes": [
{}
],
"jurisdictions": [
{}
]
}
}
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}Search signals
Search clustered procurement and market signals (news, hearings, laws, events, analysis, policy, regulatory actions, and public meetings) with the constrained public parameter set shared by MCP search_signals. query is a fuzzy, semantic search; contentTypes, categories, and dateRange are exact filters AND-combined with query. categories is a hard filter on curated slugs and only matches tagged clusters. meta.aggregations returns facet counts on the first page only.
curl --request POST \
--url https://app.govly.com/api/tools/v1/signals/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"page": 1,
"perPage": 10,
"contentTypes": [],
"categories": [],
"dateRange": [
"<string>"
]
}
'import requests
url = "https://app.govly.com/api/tools/v1/signals/search"
payload = {
"query": "<string>",
"page": 1,
"perPage": 10,
"contentTypes": [],
"categories": [],
"dateRange": ["<string>"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
query: '<string>',
page: 1,
perPage: 10,
contentTypes: [],
categories: [],
dateRange: ['<string>']
})
};
fetch('https://app.govly.com/api/tools/v1/signals/search', 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://app.govly.com/api/tools/v1/signals/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'query' => '<string>',
'page' => 1,
'perPage' => 10,
'contentTypes' => [
],
'categories' => [
],
'dateRange' => [
'<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.govly.com/api/tools/v1/signals/search"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"page\": 1,\n \"perPage\": 10,\n \"contentTypes\": [],\n \"categories\": [],\n \"dateRange\": [\n \"<string>\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.govly.com/api/tools/v1/signals/search")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"page\": 1,\n \"perPage\": 10,\n \"contentTypes\": [],\n \"categories\": [],\n \"dateRange\": [\n \"<string>\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.govly.com/api/tools/v1/signals/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"page\": 1,\n \"perPage\": 10,\n \"contentTypes\": [],\n \"categories\": [],\n \"dateRange\": [\n \"<string>\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"name": "<string>",
"executiveSummary": "<string>",
"firstPublishedAt": "2023-11-07T05:31:56Z",
"latestPublishedAt": "2023-11-07T05:31:56Z",
"contentTypes": [
"<string>"
],
"signalCount": 123,
"jurisdictions": [
"<string>"
],
"industryTags": [
"<string>"
],
"topicTags": [
"<string>"
],
"categories": [
"<string>"
],
"sourceNames": [
"<string>"
],
"signalUrl": "<string>",
"vendors": [
{}
],
"governmentEntities": [
{}
],
"contacts": [
{}
],
"eventStartDate": "<string>",
"bodyName": "<string>"
}
],
"meta": {
"totalCount": 123,
"page": 123,
"perPage": 123,
"totalPages": 123,
"query": "<string>",
"aggregations": {
"categories": [
{}
],
"contentTypes": [
{}
],
"jurisdictions": [
{}
]
}
}
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}{
"errors": [
{
"status": "<string>",
"code": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>"
}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Fuzzy + semantic search text over signal content.
5001-based page number.
Results per page. Default 10, maximum 50.
Exact filter — only clusters containing signals of these content types.
news, hearing, law, event, analysis, policy, regulatory, meeting Exact hard filter on curated category slugs. Narrows to tagged clusters; may miss differently-tagged signals. Use for explicit narrowing, not for topics that belong in query.
regulatory_policy, cybersecurity, defense, technology_digital, infrastructure, healthcare_services, business_compliance Filter by signal date as [start, end] in ISO 8601 format. Use null for an open-ended bound (e.g. [null, end]). Omit or pass an empty array for no date filter.
2Was this page helpful?