{"id":51561756,"url":"https://github.com/jamiew/bluesky-search","last_synced_at":"2026-07-10T11:01:46.069Z","repository":{"id":367323582,"uuid":"1192191121","full_name":"jamiew/bluesky-search","owner":"jamiew","description":"Simple API for searching Bluesky posts via the AT Protocol","archived":false,"fork":false,"pushed_at":"2026-03-26T01:20:55.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-25T14:24:27.004Z","etag":null,"topics":["atproto","bluesky","bun","hono","search"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jamiew.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-26T01:20:44.000Z","updated_at":"2026-03-26T01:25:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jamiew/bluesky-search","commit_stats":null,"previous_names":["jamiew/bluesky-search"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jamiew/bluesky-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamiew%2Fbluesky-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamiew%2Fbluesky-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamiew%2Fbluesky-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamiew%2Fbluesky-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamiew","download_url":"https://codeload.github.com/jamiew/bluesky-search/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamiew%2Fbluesky-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35329609,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-10T02:00:06.465Z","response_time":60,"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":["atproto","bluesky","bun","hono","search"],"created_at":"2026-07-10T11:01:41.855Z","updated_at":"2026-07-10T11:01:46.057Z","avatar_url":"https://github.com/jamiew.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bluesky-search\n\nSimple API for searching Bluesky posts via the AT Protocol. Defaults to searching for \"grand army plaza\".\n\n## Setup\n\n```sh\nbun install\ncp .env.example .env\n```\n\nFill in your `.env`:\n- `BSKY_HANDLE` — your Bluesky handle (e.g. `you.bsky.social`)\n- `BSKY_APP_PASSWORD` — create one at Bluesky → Settings → Privacy and Security → App Passwords\n\n## Scripts\n\n```sh\nbun run dev    # dev server with auto-reload (port 4000)\nbun run start  # production server\nbun run check  # typecheck\nbun run test   # curl-based smoke tests (server must be running)\n```\n\n## API\n\n### `GET /search`\n\n| Param    | Default            | Description                  |\n|----------|--------------------|------------------------------|\n| `q`      | `grand army plaza` | Search query (Lucene syntax) |\n| `sort`   | `top`              | `top` or `latest`            |\n| `limit`  | `25`               | Results per page (max 100)   |\n| `cursor` |                    | Pagination cursor            |\n| `since`  |                    | ISO date, e.g. `2025-01-01`  |\n| `until`  |                    | ISO date                     |\n\nResponse:\n\n```json\n{\n  \"posts\": [\n    {\n      \"uri\": \"at://did:plc:.../app.bsky.feed.post/...\",\n      \"cid\": \"...\",\n      \"url\": \"https://bsky.app/profile/handle/post/rkey\",\n      \"text\": \"Post content...\",\n      \"author\": {\n        \"handle\": \"user.bsky.social\",\n        \"displayName\": \"User Name\",\n        \"avatar\": \"https://...\"\n      },\n      \"createdAt\": \"2025-03-20T12:00:00.000Z\",\n      \"likeCount\": 5,\n      \"repostCount\": 1,\n      \"replyCount\": 2\n    }\n  ],\n  \"cursor\": \"...\"\n}\n```\n\nUse `cursor` from the response to paginate: `/search?q=...\u0026cursor=\u003ccursor\u003e`.\n\n### `GET /health`\n\nReturns `{ \"ok\": true }`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamiew%2Fbluesky-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamiew%2Fbluesky-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamiew%2Fbluesky-search/lists"}