List Job Models

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://vaas.vag.as/doc/publicacao-vagas-en/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "publicacao-vagas-en MCP server": {
    "url": "https://vaas.vag.as/doc/publicacao-vagas-en/mcp"
  }
}

Close
GET /v1/job-posting/job_models

List jobs that can be used as template in the job creation

Query parameters

  • pagina integer

    Page to request

    Default value is 1.

  • tamanho_pagina integer

    Records per page

    Default value is 10.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • total integer

      Total

    • total_paginas integer

      Total pages

    • pagina_atual integer

      Current page

    • anuncios array[object]

      Job models

      Hide anuncios attributes Show anuncios attributes object
      • id integer
      • descricao string

        Description

      • data_criacao string

        Created at

      • titulo string

        Title

GET /v1/job-posting/job_models
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/v1/job-posting/job_models' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "total": 173,
    "total_paginas": 18,
    "pagina_atual": 5,
    "anuncios": [
      {
        "id": 999,
        "descricao": "Uma descrição",
        "data_criacao": "2021-09-03T16:58:48-03:00",
        "titulo": "Analista Suporte Teste Aline"
      }
    ]
  }
]