API 服务
免费 API 接口,适合开发者集成。每个 IP 每分钟限制 30 次请求。
GET
/api/ip获取请求者的 IP 信息和 User-Agent
// 请求
curl https://yourdomain.com/api/ip
// 响应
{
"ip": "1.2.3.4",
"userAgent": "curl/8.0.1",
"timestamp": 1700000000
}GET
/api/uuid生成 UUID v4 唯一标识符
// 请求
curl https://yourdomain.com/api/uuid
// 响应
{
"uuid": "550e8400-e29b-41d4-a716-446655440000"
}GET
/api/uuid?count=5批量生成 UUID(最多 100 个)
// 响应
{
"uuids": [
"550e8400-...",
"6ba7b810-...",
...
]
}