Buk

Buk Vacation Policies API

The Vacation Policies API from Buk — 1 operation(s) for vacation policies.

Operations 1

GET /vacation_definitions List Vacation Policies

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/buk-vacation-policies-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

buk-vacation-policies-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Buk Vacation Policies API
  version: '1.0'
  description: 'Operations tagged Vacation Policies across 5 of this provider''s published API definitions: buk-data-access-api-brasil-openapi.yml, buk-data-access-api-chile-openapi.yml, buk-data-access-api-colombia-openapi.yml, buk-data-access-api-mexico-openapi.yml, buk-data-access-api-peru-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://demo.buk.cl/api/v1/chile
  description: Base URL declared by the provider in apis.yml (roadmap#122).
host: demo.buk.cl
tags:
- name: Vacation Policies
paths:
  /vacation_definitions:
    get:
      summary: List Vacation Policies
      description: "Displays all vacation policies and their associated vacation type.\n\n**Permisos requeridos para utilizar este endpoint:** \n* Vacation permissions en: 'Lectura'.\n"
      tags:
      - Vacation Policies
      parameters:
      - name: page_size
        in: query
        type: integer
        description: (OPTIONAL) Number of answers per page. By default it has a value of 25 and must be within a range of [25 - 100].
      - name: page
        in: query
        type: integer
        description: (OPTIONAL) Page number
      responses:
        '200':
          description: As a response, we receive a list of available vacation policies.
          schema:
            $ref: '#/definitions/VacationDefinitionOutput'
        '400':
          description: There is an error with the data submitted
          schema:
            $ref: '#/definitions/bad_request'
definitions:
  VacationDefinitionOutput:
    properties:
      vacation_definitions:
        type: array
        description: Lista de políticas de vacaciones
        example: []
        items:
          $ref: '#/definitions/VacationDefinition'
  VacationDefinition:
    properties:
      id:
        type: integer
        description: ID de la política de vacaciones
        example: 1
      code:
        type: string
        description: Código de la política
        example: legales
      name:
        type: string
        description: Nombre de la política de vacaciones
        example: Vacaciones legales
      vacation_type:
        type: object
        $ref: '#/definitions/VacationType'
        description: Tipo de vacación asociado
        example:
          name: Legales
          code: legales
  bad_request:
    properties:
      errors:
        type: array
        items:
          type: string
  VacationType:
    properties:
      name:
        type: string
        description: Nombre del tipo de vacación
        example: Legales
      code:
        type: string
        description: Código del tipo de vacación
        example: legales
securityDefinitions:
  auth_token:
    type: apiKey
    name: auth_token
    in: header
x-refined-from:
- buk-data-access-api-brasil-openapi.yml
- buk-data-access-api-chile-openapi.yml
- buk-data-access-api-colombia-openapi.yml
- buk-data-access-api-mexico-openapi.yml
- buk-data-access-api-peru-openapi.yml