geepers-data
通过单个端点从 17 个权威 API(arXiv、人口普查局、GitHub、NASA、维基百科、PubMed、新闻、天气、金融、FEC 等)获取结构化数据。当您需要来自权威来源的真实数据进行研究、可视化或分析时使用。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~lukeslp-geepers-datacURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~lukeslp-geepers-data/file -o lukeslp-geepers-data.md# Dreamer Data
Access 17 structured data sources through `https://api.dr.eamer.dev`.
## Authentication
```bash
export DREAMER_API_KEY=your_key_here
```
## Endpoints
### List Available Sources
```
GET https://api.dr.eamer.dev/v1/data
```
### Search Across Sources
```
POST https://api.dr.eamer.dev/v1/data/search
Body:
{
"source": "arxiv",
"query": "machine learning interpretability",
"limit": 10
}
```
### Available Sources
| Source | ID | What it provides |
|--------|-----|-----------------|
| arXiv | `arxiv` | Academic papers |
| Census Bureau | `census` | US demographic data |
| GitHub | `github` | Code repositories, issues, users |
| NASA | `nasa` | Space data, images, astronomy |
| Wikipedia | `wikipedia` | Encyclopedia articles |
| PubMed | `pubmed` | Biomedical literature |
| News | `news` | Current events from 80+ outlets |
| Weather | `weather` | Current and forecast weather |
| Finance | `finance` | Stock prices and market data |
| FEC | `fec` | Federal campaign finance |
| OpenLibrary | `openlibrary` | Books and library records |
| Semantic Scholar | `semantic_scholar` | Academic citation graphs |
| YouTube | `youtube` | Video metadata |
| Wolfram Alpha | `wolfram` | Computational knowledge |
| Wayback Machine | `archive` | Web archive snapshots |
| Judiciary | `judiciary` | US court records |
| MAL | `mal` | Anime and manga data |
## When to Use
- Research that needs verified, citable data
- Building data pipelines from authoritative sources
- Enriching existing datasets with external context
## Don't Use When
- The source you need isn't in the list (check `/v1/data` first)
- You have direct API access to the source with higher rate limits
---
## 中文说明
# Dreamer Data
通过 `https://api.dr.eamer.dev` 访问 17 个结构化数据源。
## 身份验证
```bash
export DREAMER_API_KEY=your_key_here
```
## 端点
### 列出可用数据源
```
GET https://api.dr.eamer.dev/v1/data
```
### 跨数据源搜索
```
POST https://api.dr.eamer.dev/v1/data/search
Body:
{
"source": "arxiv",
"query": "machine learning interpretability",
"limit": 10
}
```
### 可用数据源
| 数据源 | ID | 提供的内容 |
|--------|-----|-----------------|
| arXiv | `arxiv` | 学术论文 |
| 人口普查局 | `census` | 美国人口统计数据 |
| GitHub | `github` | 代码仓库、议题、用户 |
| NASA | `nasa` | 太空数据、图像、天文学 |
| Wikipedia | `wikipedia` | 百科全书条目 |
| PubMed | `pubmed` | 生物医学文献 |
| News | `news` | 来自 80 多家媒体的时事 |
| Weather | `weather` | 当前天气和预报 |
| Finance | `finance` | 股票价格和市场数据 |
| FEC | `fec` | 联邦竞选财务 |
| OpenLibrary | `openlibrary` | 图书和图书馆记录 |
| Semantic Scholar | `semantic_scholar` | 学术引用图谱 |
| YouTube | `youtube` | 视频元数据 |
| Wolfram Alpha | `wolfram` | 计算知识 |
| Wayback Machine | `archive` | 网页存档快照 |
| Judiciary | `judiciary` | 美国法院记录 |
| MAL | `mal` | 动漫和漫画数据 |
## 何时使用
- 需要经过验证、可引用数据的研究
- 从权威来源构建数据管道
- 用外部上下文丰富现有数据集
## 何时不使用
- 你需要的数据源不在列表中(先检查 `/v1/data`)
- 你拥有对该数据源的直接 API 访问权限,且具有更高的速率限制