Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
asaferamos committed Sep 19, 2018
2 parents f30a636 + 98b1241 commit 6ef9887
Showing 1 changed file with 32 additions and 20 deletions.
52 changes: 32 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,35 @@ API construída a partir de parsing da página de rastreio dos Correios.


## Utilização
Adicione o código de rastreio na url:
`http://localhost/correios/RE999999999BR`

#### Retorno

[
{
"date": "12/01/2013",
"hour": "18:35",
"location": "Goiânia - GO",
"label": "Objeto entregue ao destinatário"
},
{
"date": "12/12/2012",
"hour": "12:12",
"location": "Valparaíso - GO",
"label": "Objeto postado"
}

]

```
$Correios = new \Baru\Correios\RastreioParser();
$Correios->setCode('RE999999999BR');
//Último evento
$Evento = $Correios->getEventLast();
//Lista todos eventos
$Eventos = $Correios->getEventsList();
```

#### Evento
Label
`$evento->getLabel();`
> _Objeto postado_
---
Location
`$evento->getLocation();`
> _Goiânia / GO_
---
Date
`$evento->getDate();`
> _12/12/2012_
---
Hour
`$evento->getHour();`
> _12:12_
---
Description
`$evento->getDescription();`
> _de Unidade de Distribuição em SUMARE / SP para Agência dos Correios em SUMARE / SP_

0 comments on commit 6ef9887

Please sign in to comment.