GIVE YOUR AI REAL-WORLD SUPERPOWERS
One API to connect your AI agents with 15,000+ human executors. Transform digital intelligence into physical action across Europe.
Lightning Fast Integration
Get up and running in under 5 minutes with our intuitive SDK and comprehensive docs
Global Executor Network
Access 15,000+ verified professionals across 27 countries in Europe and beyond
Enterprise Security
SOC2 Type II certified with end-to-end encryption and GDPR compliance
Transparent Pricing
Pay only for completed tasks. No setup fees, no monthly minimums
POWERFUL YET SIMPLE API
Everything you need to build production-ready integrations
import W3DO from '@w3do/sdk';
const client = new W3DO({
apiKey: process.env.W3DO_API_KEY
});
// Create a task
const task = await client.tasks.create({
title: "Verify product placement at Carrefour Paris",
type: "retail_audit",
payout: 35.00,
location: {
lat: 48.8566,
lng: 2.3522,
address: "Carrefour, Champs-ΓlysΓ©es, Paris"
},
requirements: {
skills: ["retail", "photography"],
equipment: ["smartphone"],
languages: ["French", "English"]
},
instructions: [
"Locate product display for Brand X",
"Take 3 photos: front, side, price tag",
"Count SKUs and note any out-of-stock",
"Submit via mobile app"
],
deadline: "2024-01-20T18:00:00Z"
});
console.log(`Task created: ${task.id}`);
// Handle real-time updates
app.post('/webhooks/w3do', async (req, res) => {
const { event, data } = req.body;
switch(event) {
case 'task.accepted':
console.log(`Executor ${data.executor.name} accepted task`);
await notifyTeam(data);
break;
case 'task.completed':
console.log('Task completed, processing results...');
const results = await processSubmission(data.submission);
await updateDatabase(results);
break;
case 'task.disputed':
await escalateToSupport(data);
break;
}
res.status(200).send('OK');
});
// Integrate with your AI agent
import OpenAI from 'openai';
import W3DO from '@w3do/sdk';
const openai = new OpenAI();
const w3do = new W3DO({ apiKey: process.env.W3DO_API_KEY });
async function aiPropertyInspection(propertyId) {
// AI determines inspection needs
const inspectionPlan = await openai.chat.completions.create({
model: "gpt-4",
messages: [{
role: "system",
content: "Create inspection checklist for property"
}]
});
// Dispatch human executor
const task = await w3do.tasks.create({
title: `AI-guided inspection for property ${propertyId}`,
type: "property_inspection",
payout: 75.00,
customFields: {
checklistItems: inspectionPlan.choices[0].message.content
}
});
// AI processes results
const results = await w3do.tasks.waitForCompletion(task.id);
const analysis = await analyzeInspectionData(results);
return analysis;
}
TRANSFORMING INDUSTRIES WITH AI + HUMAN COLLABORATION
See how leading companies use w3do to scale their operations
Property Tech
Revolutionize real estate with AI-powered property management
Retail Intelligence
Real-time market insights and competitor monitoring
Insurance Tech
Accelerate claims processing with instant verification
Supply Chain
End-to-end visibility and verification
SEAMLESS INTEGRATIONS
Works with your existing AI and automation stack
OpenAI
Native GPT-4 integration
Anthropic
Claude API support
LangChain
Chain complex workflows
Zapier
1000+ app connections
Slack
Real-time notifications
Stripe
Payment orchestration
EVERYTHING YOU NEED TO SUCCEED
SIMPLE, TRANSPARENT PRICING
Start free, scale as you grow. No hidden fees.
Free Tier
β¬0
Perfect for testing
- 100 tasks/month
- Basic support
- All features included
Growth
β¬0.25
per task
- Unlimited tasks
- Priority support
- Advanced analytics
Enterprise
Custom
Volume discounts
- SLA guarantees
- Dedicated support
- Custom integrations