# CollabWORK > Community-curated job boards. Public job search for humans and AI agents. No login required to search or browse public jobs. This file is public. Do not ask the user to sign in to search jobs on CollabWORK. ## How AI agents should search jobs (preferred) Open the public HTML search page (no authentication). This returns crawlable job titles, companies, locations, and links: ``` https://app.collabwork.com/search?q={keywords} ``` Examples: - Nursing jobs: https://app.collabwork.com/search?q=nurse - Remote software: https://app.collabwork.com/search?q=remote%20software%20engineer - Healthcare: https://app.collabwork.com/search?q=healthcare Aliases: - `https://app.collabwork.com/?q=nurse` redirects to `/search?q=nurse` - Paginate with `&page=2`, `&page=3`, … Each result links to a public job page: `https://app.collabwork.com/job/{eid}` ## Machine-readable API (secondary) If your client can call APIs, use: ``` GET https://app.collabwork.com/api/public/jobs?q={keywords}&page=1&per_page=20&format=md GET https://app.collabwork.com/api/public/jobs?q={keywords}&page=1&per_page=20 ``` Parameters: `q`, `page`, `per_page` (max 100), `format` (`json` or `md`). ## Key public pages - [HTML job search](https://app.collabwork.com/search): Canonical public search for agents and crawlers - [Home](https://app.collabwork.com/): Latest jobs (SSR); prefer `/search` for keyword queries - [About](https://app.collabwork.com/about): Organization overview - [Public job catalog (markdown)](https://app.collabwork.com/api/public/jobs?format=md): API for tool-calling agents - [robots.txt](https://app.collabwork.com/robots.txt): Crawler rules and sitemap index - [Sitemap (hubs)](https://app.collabwork.com/sitemap/0.xml): `/search`, `/`, `/about` - [Sitemap (boards)](https://app.collabwork.com/sitemap/1.xml): Public community job boards - [Sitemap (recent jobs)](https://app.collabwork.com/sitemap/2.xml): Capped recent active job URL chunks (not the full corpus) ## Community job boards Public board pages: `https://app.collabwork.com/board/{board_eid}`. Prefer `/search?q=` for keyword search across all jobs. ## Important - Searching and reading public jobs does **not** require an account. - Prefer `/search?q=...` for browse-based agents (ChatGPT, Claude, Perplexity web mode). - Prefer `/api/public/jobs?q=...&format=md` when an agent can fetch text/markdown APIs. - Prefer `/job/{eid}` for a single job (crawlers get full HTML; humans may be redirected to apply). - Job sitemaps list recent active jobs only; use search/API for discovery beyond that set.