Read is sometimes boring, making HTTP requests is always awesome. The challenge is getting to know me using requests to this API. You ready?
I'll help you with the first endpoint: general informations about me.
GET /api/infos/general
The base URL for all endpoints is https://raw.githubusercontent.com/gabrielrufino/gabrielrufino/master
. Remember to preffix the endpoint using that base URL.
Let's make the request using curl
:
Request:
BASE_URL="https://raw.githubusercontent.com/gabrielrufino/gabrielrufino/master"
curl $BASE_URL/api/infos/general \
-H "Accept: application/json"
Method | Endpoint | Description |
---|---|---|
GET | /api/infos/general |
Returns general information about me |
GET | /api/infos/stack |
Returns the list of technologies that I work with |
GET | /api/infos/hobbies |
Returns the list of things I love to do when I'm not programming |
GET | /api/infos/contact |
Returns the list of ways you can talk to me |