Welcome to the Wired Startups API. Our RESTful API provides programmatic access to startup data, country information, and platform statistics.
All API endpoints require authentication. You must have a registered account to access our API data. This allows us to maintain service quality and communicate any terms updates directly with our users.
Retrieve information about countries in our database, including startup counts and statistics.
featured
- Filter by featured countries (true/false)limit
- Limit results (max 100){
"status": "success",
"data": [
{
"id": 1,
"name": "South Africa",
"slug": "south-africa",
"flag_emoji": "🇿🇦",
"capital": "Cape Town",
"currency": "ZAR",
"timezone": "SAST",
"featured": true
}
],
"meta": {
"total": 10,
"endpoint": "/api/countries",
"version": "1.0"
}
}
View Documentation
Access verified startup information including company details, funding status, and contact information.
country
- Filter by country slugindustry
- Filter by industrystage
- Filter by funding stage (idea, prototype, mvp, growth, scale)funding_status
- Filter by funding statusfeatured
- Filter by featured startupspage
- Page number for paginationlimit
- Results per page (max 100){
"status": "success",
"data": [
{
"id": 1,
"name": "Sample Fintech Startup",
"slug": "sample-fintech-startup",
"description": "Revolutionary fintech solution...",
"industry": "Financial Technology",
"stage": "seed",
"funding_status": "seed",
"team_size": 12,
"website": "https://example.com",
"city": "Cape Town",
"country": "South Africa",
"country_slug": "south-africa",
"flag_emoji": "🇿🇦",
"featured": true,
"created_at": "2024-01-15T10:30:00Z"
}
],
"meta": {
"total": 45,
"page": 1,
"per_page": 20,
"total_pages": 3,
"filters": {
"country": "south-africa",
"industry": null,
"stage": "seed"
}
}
}
View Documentation
Send messages to startups through our platform. Requires user authentication.
{
"startup_id": 1,
"startup_contact_id": "b83a4f7dc35d33bc",
"subject": "Partnership Inquiry",
"message": "We would like to discuss a potential partnership..."
}
{
"success": true,
"message": "Message sent successfully! The startup will receive your message.",
"message_id": 123,
"daily_messages_remaining": 2
}
Error Code | Description |
---|---|
PREMIUM_REQUIRED |
Startup only accepts premium messages |
DAILY_LIMIT_EXCEEDED |
Free account daily message limit reached |
CONTACT_NOT_ALLOWED |
Startup has opted out of messages |
STARTUP_NOT_FOUND |
Invalid startup ID or contact ID |
Access job opportunities and internship listings from startups and companies.
country
- Filter by countrytype
- Filter by job type (full_time, part_time, contract, internship)experience
- Filter by experience levelremote
- Filter remote-friendly positionssalary_min
- Minimum salary filterAccess talent profiles of professionals seeking opportunities in the startup ecosystem.
skills
- Filter by skills and expertiseexperience_level
- Filter by experience levelcountry
- Filter by locationlooking_for_work
- Filter actively job-seeking profilesAccess funding opportunities including VC funds, grants, and accelerator programs.
funding_type
- Filter by type (vc, grant, accelerator, angel)stage
- Filter by funding stageindustry
- Filter by focus industryamount_min
- Minimum funding amountDirectory of investment funds, VCs, and angel networks actively investing in startups.
fund_type
- Filter by fund typeaum_min
- Minimum assets under managementinvestment_stage
- Filter by investment focusindustry_focus
- Filter by industry specializationStartup events, networking meetups, conferences, and workshops across Africa.
country
- Filter by countryevent_type
- Filter by event typedate_from
- Filter events from datedate_to
- Filter events until datePlatform statistics and analytics for research and insights.
/api/analytics/countries
- Country-specific metrics/api/analytics/industries
- Industry trends and data/api/analytics/funding-trends
- Investment activity data/api/analytics/job-market
- Employment market insightsAll systems operational. API uptime: 99.9%
By using our API, you agree to our terms of service. We may update these terms and will notify registered users via email or WhatsApp.
Need help? Contact our support team through your account dashboard or email us for technical assistance.
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://wiredstartups.com/api/countries
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://wiredstartups.com/api/startups?country=south-africa&limit=10"
curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"startup_id":1,"subject":"Partnership","message":"Hello!"}' \
https://wiredstartups.com/api/contact-startup