Claw4Science provides a free, public REST API to query our curated directory of AI agent projects, skill libraries, and skill hubs for scientific research. No authentication required.
Base URL: https://claw4science.org/api
API Version: 1.1
Returns projects, curated skills, and skill hubs.
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
type | string | all | Filter by type: all, projects, skills, or skill-hubs |
group | string | -- | Filter by category (see tables below) |
q | string | -- | Search by name, description, or tags |
Project Categories:
| ID | Description |
|---|---|
core | Core Platform and Lightweight Variants (OpenClaw, NanoBot, PicoClaw, ZeroClaw, etc.) |
team | Team and Orchestration (Edict, ClawTeam, MetaClaw, ClawPanel, etc.) |
science | Medical and Clinical - Biomedicine (EvoScientist, MedgeClaw, LabClaw, etc.) |
bio-omics | Bioinformatics and Omics - Biomedicine (CellVoyager, Biomni, OmicsClaw, etc.) |
drug-molecular | Drug Discovery and Molecular - Biomedicine (DrugClaw, ChemCrow, ChemGraph, etc.) |
general-research | Autonomous End-to-End Research (RD-Agent, AI-Scientist-v2, DATAGEN, etc.) |
specialized | Personal Research Workbench (ScienceClaw variants, Dr. Claw, etc.) |
paper-tools | Paper and Literature Tools (AutoResearchClaw, PaperClaw, ResearchClaw, etc.) |
education | Education (OpenMAIC, MathClaw) |
benchmark | Benchmarks and Evaluation (Claw-Eval, ClawSafety, BioAgent Bench, HeurekaBench) |
security | Security (ClawSafety Scanner, ClawKeeper) |
Skill Hub Categories:
| ID | Description |
|---|---|
registry | Official Registries (ClawHub, Anthropic Skills, SkillHub) |
science | Scientific and Research Skills (K-Dense, Orchestra, ARIS, bioSkills, etc.) |
medical | Medical and Biomedical Skills (OpenClaw Medical Skills, ClawBio, STELLA) |
research | Research and Domain-Specific (AIPOCH, AMiner, OmicSkills, etc.) |
general | General Collections (Awesome Skills, Baoyu Skills, Skills.sh, etc.) |
Example Requests:
# Get everything (projects + skills + skill hubs)
curl https://claw4science.org/api/projects
# Get only bioinformatics projects
curl "https://claw4science.org/api/projects?type=projects&group=bio-omics"
# Search for drug discovery tools
curl "https://claw4science.org/api/projects?q=drug"
# Get only curated skills
curl "https://claw4science.org/api/projects?type=skills"
# Get only skill hubs
curl "https://claw4science.org/api/projects?type=skill-hubs"
# Get skill hubs in the science category
curl "https://claw4science.org/api/projects?type=skill-hubs&group=science"Example Response:
{
"projects": [
{
"name": "CellVoyager",
"description": "AI CompBio agent that autonomously analyzes biological data...",
"github": "https://github.com/zou-group/CellVoyager",
"repo": "zou-group/CellVoyager",
"language": "Python",
"static_stars": "198",
"tags": ["Stanford", "Nature Methods", "scRNA-seq"],
"category": "bio-omics",
"homepage": null,
"paper": "https://www.nature.com/articles/s41592-025-02549-z"
}
],
"skills": [
{
"name": "openalex-database",
"description": "Search 240M+ scholarly works across all fields...",
"github": "https://github.com/K-Dense-AI/claude-scientific-skills",
"repo": "K-Dense-AI/claude-scientific-skills",
"tags": ["Editor's Pick", "240M papers", "no-key-needed"],
"category": "literature",
"install_command": "clawhub install openalex-database"
}
],
"skill_hubs": [
{
"name": "K-Dense Scientific Skills",
"description": "170+ agent skills across 17 scientific domains...",
"github": "https://github.com/K-Dense-AI/claude-scientific-skills",
"repo": "K-Dense-AI/claude-scientific-skills",
"tags": ["170+ skills", "17 domains", "250+ databases"],
"category": "science",
"homepage": "https://www.k-dense.ai"
}
],
"meta": {
"total_projects": 132,
"total_skills": 19,
"total_skill_hubs": 32,
"project_categories": {"core": "Core Platform...", "...": "..."},
"skill_hub_categories": {"registry": "Official...", "...": "..."},
"api_version": "1.1",
"source": "https://claw4science.org"
}
}Returns real-time GitHub stars and last push time for specified repositories.
Parameters:
| Parameter | Type | Description |
|---|---|---|
repos | string | Comma-separated list of GitHub repos (e.g., zou-group/CellVoyager,HKUDS/nanobot) |
refresh | string | Set to 1 to force refresh (rate limited to once per 12 hours) |
Example:
curl "https://claw4science.org/api/github-stars?repos=zou-group/CellVoyager,openclaw/openclaw"Response:
{
"repos": {
"zou-group/CellVoyager": {
"stars": 166,
"pushed_at": "2026-03-17T17:21:04Z"
},
"openclaw/openclaw": {
"stars": 338069,
"pushed_at": "2026-03-27T12:00:00Z"
}
},
"fetched_at": "2026-03-28T00:00:00.000Z"
}Returns 6-month commit activity sparkline data for specified repositories. Used to visualize project activity trends.
Parameters:
| Parameter | Type | Description |
|---|---|---|
repos | string | Comma-separated list of GitHub repos (max 100) |
Example:
curl "https://claw4science.org/api/commit-activity?repos=openclaw/openclaw,HKUDS/nanobot"Response:
{
"activity": {
"openclaw/openclaw": [0, 5, 12, 8, 15, 20, 18, 25, 30, 22, 18, 35, 28, 40, 32, 45, 38, 50, 42, 55, 48, 60, 52, 65, 58, 70],
"HKUDS/nanobot": [0, 0, 3, 7, 10, 8, 12, 15, 18, 20, 22, 25, 28, 30, 32, 35, 38, 40, 42, 45, 48, 50, 52, 55, 58, 60]
},
"fetched_at": "2026-04-09T00:00:00Z",
"source": "kv"
}Each value in the activity array represents the total commits in that week, from 26 weeks ago to the most recent week. Data is pre-computed via GraphQL and cached in KV storage.
We provide a machine-readable summary of our directory at:
https://claw4science.org/llms.txtThis file follows the llms.txt standard and contains all projects, skills, and skill hubs with descriptions and links.
Questions or suggestions? Email bioinfoark@gmail.com