Buy Twitter Likes, LinkedIn Followers, Instagram Comments, TikTok Views, YouTube Subscribers, Reddit Upvotes, Facebook Reactions, Medium Claps, Dev.to Reactions, GitHub Stars, Quora Upvotes, Substack Subscribers, and Bluesky Likes through our API.
Get started with our API in three simple steps:
X-API-Key headerAuthorize to get the Base URL
Authorize to get URLAll API requests require authentication using your API key. Include it in the request header or as a query parameter.
X-API-Key: your_api_key_hereAlternatively, you can pass the API key as a query parameter: ?api_key=your_api_key_here
create-task/Create a new task to be completed by the community. You need sufficient balance and available task slots to create a task.
task-status/{task_id}/Get the status and details of one or more tasks. You can query a single task by ID or multiple tasks using comma-separated IDs. Use this endpoint to track task progress and completion.
generate-key/Generate an API key to authenticate your requests. Keep your key secure and never share it publicly. Each user can have only one active API key.
Click on any social network below to jump to its detailed documentation:
Create and track tasks for Twitter/X posts and profiles
Create and track tasks for LinkedIn posts and profiles
Create and track tasks for Reddit posts and profiles
Create and track tasks for Instagram posts and profiles
Create and track tasks for TikTok videos and profiles
Create and track tasks for YouTube videos and channels
Create and track tasks for Facebook posts and profiles
Create and track tasks for Medium articles and profiles
Create and track tasks for Dev.to articles and profiles
Create and track tasks for GitHub repositories and profiles
Create and track tasks for Quora questions and profiles
Create and track tasks for Substack articles and profiles
Create and track tasks for Bluesky posts and profiles
Create and track tasks for Threads posts and profiles
Create and track tasks for Twitter/X posts and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsREPOSTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://twitter.com/username/status/123456789https://x.com/usernameMake sure your URLs match these patterns:
x.com/status/twitter.com/status/x.com/twitter.com/POST https://***********/api/public-api/create-task/{
"post_url": "https://twitter.com/username/status/123456789",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "TWITTER"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://twitter.com/username/status/123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "TWITTER",
"name": "Twitter (X.com)"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://twitter.com/username/status/123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "TWITTER",
"name": "Twitter (X.com)"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for LinkedIn posts and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsREPOSTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.linkedin.com/posts/username_post-title-activity-123456789https://www.linkedin.com/in/usernameMake sure your URLs match these patterns:
/posts//feed/update/urn:li:activity:/pulse/linkedin.com/in/POST https://***********/api/public-api/create-task/{
"post_url": "https://www.linkedin.com/posts/username_post-title-activity-123456789",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "LINKEDIN"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.linkedin.com/posts/username_post-title-activity-123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "LINKEDIN",
"name": "LinkedIn"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.linkedin.com/posts/username_post-title-activity-123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "LINKEDIN",
"name": "LinkedIn"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Reddit posts and profiles
UPVOTEMin: 4 pointsCOMMENTMin: 4 pointsSAVEMin: 4 pointsFOLLOWMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.reddit.com/r/subreddit/comments/123456/post_titlehttps://www.reddit.com/user/usernameMake sure your URLs match these patterns:
reddit.com/r/subreddit/comments/reddit.com/user/POST https://***********/api/public-api/create-task/{
"post_url": "https://www.reddit.com/r/subreddit/comments/123456/post_title",
"type": "UPVOTE",
"price": 4,
"actions_required": 10,
"social_network_code": "REDDIT"
}Note: Price must be at least 4 points for UPVOTE action
{
"id": 12345,
"creator": 1,
"type": "UPVOTE",
"post_url": "https://www.reddit.com/r/subreddit/comments/123456/post_title",
"price": 4,
"actions_required": 10,
"actions_completed": 0,
"original_price": 40,
"social_network": {
"id": 1,
"code": "REDDIT",
"name": "Reddit"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 4"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "UPVOTE",
"post_url": "https://www.reddit.com/r/subreddit/comments/123456/post_title",
"price": 4,
"actions_required": 10,
"actions_completed": 7,
"original_price": 40,
"social_network": {
"id": 1,
"code": "REDDIT",
"name": "Reddit"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Instagram posts and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.instagram.com/p/ABC123xyz/https://www.instagram.com/username/Make sure your URLs match these patterns:
instagram.com/p/instagram.com/reel/instagram.com/POST https://***********/api/public-api/create-task/{
"post_url": "https://www.instagram.com/p/ABC123xyz/",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "INSTAGRAM"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.instagram.com/p/ABC123xyz/",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "INSTAGRAM",
"name": "Instagram"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.instagram.com/p/ABC123xyz/",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "INSTAGRAM",
"name": "Instagram"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for TikTok videos and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.tiktok.com/@username/video/1234567890https://www.tiktok.com/@usernameMake sure your URLs match these patterns:
tiktok.com/@/video/tiktok.com/@POST https://***********/api/public-api/create-task/{
"post_url": "https://www.tiktok.com/@username/video/1234567890",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "TIKTOK"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.tiktok.com/@username/video/1234567890",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "TIKTOK",
"name": "TikTok"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.tiktok.com/@username/video/1234567890",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "TIKTOK",
"name": "TikTok"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for YouTube videos and channels
LIKEMin: 2 pointsCOMMENTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.youtube.com/watch?v=dQw4w9WgXcQhttps://www.youtube.com/@usernameMake sure your URLs match these patterns:
youtube.com/watchyoutu.be/youtube.com/@youtube.com/channel/POST https://***********/api/public-api/create-task/{
"post_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "YOUTUBE"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "YOUTUBE",
"name": "YouTube"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "YOUTUBE",
"name": "YouTube"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Facebook posts and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsREPOSTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.facebook.com/username/posts/123456789https://www.facebook.com/usernameMake sure your URLs match these patterns:
facebook.com//posts/facebook.com/POST https://***********/api/public-api/create-task/{
"post_url": "https://www.facebook.com/username/posts/123456789",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "FACEBOOK"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.facebook.com/username/posts/123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "FACEBOOK",
"name": "Facebook"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.facebook.com/username/posts/123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "FACEBOOK",
"name": "Facebook"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Medium articles and profiles
CLAPMin: 2 pointsCOMMENTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://medium.com/@username/article-title-123456https://medium.com/@usernameMake sure your URLs match these patterns:
medium.com/@/medium.com/@POST https://***********/api/public-api/create-task/{
"post_url": "https://medium.com/@username/article-title-123456",
"type": "CLAP",
"price": 2,
"actions_required": 10,
"social_network_code": "MEDIUM"
}Note: Price must be at least 2 points for CLAP action
{
"id": 12345,
"creator": 1,
"type": "CLAP",
"post_url": "https://medium.com/@username/article-title-123456",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "MEDIUM",
"name": "Medium"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "CLAP",
"post_url": "https://medium.com/@username/article-title-123456",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "MEDIUM",
"name": "Medium"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Dev.to articles and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsSAVEMin: 4 pointsFOLLOWMin: 4 pointsUNICORNMin: 2 points* Setting a price below the minimum will result in a validation error
https://dev.to/username/article-title-123https://dev.to/usernameMake sure your URLs match these patterns:
dev.to//dev.to/POST https://***********/api/public-api/create-task/{
"post_url": "https://dev.to/username/article-title-123",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "DEVTO"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://dev.to/username/article-title-123",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "DEVTO",
"name": "Dev.to"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://dev.to/username/article-title-123",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "DEVTO",
"name": "Dev.to"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for GitHub repositories and profiles
STARMin: 3 pointsFOLLOWMin: 4 pointsWATCHMin: 2 points* Setting a price below the minimum will result in a validation error
https://github.com/username/repositoryhttps://github.com/usernameMake sure your URLs match these patterns:
github.com//github.com/POST https://***********/api/public-api/create-task/{
"post_url": "https://github.com/username/repository",
"type": "STAR",
"price": 3,
"actions_required": 10,
"social_network_code": "GITHUB"
}Note: Price must be at least 3 points for STAR action
{
"id": 12345,
"creator": 1,
"type": "STAR",
"post_url": "https://github.com/username/repository",
"price": 3,
"actions_required": 10,
"actions_completed": 0,
"original_price": 30,
"social_network": {
"id": 1,
"code": "GITHUB",
"name": "GitHub"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 3"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "STAR",
"post_url": "https://github.com/username/repository",
"price": 3,
"actions_required": 10,
"actions_completed": 7,
"original_price": 30,
"social_network": {
"id": 1,
"code": "GITHUB",
"name": "GitHub"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Quora questions and profiles
UPVOTEMin: 4 pointsCOMMENTMin: 4 pointsFOLLOWMin: 4 pointsSHAREMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.quora.com/question-titlehttps://www.quora.com/profile/usernameMake sure your URLs match these patterns:
quora.com/qr.com/quora.com/profile/POST https://***********/api/public-api/create-task/{
"post_url": "https://www.quora.com/question-title",
"type": "UPVOTE",
"price": 4,
"actions_required": 10,
"social_network_code": "QUORA"
}Note: Price must be at least 4 points for UPVOTE action
{
"id": 12345,
"creator": 1,
"type": "UPVOTE",
"post_url": "https://www.quora.com/question-title",
"price": 4,
"actions_required": 10,
"actions_completed": 0,
"original_price": 40,
"social_network": {
"id": 1,
"code": "QUORA",
"name": "Quora"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 4"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "UPVOTE",
"post_url": "https://www.quora.com/question-title",
"price": 4,
"actions_required": 10,
"actions_completed": 7,
"original_price": 40,
"social_network": {
"id": 1,
"code": "QUORA",
"name": "Quora"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Substack articles and profiles
RESTACKMin: 6 pointsCOMMENTMin: 4 pointsSAVEMin: 4 pointsFOLLOWMin: 4 points* Setting a price below the minimum will result in a validation error
https://username.substack.com/p/article-titlehttps://username.substack.comMake sure your URLs match these patterns:
substack.com/p/substack.com/POST https://***********/api/public-api/create-task/{
"post_url": "https://username.substack.com/p/article-title",
"type": "RESTACK",
"price": 6,
"actions_required": 10,
"social_network_code": "SUBSTACK"
}Note: Price must be at least 6 points for RESTACK action
{
"id": 12345,
"creator": 1,
"type": "RESTACK",
"post_url": "https://username.substack.com/p/article-title",
"price": 6,
"actions_required": 10,
"actions_completed": 0,
"original_price": 60,
"social_network": {
"id": 1,
"code": "SUBSTACK",
"name": "Substack"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 6"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "RESTACK",
"post_url": "https://username.substack.com/p/article-title",
"price": 6,
"actions_required": 10,
"actions_completed": 7,
"original_price": 60,
"social_network": {
"id": 1,
"code": "SUBSTACK",
"name": "Substack"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Bluesky posts and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsREPOSTMin: 4 pointsFOLLOWMin: 4 points* Setting a price below the minimum will result in a validation error
https://bsky.app/profile/username.bsky.social/post/123456https://bsky.app/profile/username.bsky.socialMake sure your URLs match these patterns:
bsky.app/profile//post/bsky.app/profile/POST https://***********/api/public-api/create-task/{
"post_url": "https://bsky.app/profile/username.bsky.social/post/123456",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "BLUESKY"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://bsky.app/profile/username.bsky.social/post/123456",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "BLUESKY",
"name": "Bluesky"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://bsky.app/profile/username.bsky.social/post/123456",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "BLUESKY",
"name": "Bluesky"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorCreate and track tasks for Threads posts and profiles
LIKEMin: 2 pointsCOMMENTMin: 4 pointsREPOSTMin: 4 pointsFOLLOWMin: 4 pointsSAVEMin: 4 points* Setting a price below the minimum will result in a validation error
https://www.threads.net/@username/post/123456789https://www.threads.net/@usernameMake sure your URLs match these patterns:
threads.net/@/post/threads.net/@POST https://***********/api/public-api/create-task/{
"post_url": "https://www.threads.net/@username/post/123456789",
"type": "LIKE",
"price": 2,
"actions_required": 10,
"social_network_code": "THREADS"
}Note: Price must be at least 2 points for LIKE action
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.threads.net/@username/post/123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 0,
"original_price": 20,
"social_network": {
"id": 1,
"code": "THREADS",
"name": "Threads"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 0,
"is_pinned": false,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null
}// Price below minimum for action type:
{
"detail": "price: Ensure this value is greater than or equal to 2"
}
// Insufficient balance:
{
"detail": "Insufficient balance to create task"
}
// Duplicate task exists:
{
"detail": "A task with this URL and action type already exists",
"existing_task_id": 12344
}
// Missing required field:
{
"detail": "Missing required field: social_network_code"
}GET https://***********/api/public-api/task-status/12345/You can track multiple tasks at once: task-status/12345,12346,12347/
{
"id": 12345,
"creator": 1,
"type": "LIKE",
"post_url": "https://www.threads.net/@username/post/123456789",
"price": 2,
"actions_required": 10,
"actions_completed": 7,
"original_price": 20,
"social_network": {
"id": 1,
"code": "THREADS",
"name": "Threads"
},
"status": "ACTIVE",
"bonus_actions": 2,
"bonus_actions_completed": 1,
"created_at": "2024-12-25T10:30:00Z",
"completed_at": null,
"progress_percentage": 70,
"remaining_actions": 3
}ACTIVE - Task is being completedCOMPLETED - All actions finishedPAUSED - Temporarily stoppedDELETED - Cancelled by creatorTo start using the API, you need to: