Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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/

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