Skip to main content
GET
/
api
/
v1
/
hello
Verify API connectivity and authentication
curl --request GET \
  --url https://dev.namify.host/api/v1/hello \
  --header 'Authorization: Bearer <token>'
{
  "server_time": "2026-03-09 12:00:00",
  "message": "Authorized"
}

Authorizations

Authorization
string
header
required

A personal access token. Obtain one from the dashboard under Settings > API Key. Include it in the Authorization header as Bearer <token>. Unauthenticated requests to protected routes return 401 Unauthorized.

Response

Authentication successful. Returns server time and a confirmation message.

server_time
string

Current date and time on the API server (YYYY-MM-DD HH:MM:SS).

Example:

"2026-03-09 12:00:00"

message
string

Confirmation message indicating the request was authenticated successfully.

Example:

"Authorized"