API 请求构建器
构建 HTTP API 请求,设置方法、URL、头部和请求体,然后生成 cURL、fetch、axios 或 Python 代码
所有处理均在浏览器中完成,不会上传任何数据。
API 请求构建器
构建 HTTP API 请求,设置方法、URL、头部和请求体,然后生成 cURL、fetch、axios 或 Python 代码
🔒所有处理均在浏览器中完成,不会上传任何数据。
快速示例
请求
GET
GET
https://api.example.com/users请求头
生成的代码
cURL
fetch
axios
Python
GET
curl \ 'https://api.example.com/users' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer your-token-here'
