Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emrocode/guarani-myths-api
Explore the Guaraní myths
https://github.com/emrocode/guarani-myths-api
api api-rest guarani guarani-myths guarani-myths-api guaranies json mitologia mitos mitos-guaranies mythology myths
Last synced: 2 months ago
JSON representation
Explore the Guaraní myths
- Host: GitHub
- URL: https://github.com/emrocode/guarani-myths-api
- Owner: emrocode
- License: mit
- Created: 2022-11-14T20:54:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T15:32:45.000Z (4 months ago)
- Last Synced: 2024-09-06T18:38:18.934Z (4 months ago)
- Topics: api, api-rest, guarani, guarani-myths, guarani-myths-api, guaranies, json, mitologia, mitos, mitos-guaranies, mythology, myths
- Language: TypeScript
- Homepage: https://warani.vercel.app/api/v1/myths
- Size: 1.36 MB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Guaraní Myths
Explore _Guaraní_ myths through this API, which offers seamless access to a wealth of mythical narratives and cultural knowledge.## Example
```js
// v1
fetch("https://warani.vercel.app/api/v1/myths/1")
.then(res => res.json())
.then(data => console.log(data))// v2
fetch("https://warani.vercel.app/api/v2/myths?id=1")
.then(res => res.json())
.then(data => console.log(data))
```## Response
```json
{
"id": 1,
"name": "Taú and Keraná",
"description": "This causes deep sadness and...",
"image": "https://warani.vercel.app/images/...",
}
```## Features
- HTTPS
- Supports GET, PUT, POST and DELETE
- Supports languages [en, es] (note: not supported in v1 requests)
- [Report an issue](https://github.com/emrocode/guarani-myths-api/issues)