# Worklittle Docs > Documentation for Worklittle REST API, MCP server, webhooks, and employer ATS. Site: https://docs.worklittle.com Agent manifest: https://docs.worklittle.com/docs-agent-manifest.json Sitemap: https://docs.worklittle.com/sitemap.xml ## Docs - [Overview](https://docs.worklittle.com/use-cases/overview): Pick the Worklittle integration pattern that matches what you are shipping: job discovery, apply automation, an embedded careers board, ATS sync, sourcing, or an agent that combines several of them. Every pattern on this page runs on the same base URL and the same sk-wl-api01 key. The differences are which scopes you enable, which endpoints you call, and how much of the flow a model drives. Worklittle is job discovery, auto-apply, swipe-to-apply style card UIs, and commute search on an interactive job map, over one API. **Jobs** is the market-wide index plus candidate-facing apply and document tools. **Business** is your own hiring workspace: postings, ATS pipeline, employees, HR docs, and webhooks. Most integrations sit squarely in one of them, and the interesting ones bridge both. - [Jobs MCP](https://docs.worklittle.com/jobs/mcp): Install Worklittle MCP for job search, apply, and document tools in Cursor, Claude, VS Code, and other clients. - [Business MCP](https://docs.worklittle.com/business/mcp): Install Worklittle MCP for posting, ATS candidates, organization, surveys, documents, attendance, and webhooks in Cursor, Claude, VS Code, and other clients. - [Job search assistant](https://docs.worklittle.com/use-cases/job-search-assistant): Build a search UI or conversational assistant on Worklittle's market-wide index: title search, commute search, filter, paginate with cursors, enrich with details and keywords, and stay inside monthly search quotas. Job search is free within monthly quotas. Still keep limit and caching intentional so agents do not burn quota. - [Interactive job map](https://docs.worklittle.com/use-cases/interactive-job-map): Commute search: plot employers with open roles on an interactive job map using geocoded coordinates, then drill into jobs and auto-apply where eligible. Worklittle geocodes every job. GET /jobs/map returns employers with coordinates and open-job counts so you can build commute search, not string match on city names. Job listings stay on GET /jobs. Auto-apply stays on Apply with AI. - [Apply with AI](https://docs.worklittle.com/use-cases/apply-with-ai): Auto-apply: Apply with AI fills and sends employer applications for you by default (resume required). Use hosted apply for Worklittle-published jobs. Auto-apply on Worklittle means the session opens the employer's own form, fills it from the candidate resume, and submits. API keys always submit. Hosted apply is a different path: it posts JSON to a Worklittle-published job. - [Resumes and cover letters](https://docs.worklittle.com/use-cases/resume-cover-letter): Generate one-page, hiring-ready resumes and cover letters as HTML, PDF, or DOCX, targeted at a specific job_id, then attach the output directly to an application. Hiring-ready output never invents an employer, a school, or a metric. When a fact is missing it is omitted. - [Embedded job board](https://docs.worklittle.com/use-cases/embedded-job-board): Ship a careers site on your own domain with the public job-board endpoints. No API key, CORS open, ETag caching, resume autofill, and JSON-LD for search engines. A company board lists only what that employer published on Worklittle. It is not a filtered view of the global index for that company slug. - [ATS automation](https://docs.worklittle.com/use-cases/ats-automation): Drive your hiring pipeline from code: list and stage candidates, write notes, schedule interviews, manage employees and offers, and sync an external HRIS with webhooks. Worklittle stays the source of truth. Anything a script or agent writes appears immediately for teammates in Worklittle Business, and anything they change is visible to your integration. - [People Search](https://docs.worklittle.com/use-cases/people-search): Public People Search is temporarily unavailable. Prefer ATS candidates for your own hiring pipeline. GET /people and related unlock routes return 410 Gone while the opt-in directory grows. - [Organization operations](https://docs.worklittle.com/use-cases/org-ops): Write surveys, HR documents, and attendance from code so the results show up in the Worklittle UI your team already uses, with no separate internal tool to maintain. The point of this pattern is not the API. It is that a script or an agent can produce something a non-technical teammate opens in the product five seconds later. - [Alerts and market data](https://docs.worklittle.com/use-cases/alerts-and-market): Answer aggregate market questions with free stats instead of paging through search results. If the question is a count, a trend, or a top-companies list, do not answer it with search pagination. GET /jobs/stats exists for exactly that and it is free. - [Agent Quickstart](https://docs.worklittle.com/use-cases/agent-quickstart): Install agent skills, create an API key, then make a first Jobs API call. Official clients: cURL, CLI, Python, and TypeScript. Coding agents should fetch https://docs.worklittle.com/agent-onboarding/SKILL.md. This page is the same onboarding for people reading in a browser. - [Overview](https://docs.worklittle.com/use-cases/agent-patterns): Architecture for putting a model in front of Worklittle: where the tool boundary belongs, which state the agent owns, and how to keep a chatty loop from becoming expensive or wrong. The hard part of an agent on this API is not tool calling. It is deciding what the model is allowed to decide. - [REST, SDK, CLI, or MCP](https://docs.worklittle.com/use-cases/rest-vs-mcp): Same account, same key, same billing, four ways in. Pick the transport by where your code runs and who is calling it, not by which one feels more modern. One sk-wl-api01 key works for api.worklittle.com and mcp.worklittle.com. Choosing a transport is an ergonomics decision, not an access decision. - [Tool chains](https://docs.worklittle.com/use-cases/tool-chains): The call sequences that actually work, in order, for job discovery, document tailoring, apply, and ATS pipeline updates. Copy these before inventing your own. Most agent failures on this API are ordering failures. The model has the right tools and calls them in the wrong sequence with the wrong inputs. - [Structured extraction](https://docs.worklittle.com/use-cases/structured-extraction): Use keywords and structured detail fields instead of raw description text. Covers why list rows are thin, what enrichment adds, and how to handle postings with no usable body. get_job_keywords exists because feeding a full job description into a document model makes the output worse, not better. - [Pagination and limits](https://docs.worklittle.com/use-cases/pagination-and-limits): Cursor pagination, the 50-result cap on job search, and why a large limit is usually a bug rather than an optimization. Job search is free within monthly quotas. A limit of 50 burns five times the quota of a limit of 10. - [Multi-turn agents](https://docs.worklittle.com/use-cases/multi-turn-agents): Keep job_id, candidate_id, and session_id in application state across turns. A model that reconstructs an identifier from memory will eventually act on the wrong record. Identifiers are the one thing a language model must never generate. Every id in a request should be traceable to an API response your code stored. - [Overview](https://docs.worklittle.com/use-cases/prompting): Model instructions for agents built on Worklittle: what belongs in a system prompt, what belongs in code, and the shared rules every Worklittle agent should carry. A prompt is a strong default and a weak guarantee. Anything that must be true should be enforced at the tool boundary, not requested in English. - [Prompting for job search](https://docs.worklittle.com/use-cases/prompting-job-search): System prompt patterns for search assistants: mapping vague user language onto real filters, controlling search frequency, and presenting results a user can act on. Most bad search agents share one root cause. They put user phrasing straight into the query string instead of translating it into filters. - [Prompting for applications](https://docs.worklittle.com/use-cases/prompting-applications): Instructions for resume generation, cover letters, and apply agents. The theme throughout is that documents are grounded in the candidate's real history and the posting's real text. A resume that invents an employer is not a formatting problem, it is a lie with the candidate's name on it. Hiring-ready generation omits unknowns by design and your prompt should reinforce that. - [Prompting ATS agents](https://docs.worklittle.com/use-cases/prompting-ats): Employer-side agents write to real candidate records. These instructions keep them calling tools instead of narrating writes they never performed, and confirming identity before changing anything. The dangerous ATS failure is not an error. It is an agent that says it moved a candidate to onsite, sounds completely convincing, and never called the tool. - [Grounding](https://docs.worklittle.com/use-cases/grounding): The rule underneath every Worklittle agent: never invent salary, company, location, or requirements. Cite the API field, and refuse cleanly when the data is not there. Job data has real consequences. A hallucinated salary changes whether someone applies, negotiates, or quits a job they already have. - [Overview](https://docs.worklittle.com/use-cases/reliability): What to get right before you put a Worklittle integration in front of users: throttling and spend, stale jobs, webhook delivery, and a QA pass that catches the failures that do not raise errors. The failures that hurt in production are the quiet ones. A 429 is obvious. An agent that confidently reports a salary nobody published is not. - [Retries and spend](https://docs.worklittle.com/use-cases/retries-and-spend): Rate limits, backoff, organization wallet PAYG and 402 handling, and how to keep an agent loop from turning search into a runaway quota burn. Retry policy and budget policy are the same policy. A retry on a metered route spends money, so blind retries are a cost bug as well as a load bug. - [Closed jobs and eligibility](https://docs.worklittle.com/use-cases/closed-jobs-and-eligibility): closed_at says the role is gone. can_apply says automation is allowed (more than 3 million open jobs today). Check both, and check them late. More than 3 million open jobs are Apply with AI eligible. Still check closed_at and can_apply late: a role can close between search and submit. - [Webhooks reliability](https://docs.worklittle.com/use-cases/webhooks-reliability): Signature verification, at-least-once delivery, idempotency keys, and the reconciliation sweep that keeps an ATS mirror correct when a delivery is missed. Assume every event can arrive twice and any event can fail to arrive. Both assumptions are cheap to design for and expensive to retrofit. - [Eval checklist](https://docs.worklittle.com/use-cases/eval-checklist): A concrete QA pass to run before shipping an agent on Worklittle. Each item is a scenario with a defined expected outcome, weighted toward failures that produce confident wrong answers rather than errors. Run these as fixtures in CI, not as a one-time manual pass. Model upgrades and prompt edits both break behavior that used to hold. - [Glossary](https://docs.worklittle.com/use-cases/glossary): Worklittle terms you will meet in these docs and in API responses, from job_id and cursor to Apply with AI, enrichment, scopes, and Jobs vs Business surfaces. - [Capability map](https://docs.worklittle.com/use-cases/capability-map): One table from product goal to the exact endpoint, MCP tool, required scope, and reference page. Start here when you know what you want to build but not what to call. Billing note that shapes most designs: job search is free within monthly quotas; the only paid meter is AI tokens on the organization wallet. - [Agent skills](https://docs.worklittle.com/skills): Install instructions that help AI agents create more accurate Worklittle integrations. Agent skills are portable instruction packs for coding agents. They are separate from the slash-command mentorship skills on worklittle.com chat. [Agent skills](https://agentskills.io/home) are instructions that agents use to build faster and more accurately. Worklittle publishes a small collection so agents apply current best practices for the Jobs API, Business ATS, MCP, billing, and docs discovery. - [Help Center](https://docs.worklittle.com/help): Try asking for support, or contact hello@worklittle.com. - [Getting started](https://docs.worklittle.com/help/getting-started): Create an account, learn the job seeker and Business apps, and take your first useful steps on Worklittle. - [Apply to jobs with AI](https://docs.worklittle.com/help/apply-with-ai): Apply for jobs with one click. Upload your resume, tap Apply, and Worklittle fills out and sends the application on more than 3 million open jobs. No form filling by hand. - [Find jobs nearby on a map](https://docs.worklittle.com/help/worklittle-maps): See nearby jobs on a map in 150+ countries. Remote and skipped roles live on Jobs and Saved. - [Browse jobs](https://docs.worklittle.com/help/finding-jobs): Browse and search openings, swipe to apply, open company pages, and try Worklittle in ChatGPT, Claude, or VS Code. - [Saved jobs](https://docs.worklittle.com/help/saved-jobs): Track saved roles through your pipeline from Saved to Offer, and review Skipped and Viewed jobs later. - [Chat and AI features](https://docs.worklittle.com/help/chat-ai): Chat, voice, attachments, limits, resumes, cover letters, headshots, whiteboards, documents, and sharing. - [Account, login, and billing](https://docs.worklittle.com/help/account): Sign in, manage your account, Instant, invoices, payment methods, free AI limits, and common billing questions. - [Profile and alerts](https://docs.worklittle.com/help/profile-alerts): Update your profile, resume, and photo, then manage job alert emails so new matching roles reach you. - [Worklittle Business](https://docs.worklittle.com/help/business-basics): Set up your organization, brand, teammates, roles, Business chat, billing, and work email. - [Hiring and ATS](https://docs.worklittle.com/help/hiring): Post jobs, manage candidates and stages, use templates, and move people through offers in Worklittle Business. - [Team and HR](https://docs.worklittle.com/help/team-hr): Manage employees, shared calendar, surveys, and documents after someone joins your organization. - [Automations](https://docs.worklittle.com/help/automations): Build hiring and HR workflows, connect plugins, and notify other tools when things change. - [API](https://docs.worklittle.com/help/api): Common questions about API keys, rate limits, billing, errors, MCP, webhooks, and when to use the apps instead. - [Prompt guides](https://docs.worklittle.com/help/prompt-guides): Copy-paste prompts that work well with Jobs search, Business tools, chat features, and agent workflows. - [Privacy and safety](https://docs.worklittle.com/help/privacy-safety): Privacy policies, data rights, AI and job reports, safety tips, retention, and how to reach privacy or support. - [Using this docs site](https://docs.worklittle.com/help/using-docs): Search Help and API docs, copy code samples, use docs chat, and find What's new when features change. - [Worklittle vs ChatGPT, Claude Code, Cursor, and Grokbot](https://docs.worklittle.com/help/apply-with-ai/worklittle-vs-chatgpt-claude-code-grokbot): Worklittle is a job search you can browse, filter, and apply from. ChatGPT, Claude Code, Cursor, and Grokbot can still help you write and think, and you can use them together. - [Worklittle vs LinkedIn, Indeed, ZipRecruiter, and AI tools](https://docs.worklittle.com/help/finding-jobs/worklittle-vs-job-search-tools): How Worklittle compares to LinkedIn, Indeed, ZipRecruiter, and many other job search tools, plus AI chat like ChatGPT, Claude, and Gemini. - [Worklittle vs autofill browser extensions](https://docs.worklittle.com/help/apply-with-ai/apply-with-ai-vs-autofill): Autofill extensions only work when you are on a computer. Worklittle Apply with AI can run on a phone, tablet, or computer, up to 200 applications at once. - [Tinder for Jobs vs other swipe to apply apps](https://docs.worklittle.com/help/finding-jobs/tinder-for-jobs-vs-other-swipe-apps): On Worklittle, swipe to apply means you can skip, save, or start Apply with AI from the same card. Other swipe apps often stop at matching or saving. Worklittle’s job deck is swipe to apply on more than 3 million open jobs. You can skip a role, save it for later, or tap Apply to start Apply with AI, which fills and sends the employer’s own application. Open the deck at [Jobs](https://worklittle.com/jobs), or read the public walkthrough at [Tinder for Jobs](https://worklittle.com/tinder-for-jobs). This page explains how that differs from swipe apps that mainly match or queue jobs. - [Search for jobs on a map](https://docs.worklittle.com/help/worklittle-maps/search-for-jobs-on-a-map): Use Worklittle Maps to search nearby jobs by commute and neighborhood, then open a role or start Apply with AI. Remote-only roles stay on the Jobs deck. Worklittle Maps is an interactive job map for commute search across more than 150 countries. You pan a neighborhood, see which employers are hiring nearby, and open a role without guessing travel time from a city name in a list. Go to [Maps](https://worklittle.com/maps). Remote-only roles stay on [Jobs](https://worklittle.com/jobs). This page explains when the map is more useful than a list or swipe deck. - [What is Worklittle?](https://docs.worklittle.com/help/getting-started/what-is-worklittle): A job search and hiring platform where Apply with AI fills out and sends applications for you. Apply for jobs with one click. Worklittle helps people find work and helps companies fill roles. On the job seeker side, **Apply with AI** fills out and sends real employer applications for you. That is apply for jobs with one click. - [worklittle.com vs worklittle.com/business](https://docs.worklittle.com/help/getting-started/consumer-vs-business): Worklittle has two apps. One is for finding work, the other is for hiring. Same company, same login, two different apps depending on which side of the hiring table you are sitting on. - [Browsing as a guest vs signing in](https://docs.worklittle.com/help/getting-started/guest-vs-signed-in): What you can do without an account, and what changes once you sign in. You can use most of worklittle.com without an account, but a guest session lives only in the browser you are using right now. - [Your first day as a job seeker](https://docs.worklittle.com/help/getting-started/first-day-job-seeker): Five steps from an empty screen to your first fully automated Apply with AI submission. Here is the fastest path from opening worklittle.com to letting Apply with AI submit real applications for you. - [Your first day as an employer](https://docs.worklittle.com/help/getting-started/first-day-employer): Get from a new account to a live job post and real candidates. Worklittle Business lives at worklittle.com/business, and this is the shortest route through your first session. - [Mobile bottom navigation](https://docs.worklittle.com/help/getting-started/mobile-bottom-nav): What the tabs at the bottom of your phone screen do. On a phone, worklittle.com puts Chat, Jobs, Maps, Saved, and You behind tabs pinned to the bottom of the screen. - [Light and dark theme](https://docs.worklittle.com/help/getting-started/theme-and-display): Worklittle matches whatever appearance your device is set to. There is no theme switch inside Worklittle because it follows your system appearance setting automatically. - [Create an account](https://docs.worklittle.com/help/account/create-account): Sign up with Google or an email address. There is no separate registration form. Worklittle does not have a signup page that is different from the login page, so creating an account and signing in are the same few taps. - [Sign in with Google](https://docs.worklittle.com/help/account/sign-in-with-google): The one-tap option, and what to do when the Google window misbehaves. Google sign-in skips the code-in-your-inbox step entirely and is the quickest way into Worklittle. - [Sign in with an email code](https://docs.worklittle.com/help/account/email-code): Get a six-digit code in your inbox and type it in. No password needed. If you would rather not use Google or set a password, Worklittle can email you a short code each time you sign in. - [Sign in with a password](https://docs.worklittle.com/help/account/password-sign-in): Set a password once so you do not have to check your email every time. A password is optional on Worklittle, but it makes signing in on a new device much quicker. - [Switch between accounts](https://docs.worklittle.com/help/account/switch-accounts): Keep up to three accounts signed in and move between them without logging out. Worklittle can hold up to three signed-in accounts at once, which is handy if you keep personal and work life separate. This switches which email you are signed in as, not which company workspace you are in. - [Manage linked emails](https://docs.worklittle.com/help/account/linked-emails): How email addresses relate to your account, your device, and your profile. Worklittle uses email in three different ways, and knowing which is which clears up most confusion. - [Work email vs personal email](https://docs.worklittle.com/help/account/work-email-vs-personal): Which address to sign in with, and where your work address belongs. Short answer: sign in with a personal address if you are job hunting, and a work address if you are hiring. - [Sign out](https://docs.worklittle.com/help/account/sign-out): How to sign out, and what stays behind on the device afterwards. Signing out ends the session on that device and leaves everything in your account untouched. - [Delete your account](https://docs.worklittle.com/help/account/delete-account): How to permanently delete your account, and the three-day window to change your mind. Deleting removes your account and everything in it, with a short grace period in case you have second thoughts. - [Trouble signing in](https://docs.worklittle.com/help/account/trouble-signing-in): Fixes for the problems that come up most often when logging in. Most sign-in trouble comes down to a missing email, an expired code, or a blocked popup, and all three are quick to sort out. - [AI usage limits](https://docs.worklittle.com/help/account/daily-ai-limits): How much free AI you get, and what to do when you need more. Browsing and saving jobs are free. Chat, Apply with AI, resumes, and similar AI help use a free monthly AI amount. When that runs out, you can add Instant or keep going with a card. - [Chat basics](https://docs.worklittle.com/help/chat-ai/chat-basics): Start conversations and get career help. Chat is your free career assistant on worklittle.com, ready to answer questions, rewrite your resume, and walk you through a job search. - [Chats and threads](https://docs.worklittle.com/help/chat-ai/chat-threads): Find, rename, pin, share, and continue past conversations. Every conversation you have is saved as its own chat, so you can come back days later and pick up exactly where you left off. - [Photos, files, and video in chat](https://docs.worklittle.com/help/chat-ai/attachments): Attach media to your messages. You can send photos, documents, and short videos to chat so it can read them and respond to what is actually in front of you. - [Voice dictation](https://docs.worklittle.com/help/chat-ai/dictation): Speak instead of type. Dictation lets you talk to chat instead of typing, which is handy on a phone, in the car park before an interview, or any time typing is slow. - [Slash skills menu](https://docs.worklittle.com/help/chat-ai/slash-skills): Shortcuts for common AI actions. Typing a forward slash in the message box opens a menu of ready-made skills, so you can trigger a common task without writing out a long request. - [Memories and favorites](https://docs.worklittle.com/help/chat-ai/memories): What Worklittle remembers about you. Memories are the details Worklittle keeps between conversations, like the roles you want and the city you are searching in, so you stop repeating yourself. - [Create or edit a resume in chat](https://docs.worklittle.com/help/chat-ai/resumes-from-chat): Build application materials with AI. Chat can build a complete resume from a conversation, or take the resume you already have and sharpen it for a specific job. - [Cover letters from chat](https://docs.worklittle.com/help/chat-ai/cover-letters-from-chat): Draft tailored cover letters. Chat writes cover letters that reference the actual posting, so each application reads like it was written for that employer rather than copied from a template. - [AI headshots](https://docs.worklittle.com/help/chat-ai/headshots): Create a professional photo for applications. AI headshots turn an ordinary photo of you into a clean, professional-looking portrait you can use on applications and profiles. - [Whiteboards](https://docs.worklittle.com/help/chat-ai/whiteboards): Draw diagrams and brainstorm visually. A whiteboard is a blank canvas inside chat where you can sketch, map out ideas, and think through something visually instead of in paragraphs. - [Documents in chat](https://docs.worklittle.com/help/chat-ai/docs-in-chat): Create and edit docs from conversation. Documents give your resume, cover letter, or notes a proper editable page inside Worklittle, so you can format, download, and share them. - [Report a chat](https://docs.worklittle.com/help/chat-ai/report-chat): Flag something that feels wrong. If a response is harmful, wrong in a way that matters, or just plain strange, you can report a concern so the team can look into it. You can do this while signed out. - [Tips for better answers](https://docs.worklittle.com/help/chat-ai/chat-tips): How to ask so chat helps faster. A few small habits make a big difference in how useful chat is, and most of them come down to giving it your real situation instead of a generic question. - [Swipe to apply](https://docs.worklittle.com/help/finding-jobs/jobs-deck): Find roles one card at a time, then hand them to Apply with AI to submit for you. The Jobs tab shows one role at a time so you can move through openings quickly, pass on what does not fit, and start an application without leaving the card. The public walkthrough is [Tinder for Jobs](https://worklittle.com/tinder-for-jobs). - [Tinder for Jobs](https://docs.worklittle.com/help/finding-jobs/tinder-for-jobs): Find one job at a time, then Apply with AI. Tinder for Jobs is how you find jobs on Worklittle. You see one job at a time, skip what does not fit, save what you like, and tap Apply so Apply with AI does the application from your resume. - [Job detail pages](https://docs.worklittle.com/help/finding-jobs/job-detail): Read the full posting. The job detail page is the full picture of a role: the complete description, the pay if it is listed, the location, and the buttons to save or apply. On phone and computer, the posting you have open plus the next few and the one before stay on this device so moving through the deck is instant. - [Quick actions on jobs](https://docs.worklittle.com/help/finding-jobs/quick-actions): Save, share, find similar roles, or open the original listing without opening the full job page. Right-click or press and hold any job to get a short menu. You can act on the role without tapping into the full posting. - [Heart and save a job](https://docs.worklittle.com/help/finding-jobs/heart-save): Keep roles you like. The heart button saves a job to your Saved list so you can come back to it, compare it with others, and track it through to an offer. - [Skip vs Apply](https://docs.worklittle.com/help/finding-jobs/skip-and-apply): What each button on a job card does. Skip and Apply are the two buttons on every job card, and they do quite different things. - [Worklittle in ChatGPT, Claude, and VS Code](https://docs.worklittle.com/help/finding-jobs/jobs-app): Swipe the same Jobs you use on worklittle.com, right in chat or VS Code. Ask ChatGPT, Claude, or VS Code to find jobs and Worklittle can open inside the chat. Same cards, same Maps, same Saved list as [worklittle.com](https://worklittle.com). Tap Apply to run Apply with AI on more than 3 million open jobs. You can also connect MCP to your own applications. - [Company pages](https://docs.worklittle.com/help/finding-jobs/company-pages): See who an employer is and every role they have open. A company page gathers what we know about an employer and lists all of their current openings, so you can judge the company rather than just the one posting you landed on. The public URL (for example [worklittle.com/company/stripe](https://worklittle.com/company/stripe)) is what search engines index. - [Search jobs, companies, and chats](https://docs.worklittle.com/help/finding-jobs/global-search): Find things quickly. Search looks across jobs, companies, and your own conversations at once, so you can jump straight to whatever you had in mind. - [Similar jobs and suggestions](https://docs.worklittle.com/help/finding-jobs/similar-jobs): Discover related roles. When you open a job, Worklittle can show a few related openings at the bottom of that job page. - [Saving jobs as a guest](https://docs.worklittle.com/help/finding-jobs/guest-saves): Log in to track your jobs. See jobs you viewed, saved, and applied for in one place. You can browse jobs without an account. Saving them, and opening your Saved board, needs you to sign in so viewed, saved, and applied jobs live on your account at [worklittle.com/saved](https://worklittle.com/saved). - [High demand and busy moments](https://docs.worklittle.com/help/finding-jobs/high-demand): What to do when Apply is waiting. At busy times you may see Waiting or a short retry message. Your saved jobs and chats are fine. - [When a job is closed](https://docs.worklittle.com/help/finding-jobs/closed-jobs): Why a role disappears. Postings come down when the employer stops hiring for them, so a job you saved may show as closed the next time you look. - [Saved jobs overview](https://docs.worklittle.com/help/saved-jobs/overview): Your hiring pipeline in one place. Saved jobs is every role you are interested in, in one place. On a computer it opens as a list. You can switch to Grid when you want the column board. - [Pipeline stages explained](https://docs.worklittle.com/help/saved-jobs/stages): Saved through Offer, plus Skipped and Viewed when you have passed on or looked at roles. Each column on your Saved board is a stage, representing how far along you are with that particular role. - [Move jobs between stages](https://docs.worklittle.com/help/saved-jobs/move-jobs): Drag or pick a stage. Moving a job to a new stage takes a second, either by dragging the card or picking a stage from its menu. - [Share your Saved board](https://docs.worklittle.com/help/saved-jobs/share-pipeline): Send a link to someone you trust. You can share a view of your Saved board with a mentor, career counsellor, or family member so they can see your search without needing your account. - [Saved jobs on mobile](https://docs.worklittle.com/help/saved-jobs/mobile-saved): Use the list on your phone. On a phone your Saved board becomes a scrollable list, so you can review and update your search from anywhere without pinching around a wide board. - [Reorder columns](https://docs.worklittle.com/help/saved-jobs/column-order): Customize your board layout. You can rearrange the columns on your Saved board so the stages you check most often sit where you want them. - [Skipped jobs](https://docs.worklittle.com/help/saved-jobs/skipped-jobs): Find roles you passed on. Roles you skip are not deleted. They move to the **Skipped** column on your Saved board, so you can look back if you change your mind or skipped one by accident. - [Share your job search history](https://docs.worklittle.com/help/saved-jobs/download-history): Send your board to someone, and read it yourself. Your Saved board is the record of your whole search. You cannot download it as a file, but you can send someone a link to it and you can read a lot from it yourself. - [What is Apply with AI?](https://docs.worklittle.com/help/apply-with-ai/what-is-apply-with-ai): Apply for jobs with one click. Upload your resume, tap Apply, and Worklittle fills out and sends the application for you. Apply for jobs with one click. Upload your resume once. Tap Apply. Worklittle opens the company’s real application in a cloud browser in chat, fills it in, and sends it for you. You never have to answer questions or click Submit. - [Which jobs support Apply with AI](https://docs.worklittle.com/help/apply-with-ai/eligibility): Apply with AI works on more than 3 million open jobs. Here is how to spot them. Apply with AI works on **more than 3 million** open jobs on Worklittle. You do not need to guess which boards qualify. We mark them for you. - [Resume required before applying](https://docs.worklittle.com/help/apply-with-ai/resume-gate): Upload a resume before Apply or Create resume. Apply with AI and Create resume need a resume on file first, so Worklittle can use your real experience. - [Start an Apply with AI session](https://docs.worklittle.com/help/apply-with-ai/start-apply): Launch from a job card or detail. Sign in, open a job, and tap Apply. Worklittle fills and sends the form. AI use counts toward your free monthly AI, or Instant if you have it. - [Watching the browser panel](https://docs.worklittle.com/help/apply-with-ai/watching-browser): A cloud browser in chat shows every step. You can watch anytime and take control anytime. Apply with AI shows a cloud browser in chat. That is a live window of the real company application. You can always see what it is doing as it does it, and you can take control anytime. - [Do I have to answer questions?](https://docs.worklittle.com/help/apply-with-ai/answer-questions): No. Upload your resume and tap Apply. Looking things over is only if you turn Always submit off. No. You never have to answer anything. Upload your resume, tap Apply, and Worklittle fills the form and sends it. Looking it over first is only if you turn one button off. - [Retries and high demand](https://docs.worklittle.com/help/apply-with-ai/retries): What to do if Apply is waiting. Sometimes Apply shows Waiting. Leave it open and it starts soon. - [Finish an incomplete apply](https://docs.worklittle.com/help/apply-with-ai/finish-incomplete): Pick up where you left off. If you stopped, closed the tab, or lost signal, the application is still waiting for you. - [Apply with AI troubleshooting](https://docs.worklittle.com/help/apply-with-ai/troubleshooting-apply): Common fixes. Normally you upload a resume and tap Apply. Apply with AI works on more than 3 million open jobs. Use this page if something looks stuck mid-run. - [Edit your profile](https://docs.worklittle.com/help/profile-alerts/edit-profile): Name, dream job, school, and more. Your profile is the source of truth for everything Apply with AI types into employer forms. - [Profile photo](https://docs.worklittle.com/help/profile-alerts/profile-photo): Camera, upload, or default avatar. A photo shows up next to your name in chats and on your Worklittle account. - [Upload or replace your resume](https://docs.worklittle.com/help/profile-alerts/resume-upload): Keep applications ready. One resume on file keeps you ready to apply anywhere on Worklittle in a single tap. - [Skills and interests](https://docs.worklittle.com/help/profile-alerts/skills-interests): Chips that describe you. The **Your favorite things** field is a quick list of what you are good at and what you enjoy. - [Work authorization countries](https://docs.worklittle.com/help/profile-alerts/work-authorization): Where you can work. Tell us which countries you can already work in so applications answer the sponsorship question correctly. - [Social and portfolio links](https://docs.worklittle.com/help/profile-alerts/social-links): Add LinkedIn and sites. Employers ask for links constantly, so saving them once means never typing them again. - [Email preferences](https://docs.worklittle.com/help/profile-alerts/email-preferences): Alerts, events, announcements. You control exactly which emails Worklittle sends you, and you can change your mind at any time. - [Instant job alerts](https://docs.worklittle.com/help/profile-alerts/job-alerts): Emails based on the role you want. Job alerts email you new matching roles without you having to check the site every day. - [Your dream role field](https://docs.worklittle.com/help/profile-alerts/dream-job-field): The Job title field, with several roles and exclusions. The **Job title** field in your Settings is where you say what you want next, and it is the single biggest lever on the jobs Worklittle shows and emails you. - [Driver's license info](https://docs.worklittle.com/help/profile-alerts/drivers-license): When applications ask for it. A simple yes or no about your license saves a pause on the many roles that require driving. - [What is Worklittle Business?](https://docs.worklittle.com/help/business-basics/what-is-business): Employer workspace overview. Worklittle Business at worklittle.com/business is the side of Worklittle where companies post jobs and hire. - [Create an organization](https://docs.worklittle.com/help/business-basics/create-organization): Set up your company. An organization is your company's shared workspace, holding your jobs, candidates, and teammates. - [Verify a work email](https://docs.worklittle.com/help/business-basics/work-email): Required to post jobs. Employer features need an account tied to your company email address, which is how we keep job posts trustworthy. - [Invite teammates](https://docs.worklittle.com/help/business-basics/invite-teammates): Send invites by email. Bring recruiters, hiring managers, and interviewers into your workspace so everyone works from the same pipeline. - [Roles and permissions](https://docs.worklittle.com/help/business-basics/roles-permissions): What Owner, Full access, Can edit, Can comment, Can view, and Can chat can each do. Every teammate in Worklittle Business has a role. The role decides which pages they see, what they can change, and how much the chat assistant is allowed to know about your company. - [Switch organizations](https://docs.worklittle.com/help/business-basics/switch-organization): Move between Personal and company workspaces. Every login has a Personal workspace, and you may belong to company organizations. You can be in **10** organizations at once, counting Personal. Switch between them without signing out. - [Join requests](https://docs.worklittle.com/help/business-basics/join-requests): Approve people who ask to join. Colleagues can ask to join your workspace, and someone with full access approves or declines. - [Remove a teammate](https://docs.worklittle.com/help/business-basics/remove-teammates): Take someone off the org. When someone changes roles or leaves the company, remove them so your workspace stays current. - [Transfer ownership](https://docs.worklittle.com/help/business-basics/transfer-ownership): Hand the org to someone else. Ownership can move to another teammate when you change roles or leave the company. - [Public company profile](https://docs.worklittle.com/help/business-basics/org-profile-public): What candidates may see. Your company page is what job seekers see when they come across one of your openings. - [Post a job](https://docs.worklittle.com/help/hiring/post-a-job): Write and publish an opening. Posting a job puts your opening in front of candidates on Worklittle and on your own company page. - [Job description editor](https://docs.worklittle.com/help/hiring/job-description-editor): Format the posting. The description editor gives you proper formatting so your posting reads well instead of arriving as a wall of text. - [Locations, salary, and workplace](https://docs.worklittle.com/help/hiring/locations-salary): Set where and how people work. These three details are the first things candidates look for, and filling them in gets your job found. - [Application fields and screening](https://docs.worklittle.com/help/hiring/application-fields): Ask candidates the right questions. You decide what applicants have to provide, from the basics through to your own screening questions. - [Publish, close, or delete a job](https://docs.worklittle.com/help/hiring/publish-close-job): Control visibility. A job moves between draft, published, and closed depending on where you are in the process. - [Jobs board and pipeline](https://docs.worklittle.com/help/hiring/jobs-board): See all your openings. The Jobs page at worklittle.com/business is the overview of every role your company is hiring for. - [Candidates overview](https://docs.worklittle.com/help/hiring/candidates-overview): Track everyone in your funnel. The Candidates page brings every person across every job into one place. - [Candidate stages](https://docs.worklittle.com/help/hiring/candidate-stages): Sourced through Offer, and everything after. Stages are the steps of your hiring process, and every candidate sits in exactly one of them per job. - [Move candidates between stages](https://docs.worklittle.com/help/hiring/move-candidates): Update progress. Moving someone forward or out takes a couple of clicks from anywhere you see them. - [Notes and bookmarks on candidates](https://docs.worklittle.com/help/hiring/candidate-notes): Keep hiring context. Notes keep interview impressions and decisions attached to the person instead of buried in someone's inbox. - [Stage email templates](https://docs.worklittle.com/help/hiring/stage-email-templates): Auto messages per stage. Write an email once per stage, and candidates hear from you the moment they move. - [Offers](https://docs.worklittle.com/help/hiring/offers): Send and track offers. The Offer stage is where you prepare, send, and follow up on an offer without losing track of who is waiting on what. - [People Search for hiring](https://docs.worklittle.com/help/hiring/people-search-hiring): Temporarily unavailable. Public People Search is temporarily turned off. The opt-in directory is still too small to offer as a public product. You can still hire from your own applicants and imports. - [Import candidates](https://docs.worklittle.com/help/hiring/import-candidates): Bring people in from elsewhere. Move people you are already talking to into Worklittle so your whole pipeline lives in one place. - [AI tools and hiring compliance](https://docs.worklittle.com/help/hiring/ai-hiring-compliance): What Worklittle Business does and does not decide when you use AI in recruiting, and what your organization remains responsible for. Worklittle Business includes AI that helps draft, organize, and summarize hiring work. It does not decide who to hire. Your organization remains the employer and controller of candidate decisions. This page is a practical map of that split so you can stay defensible under U.S. and EU rules that regulate automated employment tools. - [Employees overview](https://docs.worklittle.com/help/team-hr/employees-overview): Your team roster in one table you can sort, filter, and edit. **Employees** is the roster of everyone who works at your organization. It looks like a spreadsheet, but every cell saves for your whole team the moment you change it. - [Employee profiles](https://docs.worklittle.com/help/team-hr/employee-profiles): View and update one person's details, pay history, and documents. A profile is the full page for one person on your team. It gathers their contact details, role, pay history, and paperwork in one place. - [Calendar and attendance](https://docs.worklittle.com/help/team-hr/calendar-attendance): Track shifts, time off, and who is present each day. **Calendar** shows who is working, who is out, and when. You can view the whole team side by side or zoom into one person. - [Approve schedule changes](https://docs.worklittle.com/help/team-hr/approve-schedule-changes): Accept or deny time off and shift edits that need a manager. Some calendar changes wait for approval instead of applying right away. This keeps schedules accurate when people update their own availability. - [Surveys overview](https://docs.worklittle.com/help/team-hr/surveys-overview): Ask your team or candidates questions and collect answers in one table. **Surveys** let you ask a group of people a set of questions and read every answer in one place. Use them for onboarding checklists, engagement pulses, exit interviews, or candidate screening. - [Create a survey](https://docs.worklittle.com/help/team-hr/create-survey): Build questions, set which ones are required, and save a draft. Building a survey works like filling out a short form builder. No setup or code is needed. - [Invite people to a survey](https://docs.worklittle.com/help/team-hr/invite-to-survey): Who you can share a survey with and how the link works. Sharing controls two things at once. It decides who is allowed to open the survey and how they receive the link. - [View survey responses](https://docs.worklittle.com/help/team-hr/survey-responses): Read results, spot patterns, and export answers. Every answer lands in a results table where one row is one person's submission and one column is one question. - [Documents overview](https://docs.worklittle.com/help/team-hr/documents-overview): Keep HR files, policies, and templates in one place. **Documents** is where you write, store, and send the paperwork your team needs. Offer letters, handbooks, policies, and signed forms all live here. - [Create and edit documents](https://docs.worklittle.com/help/team-hr/create-edit-documents): Write policies, letters, and handbooks in the built-in editor. The document editor works like a familiar word processor. Type, format, and your work saves automatically. - [Document templates](https://docs.worklittle.com/help/team-hr/document-templates): Start from a ready-made HR document instead of a blank page. Templates give you a complete first draft so you only need to adjust the details that are specific to your company. - [E-sign documents](https://docs.worklittle.com/help/team-hr/e-sign-documents): Send a document for signature and track who has signed. You can collect a signature on a document without printing anything. The signer opens a link, signs on screen, and you get the completed copy back. - [HR notifications](https://docs.worklittle.com/help/team-hr/notifications-hr): The alerts you may get about people, schedules, and paperwork. Worklittle tells you when something needs attention so you do not have to keep checking every page. - [Bulk employee actions](https://docs.worklittle.com/help/team-hr/bulk-employee-actions): Update, email, or export many people at once. When a change affects a whole department, you do not need to edit one row at a time. Select several people and act on all of them together. - [Automations overview](https://docs.worklittle.com/help/automations/automations-overview): Repeat your hiring and HR workflows without doing them by hand. An automation is a set of steps that runs on its own. Something happens, such as a new application arriving, and Worklittle does what you told it to do next. - [Create an automation](https://docs.worklittle.com/help/automations/create-automation): Build your first workflow on the canvas, step by step. You do not need to write anything technical. You pick a starting event, then add the steps that follow. - [Plugins and connectors](https://docs.worklittle.com/help/automations/plugins): Extend Worklittle Business with the tools your team already uses. Plugins connect Worklittle to other services so the assistant can act on your behalf in those tools. - [Notifications center](https://docs.worklittle.com/help/business-basics/notifications-center): One place for hiring, document, survey, and team updates. The notifications panel collects everything that happened while you were away so you can catch up in one pass. - [Search in Business](https://docs.worklittle.com/help/business-basics/global-search-business): Find jobs, people, chats, and tools from anywhere in the app. Search is the fastest way to move around Worklittle Business. Instead of clicking through the sidebar, type what you are looking for. - [Logo, banner, and brand color](https://docs.worklittle.com/help/business-basics/logo-banner-color): Make your organization profile and job board look like your company. Your brand assets appear on your public job board, on shared job links, and inside Worklittle Business for your team. - [AI brand images](https://docs.worklittle.com/help/business-basics/ai-brand-images): Create or edit your logo or banner by describing what you want in chat. If you do not have a designer available, you can create a logo or banner from scratch, or describe a change to an existing one, and the assistant will produce a new version. - [Organization details](https://docs.worklittle.com/help/business-basics/organization-details): Legal name, job board address, website, and company address. The **Organization** page holds the facts about your company. Some of it is public on your profile and job board, and some is internal. - [Privacy and terms links](https://docs.worklittle.com/help/business-basics/privacy-terms-links): Show your own policies on your public organization profile. You can point candidates at your own privacy policy and terms of service. These links appear alongside your public profile and job board. - [Business chat assistant](https://docs.worklittle.com/help/business-basics/business-chat): Ask the employer assistant to do the work for you. Chat is the first item in Worklittle Business sidebar. You can ask it questions about your data and ask it to make changes for you. - [API keys](https://docs.worklittle.com/help/api/api-keys): Create a key when an app or an AI agent needs to connect to Worklittle. An API key is a long password that lets a program use Worklittle on your behalf. Most people never need one. You only need a key if a developer or an AI tool asks for it. - [When to use the API vs the apps](https://docs.worklittle.com/help/api/when-to-use-api): Who needs keys and who can just use the website. Worklittle has two front doors. Most people should walk through the app. The API is for building something custom. For a short tour first, see [What is the Worklittle API?](/help/api/what-is-worklittle-api). - [Billing overview](https://docs.worklittle.com/help/account/billing-overview): Pay as you go, manage your card, and review invoices for your organization. Each organization (including your Personal workspace) has its own bill. Usage adds to amount owed. We charge your card on the 1st of each UTC month if you owe at least $0.50, or sooner when amount owed reaches $20. Balances under $0.50 wait. Manage everything on [Billing](https://worklittle.com/business/billing). - [Worklittle Instant](https://docs.worklittle.com/help/account/worklittle-instant): The $9.99 plan with $20 of AI credit for Apply with AI, resumes, headshots, and chat on worklittle.com. Worklittle Instant is the paid plan for AI help while you job hunt on worklittle.com. It costs $9.99 per month and includes $20 of AI credit for each Instant billing period. - [Invite friends and earn credit](https://docs.worklittle.com/help/account/refer-friends): Share your invite from Refer. Instant members earn $5 when a friend buys Instant. Signed-in free accounts earn $0.50 when a friend joins, up to $20. Open [Refer](https://worklittle.com/refer) while signed in. It is a full-screen overlay, same as [Plans](https://worklittle.com/plans). Close it with the X in the top right. Worklittle Instant members share a checkout invite. Signed-in accounts without Instant share a join invite. Full rules are in [Referral Terms](/help/account/referral-terms). - [Gifting credits](https://docs.worklittle.com/help/account/gifting-credits): Buy usage credit for a friend. Unclaimed gifts refund after 30 days. Claimed credit expires after 365 days. You can gift Worklittle usage credit to a friend. They open the claim link, pick which Worklittle account the gift belongs to, then Accept it on [Billing](https://worklittle.com/business/billing) onto whichever organization they want. This is separate from [referral rewards](/help/account/refer-friends). - [Referral Terms](https://docs.worklittle.com/help/account/referral-terms): Eligibility, rewards, limits, and clawback rules for Worklittle Instant referrals and join invites. These Referral Terms apply to Worklittle referral programs on [worklittle.com](https://worklittle.com). By creating referral links, sending invites, or claiming referral credit, you agree to these terms. For a short how-to, see [Invite friends and earn credit](/help/account/refer-friends). - [Donate to Worklittle](https://docs.worklittle.com/help/account/donations): How donations work, tax receipts, and where to donate. You can support Worklittle with a one-time donation to Curastem, the nonprofit that operates it. Donations are separate from Instant, API usage, and Business billing. [curastem.org](https://curastem.org) is the nonprofit site. - [Usage dashboard](https://docs.worklittle.com/help/account/usage): See what you used and what it cost. The Usage page shows where your organization's amount owed came from, so you can understand the bill. - [Spend limits](https://docs.worklittle.com/help/account/spend-limits): Cap your monthly spend and get an email before you hit it. A spend limit is a ceiling you set for the month. It protects you from a runaway script or an unexpectedly busy week. - [Payment required messages](https://docs.worklittle.com/help/account/payment-required): What a payment error means and how to clear it. A payment error means Worklittle received your request but cannot complete it until the billing side is sorted out. There is nothing to "add credit" for. Fix the card or the monthly limit. - [Pricing basics](https://docs.worklittle.com/help/account/pricing-help): Where to read what things cost. Prices are published in the docs so you can check them before you build anything. This article points you to the right page. - [Service status](https://docs.worklittle.com/help/api/status-page): Check whether Worklittle is having a problem. If something is not loading, the status page tells you whether the problem is on our side before you spend time debugging your own setup. - [REST vs MCP in plain English](https://docs.worklittle.com/help/api/rest-vs-mcp-plain): Two ways developers and AI tools connect to Worklittle. You may hear these two words from a developer or an AI tool. Here is what they mean without the jargon. - [Prompt guides overview](https://docs.worklittle.com/help/prompt-guides/prompt-guides-overview): Ready-to-copy prompts for the Jobs app and Worklittle Business. A prompt is just what you type to the assistant. These guides give you wording that works, so you can paste it in and edit the details. - [Jobs prompt guide](https://docs.worklittle.com/help/prompt-guides/jobs-prompt-guide): Prompts for searching jobs, improving your resume, and getting apply help. Copy any of these into chat at [worklittle.com](https://worklittle.com) and swap the bracketed parts for your own details. - [Business prompt guide](https://docs.worklittle.com/help/prompt-guides/business-prompt-guide): Prompts for posting jobs, reviewing candidates, and running surveys. Paste these into chat at [worklittle.com/business](https://worklittle.com/business). Replace the bracketed parts with your own details. - [Chat feature prompts](https://docs.worklittle.com/help/prompt-guides/chat-feature-prompts): Prompts for headshots, whiteboards, and documents. Chat can do more than answer questions. These prompts trigger the built-in tools for images, drawing, and writing. - [Apply with AI prompt tips](https://docs.worklittle.com/help/prompt-guides/apply-prompt-tips): How to describe yourself so applications go through smoothly. Upload your resume, tap Apply, and Worklittle fills out and sends the application in a cloud browser in chat. You can watch and take control anytime. Looking first is only if you turn Always submit off. - [Keep answers honest](https://docs.worklittle.com/help/prompt-guides/grounding-tips-everyday): Ask chat to stick to real job data instead of guessing. AI assistants can sound confident about things they do not know. A few words in your prompt push the assistant to use real Worklittle data and admit when it has none. - [Privacy overview](https://docs.worklittle.com/help/privacy-safety/privacy-overview): How we talk about your data in plain words. This is a plain-language summary of how your information is used in Worklittle. The full detail lives in the privacy policy. - [Compliance and security](https://docs.worklittle.com/help/privacy-safety/compliance-and-security): How Worklittle protects accounts, company data, and everyday access. Worklittle is built so people and companies can trust what they put in the product. This page is the plain-language version of how we think about security and responsible use. - [Contact support](https://docs.worklittle.com/help/privacy-safety/contact-support): How to reach a human and what to include. Email is the fastest route to a real answer. - [Terms and policies](https://docs.worklittle.com/help/privacy-safety/terms-and-policies): Links to the legal pages that govern your use of Worklittle. These are the official documents. They apply to everyone using Worklittle. - [Chat reports](https://docs.worklittle.com/help/privacy-safety/chat-reports): Report an AI answer that is unsafe, wrong, or inappropriate. If the assistant says something harmful or clearly incorrect, tell us. Reports are reviewed by the team. - [Report a job](https://docs.worklittle.com/help/privacy-safety/job-reports): Flag postings that look like scams, spam, or closed roles. Worklittle collects jobs from many sources. If one looks wrong, reporting it helps everyone who searches after you. - [Safety tips for job seekers](https://docs.worklittle.com/help/privacy-safety/safety-tips): Spot job scams before they cost you money or data. Real employers do not ask for money. Almost every job scam breaks that one rule somewhere in the process. - [Data you control](https://docs.worklittle.com/help/privacy-safety/data-you-control): Your profile, your preferences, and deleting your account. Most of what Worklittle knows about you is something you can see and change yourself. - [Browse the docs site](https://docs.worklittle.com/help/using-docs/browse-docs): Pills at the top, sidebar on the left, search everywhere. This site holds several different sets of pages. The navigation is built so you can tell which one you are in. - [Copy code blocks](https://docs.worklittle.com/help/using-docs/copy-code): Grab an example without selecting text by hand. Every code example on this site has a copy button, including the prompt templates in the prompt guides. - [Copy a whole page](https://docs.worklittle.com/help/using-docs/copy-page): Share a full docs page with a teammate or an AI assistant. **Copy page** puts the entire page on your clipboard as plain text, which makes it easy to hand to someone else or paste into an AI assistant. - [Docs chat](https://docs.worklittle.com/help/using-docs/docs-chat): Ask questions without leaving the page you are reading. Docs chat answers questions about Worklittle using the documentation. You do not need to sign in to use it. - [What's new](https://docs.worklittle.com/help/using-docs/whats-new): Release notes for every product update. The release notes page lists what changed and when, newest first, across the job search app, Worklittle Business, the API, and the docs. - [Help Center vs API reference](https://docs.worklittle.com/help/using-docs/help-vs-api-docs): Everyday help on one side, developer pages on the other. Both live on this site, and they are written for different readers. Picking the right one first saves time. - [What is the Worklittle API?](https://docs.worklittle.com/help/api/what-is-worklittle-api): The programming door into Worklittle jobs, hiring, and MCP tools. The Worklittle API lets software and AI tools use the same jobs and hiring data you see in the apps. Most people never need it. You only need it when someone is building a custom integration. - [Share or rotate an API key](https://docs.worklittle.com/help/api/share-or-rotate-api-keys): Keep keys private, give each system its own key, and replace a key safely. An API key is like a password for your organization. Share it carefully, and replace it if it might have leaked. - [Why is my API key not working?](https://docs.worklittle.com/help/api/api-key-not-working): Fixes for invalid key, wrong organization, revoked keys, and missing permissions. When a key fails, the problem is usually a typo, a revoked key, the wrong organization, or a missing permission. Work through the checklist below before assuming the API is down. - [Which organization does my API key belong to?](https://docs.worklittle.com/help/api/which-org-for-api): Keys and API bills follow the Business organization where the key was created. Every API key belongs to one organization. Usage and billing for that key go to that same organization, not to a different workspace you happen to have open later. - [What can my API key do?](https://docs.worklittle.com/help/api/api-permissions-plain): Scopes and roles in plain English: what a key is allowed to access. An API key can only do what it is allowed to do. In Worklittle, that usually follows the permissions of the person who created the key in that organization. - [Too many requests and rate limits](https://docs.worklittle.com/help/api/rate-limits-and-429): What a 429 means, the default per-key limit, and what to do next. A 429 or “too many requests” response means Worklittle asked your integration to slow down, or a free monthly quota was used up. It is a guardrail, not a permanent ban. - [Common API errors](https://docs.worklittle.com/help/api/common-api-errors): Plain-English meanings for 401, 402, 403, 429, and similar failures. API errors look technical, but most of them point to a simple fix: key, permission, billing, or speed. - [How does API usage get billed?](https://docs.worklittle.com/help/api/api-usage-and-billing): Keys are free. AI token usage accrues to the organization wallet. Creating an API key does not cost money. Some API actions are free within monthly quotas. AI-powered actions add to amount owed on the organization that owns the key. - [What is free on the API vs what costs money?](https://docs.worklittle.com/help/api/free-vs-paid-api): Free monthly quotas versus AI token charges, without the full pricing tables. A lot of API traffic is free within monthly quotas. Paid meters are AI token usage, plus $0.01 hosted apply submits on Jobs. This page points you to the right docs instead of reprinting every number. - [REST, SDK, CLI, or MCP?](https://docs.worklittle.com/help/api/rest-sdk-cli-or-mcp): Pick the right way in based on who is calling Worklittle. One Worklittle key works across the main ways in. The choice is about convenience, not a different account. - [Connect an AI tool without writing code](https://docs.worklittle.com/help/api/connect-ai-without-code): Use MCP or the Jobs app in ChatGPT, Claude, and VS Code when you do not want a custom integration. You do not always need a developer. Some AI tools can connect to Worklittle through MCP or a built-in Jobs experience, including ChatGPT, Claude, VS Code, and your own applications. - [What are webhooks?](https://docs.worklittle.com/help/api/webhooks-plain): How Worklittle can notify another system when hiring events happen. A webhook is a message Worklittle sends to your other software when something important happens, such as a candidate moving stages. You only need webhooks if another system should react automatically. - [How do I give a developer access?](https://docs.worklittle.com/help/api/hand-off-api-to-developer): Create a key, share it securely, send the right docs, and set a spend limit. You can stay non-technical and still unblock a developer. Create the key in the right organization, hand it over safely, and point them at the docs. - [Why does the API feel slow?](https://docs.worklittle.com/help/api/api-feels-slow): Practical checks for latency, retries, AI calls, and outages. Slow responses usually come from the integration pattern, AI-heavy calls, retries, or an incident, not from a secret speed setting you forgot to flip. - [Cancel Worklittle Instant](https://docs.worklittle.com/help/account/cancel-instant): How to cancel Instant, what happens to your credit, and when the last charge applies. You can cancel Worklittle Instant anytime. Cancellation takes effect at the end of the period you already paid for, so you keep Instant until then. - [Add, change, or remove a payment method](https://docs.worklittle.com/help/account/payment-methods): Manage the card or bank account Stripe uses for Instant and pay-as-you-go billing. Payment methods are managed through Stripe on [Billing](https://worklittle.com/business/billing). Each organization (including Personal) has its own payment method. - [Find past invoices](https://docs.worklittle.com/help/account/find-invoices): Where Instant and pay-as-you-go invoices show up. Past charges appear on [Billing](https://worklittle.com/business/billing) for the organization that was billed. - [When Worklittle charges your card](https://docs.worklittle.com/help/account/when-we-charge): When Instant renews, and when pay-as-you-go AI charges hit your card. If you owe AI charges, we usually bill near the start of each month. If you owe $20 or more sooner, we may charge then. Instant’s $9.99 renews on the same day each month you signed up. Both show on [Billing](https://worklittle.com/business/billing). - [Free AI, Instant, and pay as you go](https://docs.worklittle.com/help/account/free-instant-payg): How free AI, Instant, and a Personal card work together on worklittle.com. You get free AI each month when you sign in. Instant gives you more AI credit for $9.99 a month. If you use more than that, a card on Billing covers extra AI use. Looking for jobs stays free. - [Can I buy prepaid credits?](https://docs.worklittle.com/help/account/no-prepaid-credits): Yes. Buy credit on Billing in whole dollars from $1 to $500. Yes. On [Billing](https://worklittle.com/business/billing), use **Buy credit** in the Credit balance box. That buys usage credit for the organization you have selected. Amounts are whole dollars from $1 to $500. Credit is used before your card is charged for additional usage. - [Refunds and withdrawals](https://docs.worklittle.com/help/account/refunds): What Instant credit means for refunds, and how EEA/UK/Switzerland withdrawal works. There is no self-serve refund button in the app. Instant AI credit is for usage only. It is not cash and is not refundable as spending money. - [Can I transfer Instant to another account?](https://docs.worklittle.com/help/account/transfer-instant): No. Instant stays on the account that subscribed. No. Worklittle Instant cannot be transferred to a different email or account. Subscriptions are not movable between people. - [I see a charge I do not recognize](https://docs.worklittle.com/help/account/unrecognized-charge): How to match a bank charge to Instant, pay as you go, or a donation. Most unrecognized charges are Instant renewals, pay-as-you-go collection, or a donation. Match the date and amount on Billing before disputing with your bank. - [Why was my card declined?](https://docs.worklittle.com/help/account/card-declined): What to try when Stripe cannot charge your payment method. A declined card usually means the bank rejected the charge, the card expired, or there is not enough available credit. Worklittle cannot override a bank decline. - [Why did Instant renewal fail?](https://docs.worklittle.com/help/account/instant-renewal-failed): What happens when the $9.99 Instant charge does not go through. Instant stops when the $9.99 renewal does not succeed. Instant only stays on while Stripe shows the subscription as active. Fix the Personal payment method, then check Plans or Billing. - [Which organization am I paying for?](https://docs.worklittle.com/help/account/which-org-am-i-billed): Personal vs company wallets, Instant, and why the wrong workspace looks like a wrong bill. Every organization has its own bill and payment method. Checking the wrong workspace is the most common billing confusion. - [I forgot my password](https://docs.worklittle.com/help/account/forgot-password): Use an email code to get back in, then set a new password. Worklittle does not send a separate “reset password” email. Sign in with a one-time email code, then create a new password. - [Can I change my login email?](https://docs.worklittle.com/help/account/change-login-email): No. Your sign-in email is fixed on that account. No. You cannot edit the email address on an existing Worklittle account. One email is one account. - [Export your data](https://docs.worklittle.com/help/account/export-my-data): Download a copy of your account data from Settings. You can export your account data anytime from Settings. Do this before you delete an account if you want a copy. - [I deleted my account. Can I get it back?](https://docs.worklittle.com/help/account/reactivate-deleted-account): Yes for three days. After that, no. Yes, for three days. Sign in again with the same email to cancel the deletion. After that, no—the account is gone. - [Keep your account secure](https://docs.worklittle.com/help/account/keep-account-secure): Practical steps that match how Worklittle sign-in actually works. Worklittle sign-in uses Google, a 6-digit email code, and an optional password. There is no passkey or authenticator-app MFA in the product today. - [I received a login code I did not request](https://docs.worklittle.com/help/account/login-code-unrequested): What an unexpected sign-in email means and what to do next. A 6-digit code from no-reply@worklittle.com means someone typed your email on the sign-in page. It does not mean they got into your account. - [New device notification](https://docs.worklittle.com/help/account/new-device-notice): Why you might see a “new device logged in” notice. Worklittle can show an in-app notice when your account signs in from a device that looks new. It is an alert, not a separate security challenge. - [Change your name on Worklittle](https://docs.worklittle.com/help/account/change-display-name): Update the name on your job seeker profile in Settings. Your profile name is editable in Settings. That is the name used on your job seeker profile and related AI fills. It is separate from the email you use to sign in. - [What is Worklittle chat?](https://docs.worklittle.com/help/chat-ai/what-is-worklittle-chat): What the career assistant on worklittle.com can help with. Worklittle chat is the AI career assistant on [worklittle.com](https://worklittle.com). It helps with job search tasks: resumes, cover letters, interview prep, career quizzes, research, and more. - [Connect with AI (voice)](https://docs.worklittle.com/help/chat-ai/connect-with-ai): Talk with Worklittle using the Live AI voice orb, separate from typing dictation. Connect with AI starts a spoken conversation with Worklittle. A Live AI orb appears while you talk. This is different from the microphone that turns speech into text in the message box. - [Attachment size and storage limits](https://docs.worklittle.com/help/chat-ai/attachment-limits): How large files can be, how many per message, and how long they are kept. Chat attachments have size, count, and storage limits so uploads stay reliable. - [Chat and AI limits](https://docs.worklittle.com/help/chat-ai/chat-and-ai-limits): How free allowances, Instant, and pay as you go affect chat on worklittle.com. Chat, Apply with AI, dictation, Live AI, headshots, and similar features on worklittle.com share the same AI usage rules. - [Search your chat history](https://docs.worklittle.com/help/chat-ai/search-chat-history): Find an older conversation from the sidebar search. You can search past chats from the same search experience that also finds jobs and companies. - [How many chats can run at once?](https://docs.worklittle.com/help/chat-ai/concurrent-chats): Overlapping chat replies are fine; AI credit is the real limit. You can start several chat replies at once. There is no fixed concurrent chat count. Signed-in free AI credit (and Instant or a payment method when that runs out) is what stops new usage. - [Share a chat link](https://docs.worklittle.com/help/chat-ai/share-chat-links): Copy a temporary link to a conversation, and what happens when it expires. You need to be signed in to create a share link. Job seeker links are public for anyone who has them. They last about 48 hours. - [Delete a chat](https://docs.worklittle.com/help/chat-ai/delete-a-chat): Remove a conversation from your sidebar permanently. Deleting a chat removes that conversation from your list. There is no separate archive option. - [Chat as a guest](https://docs.worklittle.com/help/chat-ai/guest-chat): What works without an account, and what signing in unlocks. You can try chat on [worklittle.com](https://worklittle.com) without signing in. Signing in keeps history and raises some limits. - [Use chat on your phone](https://docs.worklittle.com/help/chat-ai/chat-on-phone): Worklittle chat in a mobile browser, including the bottom navigation. There is no separate Worklittle Chat app in the App Store or Play Store. Use [worklittle.com](https://worklittle.com) in your phone browser. - [Chat is slow or shows an error](https://docs.worklittle.com/help/chat-ai/chat-slow-or-errors): What to try when replies stall, fail, or hit a limit. Most chat trouble comes from a flaky network, a busy generation, or an AI usage limit. - [Headshot limits](https://docs.worklittle.com/help/chat-ai/headshot-limits): How many AI headshots you can create as a guest or signed in. AI headshots turn a photo of you into a professional-looking portrait. Creation is rate limited so the feature stays available for everyone. - [How whiteboards are saved](https://docs.worklittle.com/help/chat-ai/one-whiteboard): One shared whiteboard per account or browser, not a new board for every chat. Worklittle keeps one whiteboard for you to draw on. Opening a board from different chats uses that same canvas rather than creating a separate board for each conversation. - [Job seeker chat vs Business chat](https://docs.worklittle.com/help/chat-ai/job-seeker-vs-business-chat): Why your personal chats and work chats never mix. Job seeker chat on worklittle.com and Business chat on worklittle.com/business are separate lists. - [Ask chat what it can do](https://docs.worklittle.com/help/chat-ai/ask-what-chat-can-do): How to discover features inside the product when you are unsure. If you are not sure whether Worklittle can help with a task, ask in plain language or open the slash skills menu. - [What's new in chat](https://docs.worklittle.com/help/chat-ai/chat-release-notes): Where to find product updates that affect worklittle.com chat. Worklittle publishes release notes in the docs. There is no separate in-chat changelog page. - [Worklittle Business FAQ](https://docs.worklittle.com/help/business-basics/what-is-worklittle-business-faq): Short answers about setting up a company, inviting people, and how company billing works. Worklittle Business is the employer side of Worklittle at [worklittle.com/business](https://worklittle.com/business). Companies hire, run HR, and connect tools there. You do not buy seats. - [Do we buy seats for Business?](https://docs.worklittle.com/help/business-basics/no-seats-payg): No. Worklittle Business bills as you go, not named seats. No. There are no Business seats to purchase. Each company has its own bill and payment method. - [Why does my company bill look empty?](https://docs.worklittle.com/help/business-basics/company-vs-personal-bill): Personal Instant and company hiring use different bills. If Instant credit or a charge is missing, you are often looking at the wrong organization. - [When is my company charged?](https://docs.worklittle.com/help/business-basics/when-company-is-charged): On the 1st of each UTC month (if you owe at least $0.50), or sooner at $20 owed. Usually on the 1st of each month (UTC). Usage during the month adds to amount owed. We charge the company card on the 1st of each UTC month if you owe at least $0.50, or sooner when amount owed reaches $20. - [Cap company AI spend](https://docs.worklittle.com/help/business-basics/company-spend-limits): Set a monthly hard cap and budget alerts on the company organization. Full access and Owner can limit how much a company organization can spend in a month. - [Who can see Usage and Billing?](https://docs.worklittle.com/help/business-basics/who-sees-usage): Billing, Usage, and Limits are for Full access and Owner. Not every teammate can open company spend pages. That is intentional. - [Leave an organization](https://docs.worklittle.com/help/business-basics/leave-organization): How to leave a company workspace and what happens to your access. You can leave a company organization from the Organization page when other people are still on the team. You lose access right away. The organization’s jobs and records stay with the company. - [Delete a company organization](https://docs.worklittle.com/help/business-basics/delete-organization): Delete is for a solo Owner. Company data is scheduled for removal after about 24 hours. Delete is available when you are the Owner and the only remaining member. Remove teammates first if anyone else is still in the company. - [What happens to data when someone leaves?](https://docs.worklittle.com/help/business-basics/leaving-data-access): Access ends for the person. Organization records stay with the company. When someone is removed or leaves, they lose access. Jobs, candidates, notes, and other organization records stay with the company. - [Why did Full access take a minute?](https://docs.worklittle.com/help/business-basics/role-change-delay): Giving someone Full access, or transferring ownership, waits about a minute. Most role changes apply right away. Giving someone Full access, or making them the Owner, waits about a minute before it takes effect. - [Give employees chat without hiring access](https://docs.worklittle.com/help/business-basics/can-chat-for-employees): Use the Can chat role for everyday employees. Can chat is for people who should use Worklittle at work without seeing the hiring pipeline or company admin pages. - [Do we verify our company domain?](https://docs.worklittle.com/help/business-basics/work-email-not-domain-claim): No domain claim. You still need a company work email, and impersonation is not allowed. No. You do not claim or verify ownership of your company website domain. You still must be affiliated with the company you represent. - [Try the Business demo](https://docs.worklittle.com/help/business-basics/try-lilypad-demo): Click around Worklittle Business using sample data before you set up your own company. You can try Worklittle Business without creating your own company. The demo is filled with sample data so you can click around safely. - [Does Instant pay for my company?](https://docs.worklittle.com/help/business-basics/instant-not-company-plan): No. Instant is the job-seeker plan on worklittle.com. Your company has a separate bill. No. Worklittle Instant pays for AI help while you job hunt on worklittle.com. It does not pay for hiring or your company workspace. - [Business chat vs worklittle.com chat](https://docs.worklittle.com/help/business-basics/business-chat-vs-consumer): Employer assistant and job seeker chat are separate histories. Chat on worklittle.com and chat on worklittle.com/business never mix in the sidebar. - [Share a Business chat with my team](https://docs.worklittle.com/help/business-basics/share-business-chat): Organization-only share links for employer chats. Business chat share links are for people in your organization. They are not public the way job seeker chat links can be. - [Notify other tools when hiring changes](https://docs.worklittle.com/help/automations/webhooks-from-business): Use webhooks or automations to send events out of Worklittle Business. You can push hiring events to other systems without buying seats or a separate integration SKU. - [Connect our own MCP server](https://docs.worklittle.com/help/automations/custom-mcp-faq): Add a Custom MCP app from Business Plugins. Besides the plugin catalog, you can connect your own remote MCP server as a Custom app. - [What's new in Worklittle Business](https://docs.worklittle.com/help/business-basics/business-whats-new): Where to find release notes that affect the employer app. Product updates are published in docs release notes rather than a separate Business-only changelog inside the app. - [Marketing and ads privacy](https://docs.worklittle.com/help/privacy-safety/marketing-privacy-toggles): How Marketing measurement and Personalized marketing work in Settings. Worklittle does not show a cookie popup. You control Google Analytics, Clarity, and ads from Privacy in Settings. - [Where are Worklittle’s legal policies?](https://docs.worklittle.com/help/privacy-safety/legal-policies-list): Links to Privacy, Terms, security, access controls, and retention. These are the official Worklittle legal and security documents. Help articles summarize them in plain language. - [How do I request a copy of my data?](https://docs.worklittle.com/help/privacy-safety/request-my-data): Consumer privacy email export vs Business JSON download. You can request a copy of your data from Settings. The steps differ slightly on worklittle.com and Worklittle Business. - [Delete my account for privacy](https://docs.worklittle.com/help/privacy-safety/delete-account-privacy): How account deletion works, including the three-day window. Deleting your account removes your profile and associated personal data from Worklittle after a short grace period. - [Privacy rights requests](https://docs.worklittle.com/help/privacy-safety/privacy-rights): How GDPR/CCPA-style rights map to Settings and privacy@. Depending on where you live, privacy law may give you rights to access, correct, delete, or opt out of certain sharing. Worklittle describes these in the Privacy Policy. - [Does Worklittle train models on my chats?](https://docs.worklittle.com/help/privacy-safety/does-worklittle-train-on-chats): No. Worklittle does not train its models on your chats. No. Worklittle does not train its models on your chats, voice, Apply with AI, or other AI messages. - [Who do I email for privacy, support, or security?](https://docs.worklittle.com/help/privacy-safety/who-to-email): Which inbox to use for privacy@, support@, and contact@. Different questions go to different addresses so the right team sees them. - [How long is my data kept?](https://docs.worklittle.com/help/privacy-safety/data-retention): How long account data and chat files stay, and how you can delete things yourself. Worklittle keeps your information while you use the product, and for as long as the law or our policies require. You can also delete many things yourself. - [Report harmful AI or a bad job](https://docs.worklittle.com/help/privacy-safety/report-harmful-content): When to use chat reports vs job reports. Use Report in the app when an AI answer or a job posting looks harmful, fake, or wrong. - [Is Worklittle HIPAA or FedRAMP certified?](https://docs.worklittle.com/help/privacy-safety/compliance-claims): No. Worklittle does not claim HIPAA or FedRAMP certification. No. Worklittle does not claim HIPAA or FedRAMP certification, and Help does not present SOC 2 as a product badge either. - [Put our company’s privacy policy on our job board](https://docs.worklittle.com/help/privacy-safety/company-privacy-terms-links): Link your own privacy and terms on a Worklittle Business public profile. Company organizations can publish their own privacy policy and terms links next to Worklittle’s policies on their public board. - [What age can use Worklittle?](https://docs.worklittle.com/help/privacy-safety/age-requirements): You must be at least 13 (or 16 in the EEA, UK, or Switzerland). You must be at least 13. In the EEA, UK, or Switzerland you must be at least 16, or the lower online-services age where you live if the law sets one. - [Can I trust AI answers on Worklittle?](https://docs.worklittle.com/help/privacy-safety/ai-output-trust): Chat drafts are for you to review. Apply with AI fills and sends applications from your resume. For chat, treat answers like a draft. For Apply with AI, Worklittle fills and sends real applications from your resume. - [Is the Business demo real customer data?](https://docs.worklittle.com/help/privacy-safety/demo-vs-real-data): No. The demo uses sample data, not your real company. No. The Business demo uses sample data so you can click around. It is not your real company workspace. - [Who is responsible for activity on my account?](https://docs.worklittle.com/help/privacy-safety/account-responsibility): You are responsible for activity under your login. Do not share codes or keys. Your Worklittle account is yours. You are responsible for activity that happens while signed in as you. - [What is Worklittle Maps?](https://docs.worklittle.com/help/worklittle-maps/what-is-maps): See nearby jobs on a map, then open a company or a role. Maps is how you look at jobs the way you look at a neighborhood. It plots roles that have a real place you can travel to, across **150+ countries**, and it is built for state-of-the-art speed when those results appear. The map itself uses Google’s vector renderer so pan and zoom stay smooth. - [Open Maps and move around](https://docs.worklittle.com/help/worklittle-maps/open-and-move): Center the map, then pan and zoom to the commute you want. The jobs on screen belong to the part of the map you are looking at. Pan and zoom to the commute you would actually take, and the list and logos follow. - [Search jobs and jump to a place](https://docs.worklittle.com/help/worklittle-maps/search-and-places): Use the Maps search box for a title, a city, or a company. The Maps search box can find a role, jump the map to a place, or open a company. Coverage includes **150+ countries**, so you can go from your neighborhood to another country in the same box. - [What Maps leaves out](https://docs.worklittle.com/help/worklittle-maps/what-maps-leaves-out): Where remote jobs, skipped jobs, and tight filters go. Maps is built for jobs with a place you can travel to. Other kinds of openings still live on Worklittle. They just use a different screen. - [Company logos on the map](https://docs.worklittle.com/help/worklittle-maps/company-chips): Each logo is one employer nearby, with a count of openings. Nearby openings for the same employer become one logo with a number, so you can see who is hiring in a patch of the map at a glance. - [The job list next to the map](https://docs.worklittle.com/help/worklittle-maps/job-list): Nearby roles, estimated commute, and opening a posting. The list is the same nearby jobs the pins counted for the area you are looking at, closest first, then newest. A title in the search box applies to both the pins and the list. Each page of results spreads employers by how many roles they have on that page, so a large office is not dumped at the end. Jobs you already scrolled past stay in the same order. It is meant to pair with the map so you can read titles while you still see the neighborhood. - [Filter jobs on Maps](https://docs.worklittle.com/help/worklittle-maps/maps-filters): Narrow the logos and the nearby list by title, date, type, experience, visa, and sort. Filters help you keep the map on the roles you actually want. The same date, experience, type, visa, and Sort by chips also sit above Near you on [worklittle.com](https://worklittle.com/). - [Companies on Maps](https://docs.worklittle.com/help/worklittle-maps/companies-on-maps): Open an employer over the map, nearby roles first. A company page over Maps is the same employer hub as [worklittle.com/company/…](https://worklittle.com/), with extra nearby context from the area you are looking at. - [Open a job from Maps](https://docs.worklittle.com/help/worklittle-maps/jobs-from-maps): Read the posting, apply, or save, while the map stays behind. Opening a listing from Maps keeps the map behind the posting so you can jump back to nearby roles when you are done. - [Share a Maps link](https://docs.worklittle.com/help/worklittle-maps/share-maps-links): Send someone a place, a search, a company, or a job on Maps. Once the map shows the view you want, copy the link from the top of the page and paste it to a friend. - [Maps on a phone](https://docs.worklittle.com/help/worklittle-maps/maps-on-phone): The Maps tab and the list you pull up from the bottom. On a phone, Maps fills the screen and the nearby jobs sit in a sheet you drag. The Maps tab in the bottom navigation is the same product as the sidebar on a computer. - [Maps and the homepage](https://docs.worklittle.com/help/worklittle-maps/maps-and-home): Near you, shared chips, and Open jobs map. Home and Maps share the same nearby jobs idea. Filters you set on one follow you to the other in that tab. - [Maps looks empty or in the wrong place](https://docs.worklittle.com/help/worklittle-maps/maps-troubleshooting): What to try when the list is quiet or the city looks off. A quiet view is usually a tight filter, a zoomed-in patch, or remote-only search. The wrong city is usually location permission. - [What's new](https://docs.worklittle.com/resources/release-notes): Release notes for Worklittle apps and devtools - [Status](https://docs.worklittle.com/resources/status): Check whether api.worklittle.com is reachable and monitor your own API usage in Worklittle Business. - [Overview](https://docs.worklittle.com/jobs/get-started/overview): Jobs API for searching millions of open roles, apply flows, and AI document tools. Low-cost data for millions of jobs with a combined worth of $10 billion, updated hourly. Each job includes geocoded location data so you can build map search, radius filters, and local discovery. - [Quickstart](https://docs.worklittle.com/jobs/get-started/quickstart): Create an API key, then search the Jobs index. Official clients: cURL, CLI, Python, and TypeScript. - [API Keys](https://docs.worklittle.com/jobs/get-started/api-keys): API keys for Jobs search, apply, and document tools. Create and revoke them in Worklittle Business. - [Pricing](https://docs.worklittle.com/jobs/get-started/pricing): Jobs API and MCP bill for AI token usage. Add a payment method for higher access to AI features. - [Libraries overview](https://docs.worklittle.com/jobs/libraries/overview): Official Worklittle SDK and CLI for job search, apply, and document tools. - [SDK](https://docs.worklittle.com/jobs/libraries/sdk): TypeScript and Python clients for api.worklittle.com. Same key, same resources. Language tabs below. - [CLI](https://docs.worklittle.com/jobs/libraries/cli): worklittle command-line client. JSON on stdout by default. - [OpenAPI](https://docs.worklittle.com/jobs/libraries/openapi): Machine-readable OpenAPI 3.1 for the Worklittle REST API, published on the docs site. - [Search people](https://docs.worklittle.com/jobs/api/search-people): Public People Search is temporarily unavailable. Prefer Manage candidates for your own hiring pipeline. - [Search jobs](https://docs.worklittle.com/jobs/api/search-jobs): Search Worklittle's open-role index, paginate results, and fetch enriched job details for agents and job boards. - [Search companies](https://docs.worklittle.com/jobs/api/search-companies): Find employers by name or slug, map them in the index, and scope job search by company. - [Apply for jobs](https://docs.worklittle.com/jobs/api/apply-for-jobs): Worklittle lets you apply to up to 200 jobs at once, including support for over 4 million open listings. Connect your API key to apply for jobs and track jobs you applied to. - [Create resumes](https://docs.worklittle.com/jobs/api/create-resumes): Generate a one-page hiring-ready resume (HTML, PDF, and/or DOCX) tailored to a job. - [Create cover letters](https://docs.worklittle.com/jobs/api/create-cover-letters): Generate a one-page hiring-ready cover letter for a company and role (HTML, PDF, and/or DOCX). - [Status](https://docs.worklittle.com/jobs/resources/status): Check whether api.worklittle.com is reachable and monitor your own API usage in Worklittle Business. - [Rate limits](https://docs.worklittle.com/jobs/resources/rate-limits): Per-minute throttles and free monthly quotas for job search, apply, and MCP job tools. - [Errors](https://docs.worklittle.com/jobs/resources/errors): Structured JSON errors for job search, apply, and MCP job tools. - [FAQ](https://docs.worklittle.com/jobs/resources/faq): Short answers about job search, apply, and document tools. - [Overview](https://docs.worklittle.com/business/get-started/overview): Business API for posting jobs, managing candidates and employees, surveys, documents, attendance, and webhooks in Worklittle. The same org data your teammates see in Worklittle Business is writable from REST, SDK, CLI, and MCP. Automate hiring without leaving Worklittle as the source of truth. - [Quickstart](https://docs.worklittle.com/business/get-started/quickstart): Create an API key, then list your candidates. Official clients: cURL, CLI, Python, and TypeScript. - [API Keys](https://docs.worklittle.com/business/get-started/api-keys): API keys for posting, ATS, organization, documents, and webhooks. Create and revoke them in Worklittle Business. - [Pricing](https://docs.worklittle.com/business/get-started/pricing): Business Platform bills AI tokens only. Free compute and email quotas are on Rate limits. Job listings and most ATS routes stay free. Our platform uses a frontier model with intelligent agentic capabilities. You can view full logs of API calls and token cost in [Usage](https://worklittle.com/business/usage). Business Platform AI includes $0.10 of free monthly AI credit per company organization. After that, tokens are pay as you go. ATS, posting, emails, and most compute quotas are free within monthly limits on Rate limits. Add a card on Billing for AI usage beyond free credit. We charge at the end of each UTC month for accrued usage (if at least $0.50), and earlier when amount owed reaches $20. - [Libraries overview](https://docs.worklittle.com/business/libraries/overview): Official Worklittle SDK and CLI for posting, ATS, organization, HR tools, and webhooks. - [SDK](https://docs.worklittle.com/business/libraries/sdk): TypeScript and Python clients for api.worklittle.com. Same key, same resources. Language tabs below. - [CLI](https://docs.worklittle.com/business/libraries/cli): worklittle command-line client. JSON on stdout by default. - [OpenAPI](https://docs.worklittle.com/business/libraries/openapi): Machine-readable OpenAPI 3.1 for the Worklittle REST API, published on the docs site. - [Post a job](https://docs.worklittle.com/business/api/post-a-job): Publish roles on your Worklittle job board and optionally the global jobs index. Session posting in Worklittle Business or API-key automation for listings. - [Public job board](https://docs.worklittle.com/business/api/public-job-board): Unauthenticated careers-board routes for jobs you published on Worklittle. Branding, listings, apply, resume parse, and JSON-LD. - [Manage organization](https://docs.worklittle.com/business/api/manage-organization): Configure employer identity, internal teams, interview questions, and branding scoped to your organization. - [Manage candidates](https://docs.worklittle.com/business/api/manage-candidates): Operate your employer ATS: candidates, pipeline stages, notes, interviews, employees, email, and offers. - [Search people](https://docs.worklittle.com/business/api/search-people): Public People Search is temporarily unavailable. Prefer Manage candidates for your own hiring pipeline. - [Surveys](https://docs.worklittle.com/business/api/surveys): Create and manage organization surveys, collect public responses, and list results via REST, SDK, or CLI. - [Documents](https://docs.worklittle.com/business/api/documents): HR documents and e-sign under /business/documents: templates, create from HTML, shares, PDF download. - [Attendance](https://docs.worklittle.com/business/api/attendance): Organization calendar and time-off entries via /attendance. Same data as the Work calendar UI. - [Status](https://docs.worklittle.com/business/resources/status): Check whether api.worklittle.com is reachable and monitor your own API usage in Worklittle Business. - [Rate limits](https://docs.worklittle.com/business/resources/rate-limits): Per-minute throttles and free monthly quotas for ATS, organization, webhooks, and platform compute. - [Errors](https://docs.worklittle.com/business/resources/errors): Structured JSON errors for ATS, organization, surveys, documents, attendance, and webhooks. - [FAQ](https://docs.worklittle.com/business/resources/faq): Short answers about hiring, ATS, organization setup, and webhooks. - [Webhooks overview](https://docs.worklittle.com/business/webhooks/overview): Webhooks send HTTPS POST requests to your server when hiring events happen in your Worklittle organization, so you can sync an HRIS or trigger workflows without polling. - [Webhook integration](https://docs.worklittle.com/business/webhooks/integration): Verify signatures, parse payloads, and handle retries safely in your application. ## Optional - [Agent manifest (JSON)](https://docs.worklittle.com/docs-agent-manifest.json): paths, titles, descriptions, nav, and learning paths - [OpenAPI](https://docs.worklittle.com/openapi/openapi.yaml): machine-readable REST schema Prefer fetching page HTML (includes server-rendered article text), or request `Accept: text/markdown` / `text/plain` on any docs URL for the same body without JavaScript. Markdown responses include YAML frontmatter and JSON-LD, plus `Content-Signal: ai-train=yes, search=yes, ai-input=yes`. Coding agent documentation index Fetch the complete documentation index at: https://docs.worklittle.com/docs-agent-manifest.json Use this file to discover all available pages before exploring further.