Claw4Science provides a free, public REST API to query our curated directory of AI agent projects and skill libraries for scientific research. No authentication required.
Base URL: https://claw4science.org/api
Returns all projects and skill libraries in the directory.
Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
type | string | all | Filter by type: all, projects, or skills |
group | string | — | Filter by category (see categories below) |
q | string | — | Search by name, description, or tags |
Categories:
| ID | Description |
|---|---|
core | Core Platform & Lightweight Variants (OpenClaw, NanoBot, PicoClaw, etc.) |
team | Team & Evolution (Clawith, MetaClaw, etc.) |
science | Science & Research in the Claw Ecosystem |
education | Education (OpenMAIC) |
bio-omics | Bioinformatics & Omics |
drug-molecular | Drug Discovery & Molecular Simulation |
general-research | General Research Agents |
specialized | Specialized Science |
Example Requests:
# Get all projects and skills
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 skill libraries
curl https://claw4science.org/api/projects?type=skillsExample 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",
"tags": ["Stanford", "Nature Methods", "scRNA-seq"],
"category": "bio-omics",
"homepage": null,
"paper": "https://www.nature.com/articles/s41592-025-02549-z"
}
],
"skills": [...],
"meta": {
"total_projects": 41,
"total_skills": 16,
"categories": ["core", "team", "science", ...],
"api_version": "1.0",
"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": 154,
"pushed_at": "2026-03-17T17:21:04Z"
},
"openclaw/openclaw": {
"stars": 323442,
"pushed_at": "2026-03-19T12:00:00Z"
}
},
"fetched_at": "2026-03-20T00:00:00.000Z"
}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 and skills with descriptions and links.
Questions or suggestions? Email bioinfoark@gmail.com