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

# /builtin/jobs

> Get full details of a Built In job posting by its id or URL: title, full description, summary, company, locations, remote/hybrid/on-site flags, seniority, salary range, industries, required skills, requirements, employment type, benefits, the external apply link, and posting dates.

**Price:** 5 credits

**⚠️ Common errors:** 412: Job not found



## OpenAPI

````yaml /openapi/jobs.json post /api/builtin/jobs
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/builtin/jobs:
    post:
      tags:
        - /builtin
      summary: /builtin/jobs
      description: >-
        Get full details of a Built In job posting by its id or URL: title, full
        description, summary, company, locations, remote/hybrid/on-site flags,
        seniority, salary range, industries, required skills, requirements,
        employment type, benefits, the external apply link, and posting dates.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Job not found
      operationId: __api_builtin_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BuiltinJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BuiltinJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BuiltinJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        job:
          type: string
          minLength: 1
      type: object
      required:
        - job
    BuiltinJob:
      properties:
        '@type':
          type: string
          default: BuiltinJob
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        company:
          anyOf:
            - type: string
            - type: 'null'
        company_id:
          anyOf:
            - type: integer
            - type: 'null'
        company_alias:
          anyOf:
            - type: string
            - type: 'null'
        company_image:
          anyOf:
            - type: string
            - type: 'null'
        company_size:
          anyOf:
            - type: integer
            - type: 'null'
        location_text:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            $ref: '#/components/schemas/BuiltinJobLocation'
          type: array
          default: []
        is_remote:
          anyOf:
            - type: boolean
            - type: 'null'
        is_hybrid:
          anyOf:
            - type: boolean
            - type: 'null'
        is_on_site:
          anyOf:
            - type: boolean
            - type: 'null'
        seniority:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: integer
            - type: 'null'
        salary:
          anyOf:
            - $ref: '#/components/schemas/BuiltinJobSalary'
            - type: 'null'
        industries:
          items:
            type: string
          type: array
          default: []
        skills:
          items:
            type: string
          type: array
          default: []
        requirements:
          items:
            type: string
          type: array
          default: []
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        is_easy_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
        apply_count:
          anyOf:
            - type: integer
            - type: 'null'
        external_source:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        valid_through:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        benefits:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BuiltinJobLocation:
      properties:
        '@type':
          type: string
          default: BuiltinJobLocation
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    BuiltinJobSalary:
      properties:
        '@type':
          type: string
          default: BuiltinJobSalary
        min_value:
          anyOf:
            - type: integer
            - type: 'null'
        max_value:
          anyOf:
            - type: integer
            - type: 'null'
        period:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````