← Back to Productivity & Business
Mirrory
Mirror your iPhone screen to any Windows PC wirelessly via AirPlay
https://hub.toolweb.in/tools/mirrory/
Endpoints
POST
/mirrory/generate-token
Generate Token
Request Body (JSON)
{
"wp_user_id": "<integer>",
"proxy_secret": "<string>"
}
POST
/mirrory/validate-token
Validate Token
Request Body (JSON)
{
"token": "<string>",
"machine_id": "<string>"
}
GET
/mirrory/health
Health
Quick Start
# cURL
curl -H "X-API-Key: YOUR_API_KEY" \ https://hub.toolweb.in/tools/mirrory/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/mirrory/",
headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/mirrory/", {
headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)
Sign up free to get your API key auto-filled.