# Ver Información Guia

## Get Info Servicio

<mark style="color:blue;">`GET`</mark> `https://www.rapigo.co/api/v1/get_service_status`

#### Query Parameters

| Name | Type   | Description      |
| ---- | ------ | ---------------- |
| key  | string | key del servicio |

#### Headers

| Name           | Type   | Description      |
| -------------- | ------ | ---------------- |
| Authentication | string | Token Basic Auth |

{% tabs %}
{% tab title="200 Servicio encontrado

Valores de status:

* Buscando mensajero
* Mensajero en camino
* Termino Servicio
* Cancelo Servicio
* Servicio Programado" %}

```javascript
{
    "status": "Buscando Mensajero",
    "courier": {
        "name" : "Name",
        "phone" : "phone",
        "lat": "",
        "lon": ""
    }
}
```

{% endtab %}

{% tab title="404 Guia no fue encontrada" %}

```javascript
{
    "detail": "Not found."
}
```

{% endtab %}
{% endtabs %}
