目录收录
Archive.org API
The Internet Archive. Internet Archive 高级搜索 API;GET /advancedsearch.php 用 Lucene 式 q 查询元数据,output=json 返回分页结果。
免费 API
目录收录
无需认证
CORS: No
- 来源类型
- 目录收录
- 可用方式
- 免费可用
- 认证方式
- 无需认证
- 协议格式
- REST
- 计费摘要
- 免费为主
- 稳定性说明
- 以来源方说明为准
面向 Agent
如何调用 Archive.org API
供 Hermes、OpenClaw、浏览器自动化 Agent 等读取。优先解析 <head> 内 #boyapi-agent-spec JSON。
Hermes
OpenClaw
Coding Agent
Browser Agent
-
1. 确认调用目标
业务请求发往
https://archive.org,不要向boyapi.com发送 Archive.org 业务 API。 -
2. 构造 HTTP 请求
- 方法:
GET - 路径:
/advancedsearch.php - 必填:
q - 鉴权:无需 API Key
- 方法:
-
3. 最小可执行示例
复制以下 cURL 试调:
curl -sS -G 'https://archive.org/advancedsearch.php' \ --data-urlencode 'q=collection:opensource_movies' \ -d 'fl[]=identifier' \ -d 'rows=5' \ -d 'page=1' \ -d 'output=json' -
4. 解析响应
HTTP 200 时解析 JSON 主体;失败时对照错误码表与 HTTP 状态。
-
5. 环境与限制
CORS:
No。浏览器联调以实际结果为准。
机器可读规范(JSON)
application/json · #boyapi-agent-spec
{
"spec_version": "1.0",
"page_type": "boyapi_api_detail",
"api": {
"slug": "archive-org",
"name": "Archive.org"
},
"invocation": {
"method": "GET",
"base_url": "https://archive.org",
"path": "/advancedsearch.php",
"full_url_example": "https://archive.org/advancedsearch.php?q=collection:opensource_movies&fl[]=identifier&rows=5&page=1&output=json"
}
}
完整字段以 <head> 中 #boyapi-agent-spec 为准。
Agent 注意:boyapi.com 仅提供目录与文档,不提供第三方 API 代理网关。
接入信息
可用方式
- 目录定位
- 免费目录收录(public-apis)
- 认证要求
- 无需认证(auth=No)
- HTTPS
- 支持(https=Yes)
- CORS
- No — 建议通过服务端代理调用
- 接口名称
- Archive.org
- 典型端点
- GET /advancedsearch.php
- 功能描述
- The Internet Archive
平台支持
- 标注为目录收录,非百易API 自建接口
- CORS 为 No,请按实际环境选择浏览器或服务端调用
- 生产环境请结合参数表、响应字段与错误码评估