Public
Documentation Settings

Larafast REST API

Larafast REST API with features like Auth, Social Auth, Payments - Stripe/LemonSqueezy, Blog, Admin Panel, Coming Soon and OpenAI Service.

Auth

Auth User

GETShow

{{url}}/api/user
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Accept

application/json

Content-Type

application/json

Example Request
curl
curl --location -g '{{url}}/api/user' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
200 OK
Example Response
json
{
  "data": {
    "id": 1,
    "name": "Sergey",
    "email": "karakhanyansa@gmail.com",
    "email_verified_at": null
  }
}
Server

nginx/1.25.4

Content-Type

application/json

Transfer-Encoding

chunked

Connection

keep-alive

Vary

Accept-Encoding

X-Powered-By

PHP/8.3.7

Cache-Control

no-cache, private

Date

Tue, 21 May 2024 15:33:33 GMT

Access-Control-Allow-Origin

http://localhost:3000

Access-Control-Allow-Credentials

true

Content-Encoding

gzip

PATCHUpdate

{{url}}/api/user
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Accept

application/json

Content-Type

application/json

Bodyurlencoded
name

Sergg

Example Request
curl
curl --location -g --request PATCH '{{url}}/api/user' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-urlencode 'name=Sergg'
200 OK
Example Response
json
{
  "data": {
    "id": 1,
    "name": "Sergg",
    "email": "karakhanyansa@gmail.com",
    "email_verified_at": null
  }
}
Server

nginx/1.25.4

Content-Type

application/json

Transfer-Encoding

chunked

Connection

keep-alive

Vary

Accept-Encoding

X-Powered-By

PHP/8.3.7

Cache-Control

no-cache, private

Date

Tue, 21 May 2024 15:33:40 GMT

Access-Control-Allow-Origin

http://localhost:3000

Access-Control-Allow-Credentials

true

Content-Encoding

gzip

DELETEDelete

{{url}}/api/user
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Accept

application/json

Content-Type

application/json

Example Request
curl
curl --location -g --request DELETE '{{url}}/api/user' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers