fmhy.net APIfmhy.net ↗
Access the full FMHY wiki: search 10,000+ resource entries by keyword, category, or star rating. Returns URLs, descriptions, sections, and metadata.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/9eb3df86-f41d-4ba2-a0e9-04b73a3e9dee/get_all_entries' \ -H 'X-API-Key: $PARSE_API_KEY'
Extract every URL entry from the entire FMHY wiki with full metadata. Fetches and parses all wiki pages (main categories and tools pages). Returns a large dataset; response may take several seconds.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of entry objects, each containing site_name, url, description, is_starred, page_slug, page_name, section, subsection, and alternate_links"
},
"sample": {
"data": [
{
"url": "https://github.com/gorhill/uBlock",
"section": "Adblocking",
"page_name": "Adblocking / Privacy",
"page_slug": "privacy",
"site_name": "uBlock Origin",
"is_starred": true,
"subsection": "",
"description": "Adblockers",
"alternate_links": [
{
"url": "https://github.com/uBlockOrigin/uBOL-home",
"name": "uBO Lite"
}
]
}
],
"status": "success"
}
}About the fmhy.net API
The FMHY API exposes 6 endpoints for browsing and searching the freemediaheckyeah wiki, a community-curated directory of free media resources. Endpoints like get_all_entries return every URL entry across all wiki pages with 8 structured fields per record — including site_name, url, description, is_starred, section, and subsection — while search_entries lets you query that dataset by keyword across name, description, category, and section fields.
What the API Returns
Every entry object includes site_name, url, description, is_starred, page_slug, page_name, section, subsection, and alternate_links. The is_starred boolean identifies entries the FMHY community has marked as top picks. page_slug and page_name indicate which wiki category the entry belongs to (e.g. video, ai, audio, gaming, privacy), while section and subsection reflect the heading structure within that page.
Browsing by Category
get_wiki_categories returns all top-level category objects, each with a slug and name. Pass any slug to get_page_entries to retrieve only the entries for that category. A dedicated get_movie_sites endpoint returns video-page entries pre-organized into a hierarchy: an array of section objects, each containing a section_name and a subsections map pointing to arrays of entry objects — useful when you want movie and TV streaming resources already grouped by type.
Search and Starred Entries
search_entries accepts a query string and performs a case-insensitive match across site_name, description, page_name, and section fields in a single call, covering all wiki and tools pages. get_starred_entries returns only the subset of entries where is_starred is true, giving you the community's recommended picks without any filtering on your end. get_all_entries fetches the full dataset across every page in one response; the documentation notes this may take several seconds due to dataset size.
- Build a filtered directory of free streaming sites by querying
get_movie_sitesand grouping results bysection_name - Surface community-recommended tools by pulling
get_starred_entriesand displaying entries whereis_starredis true - Implement a search feature across all FMHY resources using
search_entrieswith user-supplied keywords - Generate a category index by calling
get_wiki_categoriesand listing all availableslugandnamepairs - Audit a specific wiki category (e.g.
privacyorai) by fetching its entries viaget_page_entriesand inspectingsectionandsubsectiongroupings - Track which resources carry the starred designation across a given page by filtering
get_page_entriesresults onis_starred
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does FMHY have an official developer API?+
What does the `is_starred` field mean and which endpoints expose it?+
get_all_entries, get_page_entries, search_entries, and get_starred_entries includes the is_starred boolean. It reflects whether FMHY editors have marked that entry as a top pick within its category. get_starred_entries pre-filters to only those records, so is_starred is always true in that response.How fresh is the data, and does the API update automatically?+
Does the API support pagination for large result sets?+
get_all_entries returns the entire dataset in a single response, which the documentation notes may take several seconds. If you need paginated access over a subset of results, you can fork this API on Parse and revise it to add limit and offset parameters.Can I retrieve entries filtered by both category and a keyword at the same time?+
get_page_entries filters by slug and search_entries filters by keyword, but there is no combined endpoint that accepts both parameters simultaneously. You can fork this API on Parse and revise it to add a combined category-plus-keyword filter endpoint.