Christofers API

This API provides simple JSON-based information about me. It is under development and will be expanded with additional endpoints.

Main endpoint

GET https://christofervilander.se/api/v1

Get my information

GET https://christofervilander.se/api/v1/me

Example response

{
  "message": "Welcome to API v1",
  "endpoints": ["/api/v1/me"]
}

JavaScript example

fetch("https://christofervilander.se/api/v1/me")
  .then(res => res.json())
  .then(data => console.log(data));