This API provides simple JSON-based information about me. It is under development and will be expanded with additional endpoints.
GET https://christofervilander.se/api/v1
GET https://christofervilander.se/api/v1/me
{
"message": "Welcome to API v1",
"endpoints": ["/api/v1/me"]
}
fetch("https://christofervilander.se/api/v1/me")
.then(res => res.json())
.then(data => console.log(data));