OneToolAll API
เอกสารคู่มือการใช้งาน API สำหรับนักพัฒนา เชื่อมต่อบริการของ OneToolAll เข้ากับแอปพลิเคชันของคุณได้ฟรี (Rate Limited)
Free to use
Rate Limited (60 req/min)
RESTful JSON
POST
/api/v1/url/shortenย่อลิงก์
สร้างลิงก์สั้นพร้อมหน้าคั่น 5 วินาที
Request
{
"url": "https://example.com/very-long-url"
}Response (200 OK)
{
"status": "success",
"data": {
"short_url": "https://onetoolall.com/s/xyz123",
"code": "xyz123"
}
}GET
/api/v1/network/ip-infoข้อมูล IP
ดึงข้อมูล IP, ประเทศ และเบราว์เซอร์ปัจจุบัน
Request
// No body requiredResponse (200 OK)
{
"status": "success",
"data": {
"ip": "192.168.1.1",
"country": "TH",
"city": "Bangkok",
"user_agent": "Mozilla/5.0..."
}
}POST
/api/v1/seo/auditตรวจสอบ SEO
ดึงข้อมูล Meta Tags และตรวจสอบประสิทธิภาพหน้าเว็บ
Request
{
"url": "https://example.com"
}Response (200 OK)
{
"status": "success",
"data": {
"title": "Example Domain",
"description": "...",
"score": 85
}
}