Search the reviewed catalogue
curl --request GET \
--url https://api.doers.sh/v2/marketplace/discover \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.doers.sh/v2/marketplace/discover"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.doers.sh/v2/marketplace/discover', 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.doers.sh/v2/marketplace/discover",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.doers.sh/v2/marketplace/discover"
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))
}HttpResponse<String> response = Unirest.get("https://api.doers.sh/v2/marketplace/discover")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.doers.sh/v2/marketplace/discover")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"listings": [
{
"packageId": "<string>",
"kind": "agent",
"name": "<string>",
"emoji": "<string>",
"summary": "<string>",
"version": 0,
"publisher": {
"id": "<string>",
"kind": "personal",
"handle": "<string>",
"displayName": "<string>"
},
"categories": [
{
"id": "<string>",
"slug": "<string>",
"label": "<string>",
"position": 0
}
],
"licence": "mit",
"integrations": [
"<string>"
],
"installers": 0,
"since": 123,
"approvedAt": 123
}
],
"total": 0,
"nextCursor": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"field": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"field": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"field": "<string>",
"message": "<string>"
}
]
}
}Marketplace
Search the reviewed catalogue
Approved Agents somebody else published, most curated first. Matches the approved name, summary, publisher handle and declared integrations. Several categories widen the result (OR); text and categories narrow each other (AND).
Never returns what you own, what you already installed, a version no reviewer approved, or anything suspended. Writes nothing.
GET
/
v2
/
marketplace
/
discover
Search the reviewed catalogue
curl --request GET \
--url https://api.doers.sh/v2/marketplace/discover \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.doers.sh/v2/marketplace/discover"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.doers.sh/v2/marketplace/discover', 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.doers.sh/v2/marketplace/discover",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.doers.sh/v2/marketplace/discover"
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))
}HttpResponse<String> response = Unirest.get("https://api.doers.sh/v2/marketplace/discover")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.doers.sh/v2/marketplace/discover")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"listings": [
{
"packageId": "<string>",
"kind": "agent",
"name": "<string>",
"emoji": "<string>",
"summary": "<string>",
"version": 0,
"publisher": {
"id": "<string>",
"kind": "personal",
"handle": "<string>",
"displayName": "<string>"
},
"categories": [
{
"id": "<string>",
"slug": "<string>",
"label": "<string>",
"position": 0
}
],
"licence": "mit",
"integrations": [
"<string>"
],
"installers": 0,
"since": 123,
"approvedAt": 123
}
],
"total": 0,
"nextCursor": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"field": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"field": "<string>",
"message": "<string>"
}
]
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": [
{
"field": "<string>",
"message": "<string>"
}
]
}
}Authorizations
A pc_… token generated from Settings > API & MCP.
Query Parameters
Category slugs. Several widen the result rather than narrowing it.
Maximum array length:
9From a previous page's nextCursor. Opaque: do not construct one.
Maximum string length:
512How many to return. The app asks for one page at a time.
Required range:
1 <= x <= 48Free text over name, summary, publisher handle and declared integrations.
Maximum string length:
200