cURL
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '
{
"consulta": {
"identificador": "<string>",
"documento": "<string>"
}
}
'import requests
url = "https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF"
payload = { "consulta": {
"identificador": "<string>",
"documento": "<string>"
} }
headers = {
"IdempotencyKey": "<idempotencykey>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
IdempotencyKey: '<idempotencykey>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({consulta: {identificador: '<string>', documento: '<string>'}})
};
fetch('https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'consulta' => [
'identificador' => '<string>',
'documento' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"IdempotencyKey: <idempotencykey>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF"
payload := strings.NewReader("{\n \"consulta\": {\n \"identificador\": \"<string>\",\n \"documento\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("IdempotencyKey", "<idempotencykey>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF")
.header("IdempotencyKey", "<idempotencykey>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"consulta\": {\n \"identificador\": \"<string>\",\n \"documento\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["IdempotencyKey"] = '<idempotencykey>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"consulta\": {\n \"identificador\": \"<string>\",\n \"documento\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}Pessoa Física
28 - Processos Síncrona
cURL
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '
{
"consulta": {
"identificador": "<string>",
"documento": "<string>"
}
}
'import requests
url = "https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF"
payload = { "consulta": {
"identificador": "<string>",
"documento": "<string>"
} }
headers = {
"IdempotencyKey": "<idempotencykey>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
IdempotencyKey: '<idempotencykey>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({consulta: {identificador: '<string>', documento: '<string>'}})
};
fetch('https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'consulta' => [
'identificador' => '<string>',
'documento' => '<string>'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"IdempotencyKey: <idempotencykey>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF"
payload := strings.NewReader("{\n \"consulta\": {\n \"identificador\": \"<string>\",\n \"documento\": \"<string>\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("IdempotencyKey", "<idempotencykey>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF")
.header("IdempotencyKey", "<idempotencykey>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"consulta\": {\n \"identificador\": \"<string>\",\n \"documento\": \"<string>\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bmpdigital.moneyp.dev.br/Bureau/ProcessosPenaisPF")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["IdempotencyKey"] = '<idempotencykey>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"consulta\": {\n \"identificador\": \"<string>\",\n \"documento\": \"<string>\"\n }\n}"
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}{
"msg": "<string>",
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"hasError": true,
"falha": true,
"json": "<string>"
}Este endpoint permite consultar os dados de um processo de pessoa física, no formato de resposta rápida (Síncrono). A resposta é uma ‘String JSON’ serializada que inclui as seguintes informações:
- Ações judiciais: registros das ações em que a pessoa é parte;
- Histórico de atualizações: cronologia das atualizações do processo;
- Petições: petições protocoladas no processo;
- Decisões: decisões judiciais proferidas;
- Ações relacionadas: processos ou feitos conexos vinculados ao mesmo assunto.
Mostrar Exemplo de retorno completo
Mostrar Exemplo de retorno completo
O exemplo de retorno, mostrado no lado direito desta tela, está resumido. Na linha
"json": "<string>" o retorno do Bureau vem de forma serializada, sendo necessário deserializar para melhor visualização. Aqui está um exemplo do retorno deserializado que vem no campo "json":.{
"Erro": Boolean,
"MensagemOperador": "String",
"ResultadoConsulta": {
"Lawsuits": [
{
"Number": "String",
"Type": "String",
"MainSubject": "String",
"CourtName": "String",
"CourtLevel": "String",
"CourtType": "String",
"CourtDistrict": "String",
"Judge": null,
"JudgingBody": "",
"State": "String",
"Status": "String",
"LawsuitHostService": "String",
"InferredCnjSubjectName": "String",
"InferredCnjSubjectNumber": Numero,
"InferredCnjProcedureTypeName": null,
"InferredBroadCnjSubjectName": null,
"InferredBroadCnjSubjectNumber": Numero,
"OtherSubjects": [
"String"
],
"NumberOfVolumes": 0,
"NumberOfPages": Numero,
"Value": Numero,
"ResJudicataDate": "Data",
"CloseDate": "Data",
"RedistributionDate": "Data",
"PublicationDate": "Data",
"NoticeDate": "Data",
"LastMovementDate": "Data",
"CaptureDate": "Data",
"LastUpdate": "Data",
"NumberOfParties": Numero,
"NumberOfUpdates": Numero,
"LawSuitAge": Numero,
"AverageNumberOfUpdatesPerMonth": Numero,
"ReasonForConcealedData": Numero,
"Parties": [
{
"Doc": "String",
"IsPartyActive": Boolean,
"Name": "String",
"Polarity": "String",
"Type": "String",
"PartyDetails": {
"SpecificType": "String"
},
"LastCaptureDate": "Data"
}
],
"Updates": [
{
"Content": "String",
"PublishDate": "Data",
"CaptureDate": "Data"
}
],
"Petitions": [
{
"Type": "String",
"Author": "String",
"CreationDate": "Data",
"JoinedDate": "String"
}
],
"Decisions": [
{
"DecisionContent": "String",
"DecisionDate": "Data"
}
],
"RelatedLawsuits": [
"String"
],
}
],
"TotalLawsuits": Numero,
"TotalLawsuitsAsAuthor": Numero,
"TotalLawsuitsAsDefendant": Numero,
"TotalLawsuitsAsOther": Numero,
"FirstLawsuitDate": "Data",
"LastLawsuitDate": "Data",
"Last30DaysLawsuits": Numero,
"Last90DaysLawsuits": Numero,
"Last180DaysLawsuits": Numero,
"Last365DaysLawsuits": Numero,
"Identificador": "String",
"StatusConsulta": {
"Code": Numero,
"Message": "String"
},
"identificador": "String"
}
}
Autorizações
Informe o token
Cabeçalhos
Corpo
application/jsontext/jsonapplication/*+json
Show child attributes
Show child attributes
Esta página foi útil?
⌘I

