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

# Get categories

> Get a paginated list of jobs



## OpenAPI

````yaml get /api/v2/jobs/categories
openapi: 3.0.1
info:
  title: HireHive Jobs API
  description: >-
    API to get a paginated list of published jobs. You can also get a job by Id
    or a list of categories with the count of published jobs in those
    categories.<br>This will return live data. If your company does not have any
    published positions you can use our test account to play around with our
    API. <a
    href="https://hirehive-testing-account.hirehive.com/api-documentation/v2">Use
    HireHive test account</a> <br><a
    href="https://codepen.io/collection/XEWQqY/" target="_blank">View Codepen
    Examples</a>
  termsOfService: https://www.hirehive.com/terms-of-service/
  contact:
    email: support@hirehive.com
  version: v2
servers:
  - url: https://hirehive-testing-account.hirehive.com
security: []
paths:
  /api/v2/jobs/categories:
    get:
      tags:
        - JobsAPIV2
      summary: Gets a list of categories with the published job count in the category
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CategoryGroup'
components:
  schemas:
    CategoryGroup:
      type: object
      properties:
        name:
          type: string
          nullable: true
        count:
          type: integer
          format: int32
      additionalProperties: false

````