import httpx
resp = httpx.get("https://api.decimal.ai/api/v1/registry/skills",
params={"category": "retrieval", "sort": "effectiveness"})
resp.raise_for_status()
print(resp.json()["items"]) # browse returns {"items": [...], "next_cursor": ...}decimalai registry browse --category retrieval --sort effectivenessconst options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.decimal.ai/api/v1/registry/skills', 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.decimal.ai/api/v1/registry/skills",
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.decimal.ai/api/v1/registry/skills"
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.decimal.ai/api/v1/registry/skills")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.decimal.ai/api/v1/registry/skills")
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{
"items": [
{
"id": "sk_pub123",
"name": "semantic-search",
"description": "Semantic search over knowledge bases",
"category": "retrieval",
"stability": "stable",
"visibility": "public",
"avg_rating": 4.5,
"install_count": 230,
"effectiveness": {
"skill_score": 0.85
},
"badge": "community"
}
],
"total": 45
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Browse the public skills registry
Browse the public skills registry.
No authentication required. If authenticated, results include ‘installed_as’ field showing if the user already has a fork.
import httpx
resp = httpx.get("https://api.decimal.ai/api/v1/registry/skills",
params={"category": "retrieval", "sort": "effectiveness"})
resp.raise_for_status()
print(resp.json()["items"]) # browse returns {"items": [...], "next_cursor": ...}decimalai registry browse --category retrieval --sort effectivenessconst options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.decimal.ai/api/v1/registry/skills', 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.decimal.ai/api/v1/registry/skills",
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.decimal.ai/api/v1/registry/skills"
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.decimal.ai/api/v1/registry/skills")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.decimal.ai/api/v1/registry/skills")
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{
"items": [
{
"id": "sk_pub123",
"name": "semantic-search",
"description": "Semantic search over knowledge bases",
"category": "retrieval",
"stability": "stable",
"visibility": "public",
"avg_rating": 4.5,
"install_count": 230,
"effectiveness": {
"skill_score": 0.85
},
"badge": "community"
}
],
"total": 45
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Enter your API key (e.g. dai_sk_test_key_001)
Headers
Query Parameters
Search query (keyword or semantic)
Filter by category
Comma-separated tags to filter by
Filter by badge — where the skill came from, not a quality tier: community (authored on the platform), imported (synced from GitHub), featured (auto-promoted), verified (retired tier, no skill carries it)
Filter by taxonomy class: capability, preference (legacy model-gap/proprietary/convention also accepted; unlabeled skills only surface without the filter)
Filter by invocation mode: model, user, any
Sort by: recommended (SkillScore v2, evidence-tiered, ≥10 activations; alias: effectiveness), lift (verified benchmark lift; alias: biggest_improvement), popular (30d uses, installs tiebreak), installs, top_rated (AI live rating, ≥10 rated), efficiency (token savings), most_turn_savings, rating (legacy pass-rate), recent
Opaque pagination cursor — pass back the next_cursor from the previous page. A cursor is tied to the filter set and sort it was issued under; change either and paging restarts at page 1. It does NOT expire and is not tied to a session, so a client may store one and resume the same walk on a later request. Stop when has_next is false. A truncated: true field means the walk reached the depth limit for this ordering rather than the end of the results — re-issue under sort=recommended, lift or recent, which page to any depth
Results per page
1 <= x <= 100Display view — 'grid' (default) or 'ranks' (Leaderboard: adds rank + rank_metric fields)
Platform-admin only: include skills that did not pass safety review. Ignored for all other callers (default false).
Measurement facet: 'default' (all skills, measured ranked first), 'only' (curated shelf — measured imports only), 'all' (alias of default)
Diagnostic: rank against this embedding space instead of the live one. Exists so the cutover gate can score a building space BEFORE it is flipped live — without it the gate has nothing to read until after the flip it is meant to authorise. Unknown/retired ids fall back to live.
Diagnostic: 'ilike' forces the keyword ranker for this request only. Anything else is ignored. Exists so both rankers can be scored against the same corpus in the same minute when evaluating a search-ranking change.
Cookies
Response
Successful Response