Listar Fichas

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-pt/mcp

Standard setup for AI tools providing an mcp.json file

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

Close
GET /job-posting/forms

Query parameters

  • pagina integer

    Página desejada pelo cliente

    Default value is 1.

  • tamanho_pagina integer

    Quantidade de registros por página

    Default value is 10.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • total integer
    • total_paginas integer
    • pagina_atual integer
    • tamanho_pagina integer
    • fichas array[object]
      Hide fichas attributes Show fichas attributes object
      • id integer
      • identificacao string
GET /job-posting/forms
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/job-posting/forms' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "total": 173,
  "total_paginas": 18,
  "pagina_atual": 5,
  "tamanho_pagina": 10,
  "fichas": [
    {
      "id": 312065,
      "identificacao": "Teste de língua portuguesa - VAGAS - Resultado"
    }
  ]
}