# Laravel

Here we have some demo APIs listed here -

## Register User

<mark style="color:green;">`POST`</mark> `http://crema-laravel.herokuapp.com/api/users`

This endpoint allows you to get free cakes.

#### Request Body

| Name     | Type   | Description              |
| -------- | ------ | ------------------------ |
| name     | string | Name of the user         |
| email    | string | Email of the user        |
| password | string | Password for the account |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiNWY0ZjE5ZWNjN2Y5ZGEwMDE3ZDg1YmFkIn0sImlhdCI6MTU5OTAxOTUwMSwiZXhwIjoxNTk5NDUxNTAxfQ.diJyrzPOY-FD7quqhbJ9D5sDdN8Oym40qqfgHoldpdg"
}
```

{% endtab %}

{% tab title="400 Could not find a cake matching this query." %}

```
{
    "error": "User already exists"
}
```

{% endtab %}
{% endtabs %}

## Login User

<mark style="color:green;">`POST`</mark> `http://crema-laravel.herokuapp.com/api/auth`

#### Request Body

| Name     | Type   | Description             |
| -------- | ------ | ----------------------- |
| email    | string | Email of the user       |
| password | string | Password of the account |

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

```
{
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiNWY0ZjE5ZWNjN2Y5ZGEwMDE3ZDg1YmFkIn0sImlhdCI6MTU5OTA3MDc3MCwiZXhwIjoxNTk5NTAyNzcwfQ.fK3L6ZmU8S7I-i21kJj_0sA212JOPgFaTWeSeAUaORQ"
}
```

{% endtab %}

{% tab title="400 " %}

```
{
    "error": "Invalid Credentials"
}
```

{% endtab %}
{% endtabs %}

## &#x20;Auth User

<mark style="color:blue;">`GET`</mark> `http://crema-laravel.herokuapp.com/api/auth`

#### Headers

| Name          | Type   | Description  |
| ------------- | ------ | ------------ |
| Authorization | string | Bearer token |

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

```
{
    "id": 4,
    "name": "Demo User",
    "email": "demo@ample.com",
    "email_verified_at": null,
    "created_at": "2020-09-03T04:25:55.000000Z",
    "updated_at": "2020-09-03T04:25:55.000000Z"
}
```

{% endtab %}
{% endtabs %}
