{"id":16701827,"url":"https://github.com/michaelnisi/fanboy-http","last_synced_at":"2026-05-02T06:42:51.869Z","repository":{"id":19239523,"uuid":"22474517","full_name":"michaelnisi/fanboy-http","owner":"michaelnisi","description":"Search podcasts","archived":false,"fork":false,"pushed_at":"2022-07-06T23:22:47.000Z","size":335,"stargazers_count":2,"open_issues_count":9,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-05T04:17:28.239Z","etag":null,"topics":["http","itunes","leveldb","nodejs","podcasts","search","server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/michaelnisi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-31T15:37:46.000Z","updated_at":"2022-01-08T15:52:28.000Z","dependencies_parsed_at":"2022-08-01T03:38:01.914Z","dependency_job_id":null,"html_url":"https://github.com/michaelnisi/fanboy-http","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/michaelnisi/fanboy-http","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelnisi%2Ffanboy-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelnisi%2Ffanboy-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelnisi%2Ffanboy-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelnisi%2Ffanboy-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michaelnisi","download_url":"https://codeload.github.com/michaelnisi/fanboy-http/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michaelnisi%2Ffanboy-http/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32525896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["http","itunes","leveldb","nodejs","podcasts","search","server"],"created_at":"2024-10-12T18:45:51.377Z","updated_at":"2026-05-02T06:42:51.852Z","avatar_url":"https://github.com/michaelnisi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fanboy-http - search iTunes for podcast feeds\n\n**fanboy-http** is an HTTP/1.1 API for cached searching and looking up podcast feeds in the iTunes store. It proxies podcast searching for [Podest](https://itunes.apple.com/us/app/podest/id794983364?mt=8).\n\n## Types\n\n### feed()\n\nThe search and lookup results returned by the iTunes store search API get reduced to this custom tailored feed object.\n\n- `author` `String()` The author of the feed.\n- `feed` `String()` The URL of the feed.\n- `guid` `Number()` The iTunes store guid of the item.\n- `img100` `String()` The URL of a scaled image representing the feed.\n- `img30` `String()` The URL of a scaled image representing the feed.\n- `img60` `String()` The URL of a scaled image representing the feed.\n- `img600` `String()` The URL of a scaled image representing the feed.\n- `title` `String()` The title of feed.\n- `updated` `Number()` The date when the feed was last updated by iTunes.\n- `ts` `Number()` Timestamp of when this item was cached.\n\n## API\n\n### Responses\n\nHere, a representative response header of this API:\n\n```\nHTTP/1.1 200 OK\nCache-Control: max-age=86400\nContent-Type: application/json; charset=utf-8\nFanboy-Version: 4.0.0\nContent-Encoding: gzip\nContent-Length: 5332\nAccept-Ranges: bytes\nDate: Thu, 21 Feb 2019 10:35:08 GMT\nConnection: keep-alive\n```\n\nWhere 'Latency' is only provided, if the log level is below `WARN` (40)—debugging mode.\n\n### Cached queries against the store API\n\n#### Searching for feed feeds\n\n```\nGET /search\n```\n\n### Parameters\n\n- `q` `String()` The search query.\n\nThe response is an `Array()` matching `feed()` objects or an empty `Array()` if no matches were found.\n\n#### Looking up guids\n\n```\nGET /lookup/:query\n```\n\n- `:query` An url-encoded list of GUIDs separated by commas.\n\nLookup has the same response as `GET /search`.\n\n### Additional endpoints\n\n#### Getting search term suggestions\n\n```\nGET /suggest\n```\n\n### Parameters\n\n- `q` `String()` Here the query is an alphanumeric search term fragment.\n- `max` `Number()` The maximum number of suggestions to get.\n\nThis query responds with an `Array()` of search terms—of type `String()`—already in the cache and matching the query.\n\n#### The version of the API\n\n`GET /`\n\nResponse\n\n- `name` The name of the server\n- `version` The version of the API (the package version)\n\n## Installation\n\nAfter installing our dependencies with:\n\n```\n$ npm i\n```\n\nWe can run the server locally on port 8383 with:\n\n```\n$ npm start\n```\n\n\n## License\n\n[MIT License](https://github.com/michaelnisi/fanboy-http/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelnisi%2Ffanboy-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichaelnisi%2Ffanboy-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichaelnisi%2Ffanboy-http/lists"}