/kharon/resources/search
curl --request POST \
--url https://api.anysite.io/api/kharon/resources/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 500,
"timeout": 300,
"search": "<string>",
"types": [],
"sectors": [],
"sort": "newest"
}
'import requests
url = "https://api.anysite.io/api/kharon/resources/search"
payload = {
"count": 500,
"timeout": 300,
"search": "<string>",
"types": [],
"sectors": [],
"sort": "newest"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 500,
timeout: 300,
search: '<string>',
types: [],
sectors: [],
sort: 'newest'
})
};
fetch('https://api.anysite.io/api/kharon/resources/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://api.anysite.io/api/kharon/resources/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([
'count' => 500,
'timeout' => 300,
'search' => '<string>',
'types' => [
],
'sectors' => [
],
'sort' => 'newest'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$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://api.anysite.io/api/kharon/resources/search"
payload := strings.NewReader("{\n \"count\": 500,\n \"timeout\": 300,\n \"search\": \"<string>\",\n \"types\": [],\n \"sectors\": [],\n \"sort\": \"newest\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
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://api.anysite.io/api/kharon/resources/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 500,\n \"timeout\": 300,\n \"search\": \"<string>\",\n \"types\": [],\n \"sectors\": [],\n \"sort\": \"newest\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/kharon/resources/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 500,\n \"timeout\": 300,\n \"search\": \"<string>\",\n \"types\": [],\n \"sectors\": [],\n \"sort\": \"newest\"\n}"
response = http.request(request)
puts response.read_body[
{
"@type": "KharonResourceCard",
"id": "<string>",
"alias": "<string>",
"url": "<string>",
"summary": "<string>",
"read_time": "<string>",
"template": "<string>",
"cta_label": "<string>",
"published_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"event_date": "<string>",
"image": {
"@type": "KharonAsset",
"id": "<string>",
"url": "<string>",
"alt": "<string>",
"width": 123,
"height": 123,
"mime_type": "<string>"
},
"types": [],
"sectors": [],
"authors": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/kharon
/kharon/resources/search
Search Kharon’s resource library — customer stories, guides, reports, white papers, press releases, product notes and award announcements. Narrows by free-text query, content type and sector, and orders by publication date or title. Returns cards with the URL alias, address, title, abstract, publication date, reading time, the call-to-action label the card prints, cover image, tags and named authors.
Price: 5 credits per 50 results
⚠️ Common errors: 412: No resource matched the query and filters
POST
/
api
/
kharon
/
resources
/
search
/kharon/resources/search
curl --request POST \
--url https://api.anysite.io/api/kharon/resources/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 500,
"timeout": 300,
"search": "<string>",
"types": [],
"sectors": [],
"sort": "newest"
}
'import requests
url = "https://api.anysite.io/api/kharon/resources/search"
payload = {
"count": 500,
"timeout": 300,
"search": "<string>",
"types": [],
"sectors": [],
"sort": "newest"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
count: 500,
timeout: 300,
search: '<string>',
types: [],
sectors: [],
sort: 'newest'
})
};
fetch('https://api.anysite.io/api/kharon/resources/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://api.anysite.io/api/kharon/resources/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([
'count' => 500,
'timeout' => 300,
'search' => '<string>',
'types' => [
],
'sectors' => [
],
'sort' => 'newest'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$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://api.anysite.io/api/kharon/resources/search"
payload := strings.NewReader("{\n \"count\": 500,\n \"timeout\": 300,\n \"search\": \"<string>\",\n \"types\": [],\n \"sectors\": [],\n \"sort\": \"newest\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
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://api.anysite.io/api/kharon/resources/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 500,\n \"timeout\": 300,\n \"search\": \"<string>\",\n \"types\": [],\n \"sectors\": [],\n \"sort\": \"newest\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/kharon/resources/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"count\": 500,\n \"timeout\": 300,\n \"search\": \"<string>\",\n \"types\": [],\n \"sectors\": [],\n \"sort\": \"newest\"\n}"
response = http.request(request)
puts response.read_body[
{
"@type": "KharonResourceCard",
"id": "<string>",
"alias": "<string>",
"url": "<string>",
"summary": "<string>",
"read_time": "<string>",
"template": "<string>",
"cta_label": "<string>",
"published_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"event_date": "<string>",
"image": {
"@type": "KharonAsset",
"id": "<string>",
"url": "<string>",
"alt": "<string>",
"width": 123,
"height": 123,
"mime_type": "<string>"
},
"types": [],
"sectors": [],
"authors": []
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Required range:
1 <= x <= 1000Required range:
20 <= x <= 1500Minimum string length:
1Available options:
article, awards, case_study, company_update, customer_story, guide, hosted_event, industry_event, partnerships, press_release, product_insights, product_launch, product_update, regulatory_trends, report, use_cases, webinar, white_paper Available options:
aml, automotive, banking, compliance, crypto, defense_industrial_base, evasion, export_controls, financial_crimes, financial_services, forced_labor, investment_risk, meu, outbound_investments, public_sector, research_security, sanctioned_securities, sanctions, summit, supply_chain, sustainability, technology Available options:
newest, oldest, alphabetical Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes