Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielrufino/gabrielrufino
https://github.com/gabrielrufino/gabrielrufino
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gabrielrufino/gabrielrufino
- Owner: gabrielrufino
- License: unlicense
- Created: 2020-07-18T22:07:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T11:02:08.000Z (26 days ago)
- Last Synced: 2024-10-21T15:50:22.129Z (25 days ago)
- Size: 529 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Gabriel Rufino's API
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 |---