Discover/merc API
live

merc APImerc.guru

Retrieve all project listings from merc.guru via a single API call. Get project names, descriptions, URLs, and source code links in structured JSON.

Endpoint health
verified 7d ago
list_projects
1/1 passing latest checkself-healing
Endpoints
1
Updated
21d ago

What is the merc API?

The merc.guru API exposes 1 endpoint that returns the complete set of projects listed on merc.guru, each with 4 structured fields: name, URL, description, and source code link. The list_projects endpoint aggregates both index-level and per-project detail into a single response, so callers get full project records without multiple round trips.

This call costs3 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/cadc5e2c-fd22-4281-bdfd-a00075a3d3b4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cadc5e2c-fd22-4281-bdfd-a00075a3d3b4/list_projects' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace merc-guru-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: merc.guru SDK — list personal projects with typed access."""
from parse_apis.merc_guru_api import MercGuru, ParseError

client = MercGuru()

# Fetch all projects and print their name, description snippet, and source link.
try:
    for project in client.projects.list(limit=10):
        print(project.name, "-", project.description[:60])
        print("  source:", project.source_link)
except ParseError as e:
    # Upstream markup changed or extraction failed
    print("parse error:", e.code, e)

print("exercised: projects.list")
All endpoints · 1 totalmissing one? ·

Lists all projects from merc.guru with their descriptions and source code links. Makes one request for the project index and one per project for detail. Returns all projects in a single call.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "projects": "array of project objects with name, url, description, and source_link"
  },
  "sample": {
    "data": {
      "projects": [
        {
          "url": "https://merc.guru/projects/bs",
          "name": "bs",
          "description": "a shell script for controlling the sing-box service on my Alpine installation.",
          "source_link": "https://srcdump.net/merc/bs"
        },
        {
          "url": "https://merc.guru/projects/myrc",
          "name": "myrc",
          "description": "just a shell-based static site generator.",
          "source_link": "https://srcdump.net/merc/myrc"
        },
        {
          "url": "https://merc.guru/projects/rudis",
          "name": "rudis",
          "description": "a pretty simple and minimal (if we don't count the miniaudio lib) music player for the cli, written in C",
          "source_link": "https://srcdump.net/merc/rudis"
        }
      ]
    },
    "status": "success"
  }
}

About the merc API

What the API Returns

The list_projects endpoint returns an array of project objects sourced from merc.guru. Each object contains a name (the project title), a url (the project's page on merc.guru), a description (a summary of the project's purpose), and a source_link (a direct link to the project's source code repository or related resource).

Endpoint Behavior

list_projects takes no input parameters. A single call fetches every project currently listed on the site, combining index and detail data into one consolidated response. There is no filtering, pagination, or search — the full project list is returned on every call.

Data Shape

The response is a JSON object with a projects key containing an array. Each element is a flat object: { "name": string, "url": string, "description": string, "source_link": string }. The source_link field typically points to a version control host such as GitHub, though this depends on what the project author has listed.

Reliability & maintenanceVerified

The merc API is a managed, monitored endpoint for merc.guru — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when merc.guru changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official merc.guru API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Snapshot merc.guru project listings periodically to track newly added projects by comparing name and url fields over time.
  • Build a personal dashboard that displays merc.guru projects alongside source_link references for quick access to code repositories.
  • Aggregate project descriptions into a searchable index to find projects matching specific keywords without visiting each page manually.
  • Pull source_link values in bulk to audit or archive linked repositories programmatically.
  • Embed a live-updated merc.guru project feed into a portfolio site or developer tooling page.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does merc.guru have an official developer API?+
No. merc.guru is a personal website and does not publish an official developer API or documented data feed.
What exactly does `list_projects` return for each project?+
Each project object includes four fields: name (the project title), url (its page on merc.guru), description (a short summary), and source_link (a link to the project's source code). No additional metadata such as tags, dates, or contributor counts is currently included in the response.
Can I filter or search projects by keyword or category?+
Not currently. list_projects returns all projects in one flat array with no filtering or search parameters. You can apply your own filtering logic client-side on the returned name and description fields. You can also fork this API on Parse and revise it to add a filter parameter.
Is per-project detail — such as screenshots, update dates, or contributor info — available?+
Not currently. The API covers project name, URL, description, and source code link. You can fork this API on Parse and revise it to add the missing endpoint if deeper per-project fields are visible on the site.
How fresh is the data returned by `list_projects`?+
The endpoint reflects the current state of merc.guru's project listings at the time of the call. There is no caching layer described in the spec, so repeated calls should return the latest published projects. There is no changelog or diff endpoint to detect additions since a previous call.
Page content last updated . Spec covers 1 endpoint from merc.guru.
Related APIs in Developer ToolsSee all →
karlancer.com API
Search and discover open freelance projects on Karlancer with detailed information like titles, descriptions, required skills, budgets, proposal counts, and urgency levels. Find the right opportunities that match your expertise and stay updated on project status and availability.
parscoders.com API
Search for freelance projects on ParsCoders.com's Persian marketplace and view detailed information like project titles, descriptions, required skills, budgets, posting dates, and proposal counts. Find the right opportunities that match your expertise and pricing expectations.
kampuskago.ng API
kampuskago.ng API
mostaql.com API
Browse projects and freelancers on Mostaql.com's Arabic marketplace, view detailed project information and freelancer profiles, and explore available project categories. Find the right talent or opportunities that match your skills and requirements.
ekimmigration.com API
Access immigration project listings from EK Immigration with details including project names, countries, advantages, costs, and processing times to compare and evaluate your relocation options. Find comprehensive information about available immigration programs to make informed decisions about your migration plans.
projects.worldbank.org API
Search World Bank projects and procurement opportunities across all sectors and regions to find funding information and active tenders. Retrieve detailed project information, funding breakdowns, and procurement notices.
procore.com API
Search and discover construction projects, bids, and company profiles on the Procore Construction Network. Retrieve project details including bid status, project scope, trades required, funding type, and solicitor contact information, as well as full company profiles for subcontractors and general contractors.
curseforge.com API
Search and explore CurseForge game mods and projects, retrieve detailed information about specific mods, access file listings and versions, and track dependencies between projects. Find mods across different games and categories to discover exactly what you need for your gaming setup.