List States

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 /dominios/paises/{pais_id}/estados

List the states of given country

Path parameters

  • pais_id integer Required

    Country id

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id integer
    • nome string

      Name

    • descricao string

      Description

    • sigla string

      State acronym

GET /dominios/paises/{pais_id}/estados
curl \
 --request GET 'https://apigateway.vagas.com.br/v1/dominios/paises/999/estados' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": 999,
    "nome": "nome de identificação",
    "descricao": "Uma descrição",
    "sigla": "SP"
  }
]