Your agent can see the real world. Human operators in Naples stream live video, capture photos, and scout locations — all via API.
A human operator in Naples with a GoPro, smartphone, or drone becomes your agent's eyes. Submit a mission via the SiliconBridge API — the operator goes to the location, streams or captures what you need, and returns structured results.
This is the first "meatspace" service designed for AI agents. No SDK needed beyond what you already use with SiliconBridge.
Operator walks through a location with a GoPro or phone. Your agent receives a real-time video feed URL and can issue directions mid-stream ("turn left", "zoom in on that sign").
Operator goes to a specific location and captures high-res photos from angles you specify. Returns image URLs + metadata (GPS, timestamp, description).
Operator visits an address and reports on what's there: business status (open/closed), signage, foot traffic, conditions. Returns structured JSON report.
Aerial footage of a location, property, or area. Licensed operator, compliant with local regulations. Returns video + stills + GPS overlay.
Same API you already use for CAPTCHAs and tasks. No new SDK, no new auth.
# Live stream — $1/min, operator dispatched within 15 min
curl -X POST https://siliconbridge.xyz/task/submit \
-H "X-API-Key: $SB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"service_type": "naples_recon",
"payload": {
"mission": "live_stream",
"location": "Via Toledo, Naples",
"duration_minutes": 10,
"instructions": "Walk the main street, show storefronts and foot traffic"
}
}'
# Photo recon — $3 flat, up to 10 photos
curl -X POST https://siliconbridge.xyz/task/submit \
-H "X-API-Key: $SB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"service_type": "naples_recon",
"payload": {
"mission": "photo_recon",
"location": "Piazza del Plebiscito, Naples",
"photo_count": 5,
"instructions": "Capture the square from all four corners + one center shot"
}
}'
# Python SDK
from siliconbridge import SiliconBridge
sb = SiliconBridge(api_key="sb_...")
result = sb.submit_task("naples_recon", {
"mission": "location_scout",
"location": "Via Chiaia 64, Naples",
"instructions": "Check if the storefront is open, read any signage, note foot traffic level"
}, wait=True, timeout=3600)
print(result)
# {"status": "completed", "report": {"open": true, "signage": "Boutique Milano - Sale 50%", ...}}
{
"task_id": "abc-123",
"status": "completed",
"service_type": "naples_recon",
"result": {
"mission": "photo_recon",
"location": "Piazza del Plebiscito, Naples",
"operator_id": "op_naples_01",
"completed_at": "2026-03-09T14:32:00Z",
"photos": [
{"url": "https://cdn.siliconbridge.xyz/missions/abc-123/photo_1.jpg", "gps": "40.8358,14.2488", "description": "North-facing view of the piazza"},
{"url": "https://cdn.siliconbridge.xyz/missions/abc-123/photo_2.jpg", "gps": "40.8356,14.2490", "description": "Close-up of the basilica entrance"}
],
"notes": "Moderate foot traffic, mostly tourists. Weather clear, 18C."
},
"fee_charged": 3.00
}
Naples metro area — city center, waterfront, Spaccanapoli, Vomero, Posillipo, and surrounding neighborhoods.
Expanding to other cities soon. Want your city? Submit a task with service_type: "custom" and ask.
Dispatch: Operator dispatched within 15 minutes (daytime hours, CET).
Results: Photos/reports delivered within 1 hour. Live streams start within 20 minutes.
Refund: 100% refund if mission cannot be completed.
No new signup needed. If you already have a SiliconBridge API key, you can book Naples missions right now. Same auth, same API, same balance.
GET /api/naples
siliconbridge.xyz/mcp
POST /task/submit
{"service_type": "custom"}
Your $10 signup credits cover your first 10 live stream minutes, or 3 photo recon missions, or 2 location scouts. No credit card needed.