> ## Documentation Index
> Fetch the complete documentation index at: https://docs.exterview.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Career Page

> The org-branded careers surface: public, unauthenticated by design, and the first capability to ship.

<Note>
  This is the only capability in scope to **publish now**. Everything else on
  this site documents capabilities still behind the auth and gating work in
  [Authentication & Scopes](/get-started/authentication).
</Note>

## Purpose

The Career Page is your organization's branded, public-facing job surface. It lists published roles and accepts candidate applications, with no login required.

## Operations

| Type     | Operation                          | Description                                    |
| -------- | ---------------------------------- | ---------------------------------------------- |
| Query    | `careersPublicJobs(orgSlug)`       | List an org's published, public job postings   |
| Query    | `careersPublicJob(orgSlug, jobId)` | Read a single public job posting               |
| Mutation | `applyToPublicJob(input)`          | Submit a candidate application to a public job |

## Auth

None required. This surface is public by design, unlike every other capability documented on this site.

## Example

```graphql theme={null}
query CareersPublicJobs($orgSlug: String!) {
  careersPublicJobs(orgSlug: $orgSlug) {
    id
    title
  }
}
```

See [Quickstart](/get-started/quickstart) for a runnable `curl` example.

## FAQs

<AccordionGroup>
  <Accordion title="Does the Career Page require authentication?">
    No. It is the one genuinely public surface. Candidates browse and apply without an account.
  </Accordion>

  <Accordion title="Which jobs appear here?">
    Only postings that are both published and marked public for the organization.
  </Accordion>

  <Accordion title="How do applications flow into Exterview?">
    An application submitted through `applyToPublicJob` creates a candidate record that downstream evaluation modules can act on.
  </Accordion>
</AccordionGroup>

## Related

<CardGroup cols={2}>
  <Card title="Jobs & Candidates" icon="briefcase" href="/supporting/jobs-candidates">
    Create the roles and candidate records this surface reads from.
  </Card>

  <Card title="Quickstart" icon="play" href="/get-started/quickstart">
    A runnable first call against the API.
  </Card>
</CardGroup>
