# Apibible.BiblesApi

All URIs are relative to *https://api.scripture.api.bible*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getBible**](BiblesApi.md#getBible) | **GET** /v1/bibles/{bibleId} | 
[**getBibles**](BiblesApi.md#getBibles) | **GET** /v1/bibles | 


<a name="getBible"></a>
# **getBible**
> InlineResponse2001 getBible(apiKey, bibleId)



Gets a single &#x60;Bible&#x60; for a given &#x60;bibleId&#x60; 

### Example
```javascript
var Apibible = require('apibible');

var apiInstance = new Apibible.BiblesApi();

var apiKey = "apiKey_example"; // String | API Key Authentication Parameter

var bibleId = "bibleId_example"; // String | Id of Bible to be fetched

apiInstance.getBible(apiKey, bibleId).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **apiKey** | **String**| API Key Authentication Parameter | 
 **bibleId** | **String**| Id of Bible to be fetched | 

### Return type

[**InlineResponse2001**](InlineResponse2001.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

<a name="getBibles"></a>
# **getBibles**
> InlineResponse200 getBibles(apiKey, , opts)



Gets an array of &#x60;Bible&#x60; objects authorized for current API Key 

### Example
```javascript
var Apibible = require('apibible');

var apiInstance = new Apibible.BiblesApi();

var apiKey = "apiKey_example"; // String | API Key Authentication Parameter

var opts = { 
  'language': "language_example", // String | ISO 639-3 three digit langage code used to filter results
  'abbreviation': "abbreviation_example", // String | Bible abbreviation to search for
  'name': "name_example" // String | Bible name to search for
};
apiInstance.getBibles(apiKey, , opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **apiKey** | **String**| API Key Authentication Parameter | 
 **language** | **String**| ISO 639-3 three digit langage code used to filter results | [optional] 
 **abbreviation** | **String**| Bible abbreviation to search for | [optional] 
 **name** | **String**| Bible name to search for | [optional] 

### Return type

[**InlineResponse200**](InlineResponse200.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

