Search Guru.com freelance jobs with budgets and quote counts
The Guru.com API returns live freelance jobs and profiles as clean JSON.
4 active endpoints. Every call is 1 credit.
- POST/guru/v1/search
- POST/guru/v1/project
- POST/guru/v1/user
- POST/guru/v1/categories
What Guru.com endpoints does ReefAPI ship?
4 live read endpoints. Read-only data API: no writes, no account actions, no dashboard access on the target site.
Guru.com API
2 of 4 endpoints, ready to run
The whole Guru job board, searched server-side through Guru's own skill and category paths — with the budget shape and the quote count on every row.
// Press "Try it" and this pane shows exactly what the // live site returned this second — including an empty // result, if that is the truth. No key, no account.
How the Guru.com API works
Guru.com is a normal ReefAPI surface — the same four rules that hold for every other engine on the key.
No OAuth app, no request signing, no per-site account. One key covers all 185 engines.
Every route is a POST with a JSON body. Parameters are validated against the published schema before anything is charged.
Credits, not seats. Failed and blocked calls are never charged, and cache hits cost nothing.
One envelope everywhere. meta carries latency_ms, record_count and the endpoint that answered.
Browse a category when there is no total to page against
Guru never reports how many results exist, so the reliable pattern is to scope the query narrowly, take everything it returns, and use the fact that it returned less than you asked for as your end condition.
{}Ten category slugs, free of any identifier lookup. Worth calling once at build time rather than hard-coding the list.
{"category": "programming-development", "limit": 80}Returned 61 rows — asking for 80 and receiving 61 is how you know you have the whole scope, since there is no count to check against.
A complete category snapshot, with the budget shape, the skills and the number of quotes already received on each job.
curl -X POST https://api.reefapi.com/guru/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"limit":8}'{
"ok": true,
"data": { … },
"meta": {
"api": "guru",
"endpoint": "search",
"mode": "live",
"latency_ms": …,
"record_count": …
},
"error": null
}What it will and will not tell you about the size of the board
Measured on 2026-08-28 across a keyword search, a category browse, a deep offset and a project detail. Two of these lines go against us.
No login is involved. The engine's meta reports pii_redacted true and client_country came back null on the rows we read — you get the job and its terms, not the buyer.
Against us. total_count was null on every call we made — keyword, category, deep offset, all of them. There is no result count anywhere in the response, so you cannot show a user how many jobs exist and you cannot compute progress through a crawl. The workable substitute is asking for more than you expect: one skill returned 15 rows against a limit of 80, and one category returned 61 against the same limit, which is a reliable end signal.
The meta returns search_mode, resolved_skill and server_side. A keyword that maps onto Guru's own taxonomy comes back as canonical_skill with the resolved slug and server_side true — meaning the source filtered, not us. A category browse comes back as browse with server_side false. So you always know whether you are reading a real server-side filter or a local one, which is exactly the distinction that silently ruins keyword coverage elsewhere.
offset 500 on a skill that only has fifteen live jobs returned zero rows with stop_reason complete. There is no artificial cap being hit here — the board scope is simply small, and the engine says complete rather than pretending there is more.
budget comes back as an object with type, min, max and currency, and for hourly jobs a label written the way Guru writes it — hourly, a rate band, the weekly hours and the expected engagement length in one string. Fixed jobs carry the same object with a fixed type. The rate and the commitment arrive together.
Against us, and counter-intuitive. On the job we opened, search reported 49 quotes received, a category and a status; the detail for the same id returned bids_count, category and status all null. What detail does add is valid_through and employment_type. Read the grid for competition, the detail for the deadline — not the other way round.
posted_at is a Unix timestamp and posted_relative is the board's own line — "Posted on Aug 23, 2026 · 49 Quotes Received" — which carries the date and the competition in one string. There is no freshness filter parameter, so recency is something you sort on rather than ask for.
project takes the full job URL or the slug/id path that search returns on every row. A bare numeric id is not enough on its own. Since job ids on a bid board expire, resolve from a fresh search row rather than from a stored id.
The job and its terms: title, description, budget, skills, category, quote count, urgency and NDA flags, and the board link — with the client's identity stripped by the engine before you see it. A public provider-profile action also exists, returning what Guru itself shows on a provider page; we do not build this page around it and we do not sell profiles as a product. Nothing here carries a private contact channel.
What people build with Guru.com
The jobs this data is most often used for.
endpoints
credit per call
Freelance tools call search to surface new Guru projects matching a user's skills.
Market researchers use categories to size demand and budgets for a service.
Lead-gen products use project and user to find clients posting relevant work.
What Guru.com data costs
The cheapest call here is 1 credit, so $15/mo (Pro) buys 10,000 of them — $1.50 per 1,000 credits. Credits roll over and never expire, and failed or blocked calls are not charged.
Full pricing →- 1,000 free credits on signup, no card
- One key, all 185 APIs, one credit pool
- Failed and blocked calls are never charged
- Credits roll over and never expire
Call it in two lines
Sign up, get 1,000 credits and one key that works on every engine. Then this is the whole protocol.
curl -X POST https://api.reefapi.com/guru/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"limit":8}'import requests
r = requests.post(
"https://api.reefapi.com/guru/v1/search",
headers={"x-api-key": REEF_KEY},
json={
"limit": 8
},
)
print(r.json()["data"])Have a question? We got answers.
The questions people actually ask before wiring up Guru.com.
Get a free key →What is the Guru.com API?▾
Guru.com API is a ReefAPI endpoint group for guru.com It returns live JSON through POST requests under /guru/v1.
Is the Guru.com API free to try?▾
Yes. ReefAPI starts with 1,000 free credits, no card required. Guru.com calls use the same shared credit balance as every other ReefAPI engine.
Do I need a Guru.com login or account?▾
No login to Guru.com is needed for the API response. You call ReefAPI with your x-api-key header, and the playground can run live examples before you create a production key.
How fresh is the Guru.com data?▾
The page example is captured from a live search call, and production requests fetch live data through ReefAPI rather than a static sample.
How many credits does the Guru.com API use?▾
Guru.com actions currently cost 1 credit per successful call. Failed or blocked calls are free, and all APIs draw from one credit pool.
Can I call Guru.com from an AI assistant or MCP client?▾
Yes. Connect ReefAPI once through MCP and your assistant can call guru actions with the same key, credit pool and JSON envelope used by normal REST requests.
Is the Guru.com API a Guru.com scraper?▾
It is the managed alternative to a DIY Guru.com scraper. Instead of building and maintaining your own scraper — proxies, headless browsers, captcha and constant breakage — you call one ReefAPI endpoint and get the same guru.com back as clean JSON.
Why does my Guru.com scraper keep getting blocked?▾
Most Guru.com scrapers break on anti-bot defenses, rate limits and IP bans that need rotating residential proxies and browser fingerprinting to clear. ReefAPI handles all of that for you — no proxies, no captchas, no maintenance — and returns live JSON. Blocked or failed calls are free.
15 Jobs & Hiring APIs on the same key
One key, one credit pool, one response envelope. If you are pulling Guru.com, you are one call away from the rest of the category — no second contract, no second integration.
Need something this API does not do?
Name the endpoint, the field, or a source we do not carry yet. We ship new APIs every week and you would be first to get the key. Real people read every message and reply the same day.
Try it on your own data before you pay anything
The call above is the real endpoint, not a recording. A free key gives you 1,000 credits, the other 184 APIs, and the same envelope everywhere.
Endpoints, parameters and credit costs on this page are read from the live catalog and cannot drift from what the API accepts. Field notes were captured on 2026-08-28.