sproutgigs
SproutGigs API for managing buyer jobs, gigs, freelancer lists, profiles, balances, and task reviews. Use when user mentions "SproutGigs", "Picoworkers", "microtasks", "crowd tasks", "buyer jobs", "gig marketplace", or "task submissions".
What this skill does
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name SPROUTGIGS_API_SECRET` or `zero doctor check-connector --url https://sproutgigs.com/api/users/get-balances.php --method GET`
## Authentication
SproutGigs uses HTTP Basic Auth with the user ID as the username and API secret as the password.
```bash
curl -s "https://sproutgigs.com/api/users/get-balances.php" \
-u "$SPROUTGIGS_USER_ID:$SPROUTGIGS_API_SECRET"
```
Get or reset the API secret from SproutGigs Account Settings -> Settings.
## Environment Variables
- `SPROUTGIGS_USER_ID` - SproutGigs user ID
- `SPROUTGIGS_API_SECRET` - SproutGigs API secret
## API Basics
Base URL: `https://sproutgigs.com/api`
SproutGigs' public docs show JSON request bodies for several `GET` endpoints. When an endpoint needs parameters, send JSON with `Content-Type: application/json`, even if the method is `GET`.
Rate limit: 1 request/second. Do not run SproutGigs API calls in parallel. If a request returns HTTP 429, wait at least 10 seconds before retrying.
Many write endpoints spend account balance or affect worker outcomes. Before calling `post-job`, `add-positions`, `feature-job`, `rate-*`, list block/unblock, or job stop/restart/resume operations, confirm the exact parameters unless the user has already explicitly authorized that action.
## Helper Pattern
```bash
sproutgigs() {
local method="$1"
local path="$2"
local body="${3:-}"
if [ -n "$body" ]; then
curl -s -X "$method" "https://sproutgigs.com/api$path" \
-u "$SPROUTGIGS_USER_ID:$SPROUTGIGS_API_SECRET" \
-H "Content-Type: application/json" \
-d "$body"
else
curl -s -X "$method" "https://sproutgigs.com/api$path" \
-u "$SPROUTGIGS_USER_ID:$SPROUTGIGS_API_SECRET"
fi
}
```
## Endpoint Inventory
### Gigs
- `GET /gigs/get-categories.php` - list gig categories and minimum prices
- `GET /gigs/get-gig.php` - get a gig by `gig_id`
- `GET /gigs/get-gigs.php` - list active gigs with filters and pagination
- `GET /gigs/get-gig-public-questions.php` - list public Q&A for a gig
- `GET /gigs/get-gig-reviews.php` - list gig reviews
Useful gig list body fields: `category_id`, `subcategory_ids`, `countries`, `min_price`, `max_price`, `search_term`, `page`, `results_per_page`, `order`.
```bash
sproutgigs GET /gigs/get-gigs.php '{
"page": 1,
"results_per_page": 10,
"order": "newest"
}'
```
### Jobs
- `POST /jobs/add-positions.php` - add paid positions to a job
- `POST /jobs/edit-targeting.php` - edit job targeting
- `POST /jobs/feature-job.php` - feature a job
- `GET /jobs/get-categories.php` - list job categories
- `GET /jobs/get-job.php` - get one job
- `GET /jobs/get-jobs.php` - list jobs
- `GET /jobs/get-lists.php` - list account freelancer lists
- `POST /jobs/get-predicted-position.php` - estimate job position
- `GET /jobs/get-rated-tasks.php` - list rated tasks
- `GET /jobs/get-unrated-tasks.php` - list submitted tasks awaiting rating
- `GET /jobs/get-zones.php` - list available zones
- `POST /jobs/job-pause.php` - pause a job
- `POST /jobs/post-job.php` - create a job
- `POST /jobs/rate-multiple-tasks.php` - approve or reject multiple tasks
- `POST /jobs/rate-single-task.php` - approve or reject one task
- `POST /jobs/job-restart.php` - restart a stopped job
- `POST /jobs/job-resume.php` - resume a paused job
- `POST /jobs/set-speed.php` - update job speed
- `POST /jobs/set-ttr.php` - update time-to-rate
- `POST /jobs/set-daily-tasks-limit.php` - update daily task limit
- `POST /jobs/set-distribution.php` - update job distribution
- `POST /jobs/job-stop.php` - stop a job
Common discovery flow before posting a job:
```bash
sproutgigs GET /users/get-balances.php
sproutgigs GET /jobs/get-zones.php
sproutgigs GET /jobs/get-categories.php
sproutgigs GET /jobs/get-lists.php
```
Use the field names from SproutGigs' current API docs when creating or updating jobs; the docs contain the full required field list and accepted values for each write endpoint.
### Lists
- `GET /lists/get-public-lists.php` - list public freelancer lists
- `POST /lists/add-workers.php` - add freelancers to a list
- `POST /lists/block-workers.php` - block freelancers in a list
- `POST /lists/unblock-workers.php` - unblock freelancers in a list
### Profiles
- `GET /profiles/get-profile.php` - get a freelancer profile
```bash
sproutgigs GET /profiles/get-profile.php '{"user_id": "123456"}'
```
### Users
- `GET /users/get-balances.php` - get account balances
```bash
sproutgigs GET /users/get-balances.php
```
### Webhooks
SproutGigs documents webhooks for job status changes and submitted tasks. These are incoming notifications configured in SproutGigs, not outbound API calls to run from the agent.
## Common Workflows
### Check Account and Job Setup
```bash
sproutgigs GET /users/get-balances.php
sleep 1
sproutgigs GET /jobs/get-zones.php
sleep 1
sproutgigs GET /jobs/get-categories.php
```
### Review Submitted Tasks
```bash
sproutgigs GET /jobs/get-unrated-tasks.php '{"job_id": "JOB_ID", "page": 1, "results_per_page": 25}'
```
Inspect submissions before rating. Ratings are worker-impacting and often irreversible from the API, so do not bulk approve or reject without explicit user confirmation.
### Search Marketplace Gigs
```bash
sproutgigs GET /gigs/get-categories.php
sleep 1
sproutgigs GET /gigs/get-gigs.php '{"search_term": "wordpress", "page": 1, "results_per_page": 10}'
```
## Notes
- The API is marked beta in SproutGigs' docs.
- The public docs were last checked on 2026-05-19 and list a documentation update date of 2026-04-29.
- Prefer read endpoints first, then narrow write calls to one job/list/task batch at a time.
- Avoid automating worker-side task claiming or human-action simulation. This skill is for buyer-side job, gig, list, profile, balance, and review operations.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.