Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atticus64/bibleapi
https://bible-api.deno.dev/api/
https://github.com/atticus64/bibleapi
api bible bible-api bible-app bible-study deno typescript
Last synced: 3 months ago
JSON representation
https://bible-api.deno.dev/api/
- Host: GitHub
- URL: https://github.com/atticus64/bibleapi
- Owner: Atticus64
- Created: 2023-07-20T05:16:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-12T23:35:49.000Z (6 months ago)
- Last Synced: 2024-08-13T21:28:23.659Z (6 months ago)
- Topics: api, bible, bible-api, bible-app, bible-study, deno, typescript
- Language: TypeScript
- Homepage: https://docs-bible-api.netlify.app
- Size: 17.2 MB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bible API
> [!NOTE]
> This api is still in development, if you found an bug or want to request for documentation. create a issue in this repository## Endpoints
_Get chapter book_
`/api/read////`
`/api/read/rv1960//`
- Examples
https://bible-api.deno.dev/api/read/rv1960/genesis/1
GET `/api/read/rv1960/genesis/1`
GET `/api/read/nvi/apocalipsis/22`
### Search query
`api/read//search?q=Dios&testament=old&take=5&page=4`
_query is required_
```ts
interface Parameters {
q: string
testament?: string
take?: number
page?: number
}
```- Examples
https://bible-api.deno.dev/api/read/nvi/search?q=Dios
GET `api/nvi/read/search?q=Dios&page=2`
GET `api/nvi/read/search?q=Dios&page=2&take=3`
## Dev server
```
deno task dev
```## Scrape
```
deno task scrape
```