Test your web development skills! Clone news articles from top Indian publications and get instant feedback on your work.
🔍 100% Transparent Process: Live leaderboard shows all scores in real-time. Top 3 highest scorers when the timer ends will receive job offers.
⚠️ Important: Your solution must support fetching articles from ALL 10 sites listed below. No site should be skipped or unsupported.
Endpoint: POST /api/challenge
Request Body (JSON):
{
"url": "string (required) - Article URL from supported sites"
}
Response (JSON):
{
"id": "string - Challenge ID (save this!)",
"originalUrl": "string - The article URL",
"title": "string - Article title",
"site": "string - Source website",
"metadata": {
"wordCount": "number",
"images": ["array of image URLs"],
"headings": ["array of heading texts"],
"paragraphCount": "number"
}
}
Endpoint: POST /api/submit
Request Body (JSON) - All fields required:
{
"challengeId": "string (required) - Your challenge ID",
"name": "string (required) - Your full name",
"email": "string (required) - Your email address",
"url": "string (required) - Your hosted clone URL"
}
Response (JSON):
{
"id": "string - Submission ID",
"totalScore": "number (0-100)",
"score": {
"titleMatch": "number (max 15)",
"contentMatch": "number (max 25)",
"structureMatch": "number (max 15)",
"imageCount": "number (max 15)",
"headingMatch": "number (max 10)",
"responsiveness": "number (max 10)",
"loadTime": "number (max 5)",
"accessibility": "number (max 5)"
},
"feedback": ["array of feedback strings"]
}
Provide any article URL from the listed sites or get a random one assigned
Recreate the article using HTML, CSS, and host it publicly
Submit your URL and get instant detailed feedback via email