Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gabrielrufino/gabrielrufino


https://github.com/gabrielrufino/gabrielrufino

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

## Gabriel Rufino's API

Octocat

Read is sometimes boring, making HTTP requests is always awesome. **The challenge is getting to know me using requests to this API.** You ready?

### Getting started

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:**
```bash
BASE_URL="https://raw.githubusercontent.com/gabrielrufino/gabrielrufino/master"
curl $BASE_URL/api/infos/general \
-H "Accept: application/json"
```

### Endpoints

| 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 |

---