GET
/
v1
curl --location --request GET 'https://api.lawg.dev/v1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>'
{
  "success": true,
  "data": {
    "message": "...heeeellloooo from v1 api"
  }
}

Response

success
boolean

Indicates whether the call was successful. true if successful, false if not.

data
object

The contents of the data object

curl --location --request GET 'https://api.lawg.dev/v1' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token <token>'
{
  "success": true,
  "data": {
    "message": "...heeeellloooo from v1 api"
  }
}