# GET Listar Contexto Grau Instrução
#### **Introdução**
Retorna uma lista com diversas opções de grau de instrução, que podem ser utilizadas na proposta.
---
##### ***Rota***
```css
/Contexto/grau-instrucao
```
#### ***Authorization***
É necessário um token de autorização do tipo **Bearer Token**. O token deve ser fornecido da seguinte forma:
##### ***Headers Request***
accept | application/json |
Content-Type | application/json |
#### **Exemplo de Requisição e Resposta**
---
##### ***Exemplo de Request***
curl
```bash
curl --location 'https://app2-crefaz-api-external-stag.azurewebsites.net/api/Contexto/grau-instrucao' \
--header 'accept: application/json' \
--header 'Content-Type: application/json'
```
##### ***Exemplo de Response***
json
```json
{
"success": true,
"data": [
{
"id": 1,
"nome": "Fundamental Incompleto",
"ativo": true
},
{
"id": 2,
"nome": "Fundamental Completo",
"ativo": true
},
{
"id": 3,
"nome": "Médio Incompleto",
"ativo": true
},
{
"id": 4,
"nome": "Médio Completo",
"ativo": true
},
{
"id": 5,
"nome": "Graduação",
"ativo": true
},
{
"id": 6,
"nome": "Pós-Graduação",
"ativo": true
},
{
"id": 7,
"nome": "Mestrado",
"ativo": true
},
{
"id": 8,
"nome": "Doutorado",
"ativo": true
}
],
"errors": null
}
```
##### **Headers de Response (5)**
**Key** | **Valeu** |
Content-Type | application/json; charset=utf-8 |
Date | Fri, 04 Oct 2024 17:58:55 GMT |
Server | Kestrel |
Transfer-Encoding | chunked |
Request-Context | appId=cid-v1:d0033e30-cc70-4961-9727-b7389fb39348 |