Holy Bible API Documentation

GetBooks

allBooks

Get List Of All Books.


/GetBooks

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/holybible/GetBooks"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetBooksApi;

import java.io.File;
import java.util.*;

public class GetBooksApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        GetBooksApi apiInstance = new GetBooksApi();
        String apiecoKey = apiecoKey_example; // String | 
        try {
            inline_response_200 result = apiInstance.allBooks(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetBooksApi#allBooks");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetBooksApi;

public class GetBooksApiExample {

    public static void main(String[] args) {
        GetBooksApi apiInstance = new GetBooksApi();
        String apiecoKey = apiecoKey_example; // String | 
        try {
            inline_response_200 result = apiInstance.allBooks(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetBooksApi#allBooks");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 

GetBooksApi *apiInstance = [[GetBooksApi alloc] init];

[apiInstance allBooksWith:apiecoKey
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HolyBibleApiDocumentation = require('holy_bible_api_documentation');
var defaultClient = HolyBibleApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new HolyBibleApiDocumentation.GetBooksApi()

var apiecoKey = apiecoKey_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.allBooks(apiecoKey, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class allBooksExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new GetBooksApi();
            var apiecoKey = apiecoKey_example;  // String | 

            try
            {
                inline_response_200 result = apiInstance.allBooks(apiecoKey);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GetBooksApi.allBooks: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\GetBooksApi();
$apiecoKey = apiecoKey_example; // String | 

try {
    $result = $api_instance->allBooks($apiecoKey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetBooksApi->allBooks: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetBooksApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::GetBooksApi->new();
my $apiecoKey = apiecoKey_example; # String | 

eval { 
    my $result = $api_instance->allBooks(apiecoKey => $apiecoKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetBooksApi->allBooks: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.GetBooksApi()
apiecoKey = apiecoKey_example # String | 

try: 
    api_response = api_instance.all_books(apiecoKey)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetBooksApi->allBooks: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


GetChapter

chaptersByBook

Get Chapters of The specified Book


/GetChapter

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/holybible/GetChapter?Book=&chapter="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetChapterApi;

import java.io.File;
import java.util.*;

public class GetChapterApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        GetChapterApi apiInstance = new GetChapterApi();
        String apiecoKey = apiecoKey_example; // String | 
        String book = book_example; // String | enter one of the books from Bible.
        BigDecimal chapter = 8.14; // BigDecimal | Enter chapter number from given book.
        try {
            inline_response_200_1 result = apiInstance.chaptersByBook(apiecoKey, book, chapter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetChapterApi#chaptersByBook");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetChapterApi;

public class GetChapterApiExample {

    public static void main(String[] args) {
        GetChapterApi apiInstance = new GetChapterApi();
        String apiecoKey = apiecoKey_example; // String | 
        String book = book_example; // String | enter one of the books from Bible.
        BigDecimal chapter = 8.14; // BigDecimal | Enter chapter number from given book.
        try {
            inline_response_200_1 result = apiInstance.chaptersByBook(apiecoKey, book, chapter);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetChapterApi#chaptersByBook");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *book = book_example; // enter one of the books from Bible.
BigDecimal *chapter = 8.14; // Enter chapter number from given book.

GetChapterApi *apiInstance = [[GetChapterApi alloc] init];

[apiInstance chaptersByBookWith:apiecoKey
    book:book
    chapter:chapter
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HolyBibleApiDocumentation = require('holy_bible_api_documentation');
var defaultClient = HolyBibleApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new HolyBibleApiDocumentation.GetChapterApi()

var apiecoKey = apiecoKey_example; // {String} 

var book = book_example; // {String} enter one of the books from Bible.

var chapter = 8.14; // {BigDecimal} Enter chapter number from given book.


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.chaptersByBook(apiecoKey, book, chapter, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class chaptersByBookExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new GetChapterApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var book = book_example;  // String | enter one of the books from Bible.
            var chapter = 8.14;  // BigDecimal | Enter chapter number from given book.

            try
            {
                inline_response_200_1 result = apiInstance.chaptersByBook(apiecoKey, book, chapter);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GetChapterApi.chaptersByBook: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\GetChapterApi();
$apiecoKey = apiecoKey_example; // String | 
$book = book_example; // String | enter one of the books from Bible.
$chapter = 8.14; // BigDecimal | Enter chapter number from given book.

try {
    $result = $api_instance->chaptersByBook($apiecoKey, $book, $chapter);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetChapterApi->chaptersByBook: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetChapterApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::GetChapterApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $book = book_example; # String | enter one of the books from Bible.
my $chapter = 8.14; # BigDecimal | Enter chapter number from given book.

eval { 
    my $result = $api_instance->chaptersByBook(apiecoKey => $apiecoKey, book => $book, chapter => $chapter);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetChapterApi->chaptersByBook: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.GetChapterApi()
apiecoKey = apiecoKey_example # String | 
book = book_example # String | enter one of the books from Bible.
chapter = 8.14 # BigDecimal | Enter chapter number from given book.

try: 
    api_response = api_instance.chapters_by_book(apiecoKey, book, chapter)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetChapterApi->chaptersByBook: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
Book*
String
enter one of the books from Bible.
Required
chapter*
BigDecimal
Enter chapter number from given book.
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


GetVerses

versesByBook

Get Verses of The specified Book


/GetVerses

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/holybible/GetVerses?Book=&chapter=&VerseFrom=&VerseTo="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetVersesApi;

import java.io.File;
import java.util.*;

public class GetVersesApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        GetVersesApi apiInstance = new GetVersesApi();
        String apiecoKey = apiecoKey_example; // String | 
        String book = book_example; // String | enter one of the books from Bible.
        BigDecimal chapter = 8.14; // BigDecimal | Enter chapter number from given book.
        BigDecimal verseFrom = 8.14; // BigDecimal | Enter Verse to start.
        BigDecimal verseTo = 8.14; // BigDecimal | Enter Verse to End.
        try {
            inline_response_200_2 result = apiInstance.versesByBook(apiecoKey, book, chapter, verseFrom, verseTo);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetVersesApi#versesByBook");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetVersesApi;

public class GetVersesApiExample {

    public static void main(String[] args) {
        GetVersesApi apiInstance = new GetVersesApi();
        String apiecoKey = apiecoKey_example; // String | 
        String book = book_example; // String | enter one of the books from Bible.
        BigDecimal chapter = 8.14; // BigDecimal | Enter chapter number from given book.
        BigDecimal verseFrom = 8.14; // BigDecimal | Enter Verse to start.
        BigDecimal verseTo = 8.14; // BigDecimal | Enter Verse to End.
        try {
            inline_response_200_2 result = apiInstance.versesByBook(apiecoKey, book, chapter, verseFrom, verseTo);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetVersesApi#versesByBook");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *book = book_example; // enter one of the books from Bible.
BigDecimal *chapter = 8.14; // Enter chapter number from given book.
BigDecimal *verseFrom = 8.14; // Enter Verse to start.
BigDecimal *verseTo = 8.14; // Enter Verse to End.

GetVersesApi *apiInstance = [[GetVersesApi alloc] init];

[apiInstance versesByBookWith:apiecoKey
    book:book
    chapter:chapter
    verseFrom:verseFrom
    verseTo:verseTo
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HolyBibleApiDocumentation = require('holy_bible_api_documentation');
var defaultClient = HolyBibleApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new HolyBibleApiDocumentation.GetVersesApi()

var apiecoKey = apiecoKey_example; // {String} 

var book = book_example; // {String} enter one of the books from Bible.

var chapter = 8.14; // {BigDecimal} Enter chapter number from given book.

var verseFrom = 8.14; // {BigDecimal} Enter Verse to start.

var verseTo = 8.14; // {BigDecimal} Enter Verse to End.


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.versesByBook(apiecoKey, book, chapter, verseFrom, verseTo, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class versesByBookExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new GetVersesApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var book = book_example;  // String | enter one of the books from Bible.
            var chapter = 8.14;  // BigDecimal | Enter chapter number from given book.
            var verseFrom = 8.14;  // BigDecimal | Enter Verse to start.
            var verseTo = 8.14;  // BigDecimal | Enter Verse to End.

            try
            {
                inline_response_200_2 result = apiInstance.versesByBook(apiecoKey, book, chapter, verseFrom, verseTo);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GetVersesApi.versesByBook: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\GetVersesApi();
$apiecoKey = apiecoKey_example; // String | 
$book = book_example; // String | enter one of the books from Bible.
$chapter = 8.14; // BigDecimal | Enter chapter number from given book.
$verseFrom = 8.14; // BigDecimal | Enter Verse to start.
$verseTo = 8.14; // BigDecimal | Enter Verse to End.

try {
    $result = $api_instance->versesByBook($apiecoKey, $book, $chapter, $verseFrom, $verseTo);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetVersesApi->versesByBook: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetVersesApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::GetVersesApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $book = book_example; # String | enter one of the books from Bible.
my $chapter = 8.14; # BigDecimal | Enter chapter number from given book.
my $verseFrom = 8.14; # BigDecimal | Enter Verse to start.
my $verseTo = 8.14; # BigDecimal | Enter Verse to End.

eval { 
    my $result = $api_instance->versesByBook(apiecoKey => $apiecoKey, book => $book, chapter => $chapter, verseFrom => $verseFrom, verseTo => $verseTo);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetVersesApi->versesByBook: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.GetVersesApi()
apiecoKey = apiecoKey_example # String | 
book = book_example # String | enter one of the books from Bible.
chapter = 8.14 # BigDecimal | Enter chapter number from given book.
verseFrom = 8.14 # BigDecimal | Enter Verse to start.
verseTo = 8.14 # BigDecimal | Enter Verse to End.

try: 
    api_response = api_instance.verses_by_book(apiecoKey, book, chapter, verseFrom, verseTo)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetVersesApi->versesByBook: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
Book*
String
enter one of the books from Bible.
Required
chapter*
BigDecimal
Enter chapter number from given book.
Required
VerseFrom*
BigDecimal
Enter Verse to start.
Required
VerseTo*
BigDecimal
Enter Verse to End.
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


GetVersesOfAChapter

versesByChapter

Get Verses of The specified Chapter


/GetVerseOfaChapter

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/holybible/GetVerseOfaChapter?Book=&chapter=&Verse="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetVersesOfAChapterApi;

import java.io.File;
import java.util.*;

public class GetVersesOfAChapterApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        GetVersesOfAChapterApi apiInstance = new GetVersesOfAChapterApi();
        String apiecoKey = apiecoKey_example; // String | 
        String book = book_example; // String | enter one of the books from Bible.
        BigDecimal chapter = 8.14; // BigDecimal | Enter chapter number from given book.
        BigDecimal verse = 8.14; // BigDecimal | Enter Verse number
        try {
            inline_response_200_3 result = apiInstance.versesByChapter(apiecoKey, book, chapter, verse);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetVersesOfAChapterApi#versesByChapter");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetVersesOfAChapterApi;

public class GetVersesOfAChapterApiExample {

    public static void main(String[] args) {
        GetVersesOfAChapterApi apiInstance = new GetVersesOfAChapterApi();
        String apiecoKey = apiecoKey_example; // String | 
        String book = book_example; // String | enter one of the books from Bible.
        BigDecimal chapter = 8.14; // BigDecimal | Enter chapter number from given book.
        BigDecimal verse = 8.14; // BigDecimal | Enter Verse number
        try {
            inline_response_200_3 result = apiInstance.versesByChapter(apiecoKey, book, chapter, verse);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetVersesOfAChapterApi#versesByChapter");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *book = book_example; // enter one of the books from Bible.
BigDecimal *chapter = 8.14; // Enter chapter number from given book.
BigDecimal *verse = 8.14; // Enter Verse number

GetVersesOfAChapterApi *apiInstance = [[GetVersesOfAChapterApi alloc] init];

[apiInstance versesByChapterWith:apiecoKey
    book:book
    chapter:chapter
    verse:verse
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var HolyBibleApiDocumentation = require('holy_bible_api_documentation');
var defaultClient = HolyBibleApiDocumentation.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new HolyBibleApiDocumentation.GetVersesOfAChapterApi()

var apiecoKey = apiecoKey_example; // {String} 

var book = book_example; // {String} enter one of the books from Bible.

var chapter = 8.14; // {BigDecimal} Enter chapter number from given book.

var verse = 8.14; // {BigDecimal} Enter Verse number


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.versesByChapter(apiecoKey, book, chapter, verse, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class versesByChapterExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new GetVersesOfAChapterApi();
            var apiecoKey = apiecoKey_example;  // String | 
            var book = book_example;  // String | enter one of the books from Bible.
            var chapter = 8.14;  // BigDecimal | Enter chapter number from given book.
            var verse = 8.14;  // BigDecimal | Enter Verse number

            try
            {
                inline_response_200_3 result = apiInstance.versesByChapter(apiecoKey, book, chapter, verse);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling GetVersesOfAChapterApi.versesByChapter: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\GetVersesOfAChapterApi();
$apiecoKey = apiecoKey_example; // String | 
$book = book_example; // String | enter one of the books from Bible.
$chapter = 8.14; // BigDecimal | Enter chapter number from given book.
$verse = 8.14; // BigDecimal | Enter Verse number

try {
    $result = $api_instance->versesByChapter($apiecoKey, $book, $chapter, $verse);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetVersesOfAChapterApi->versesByChapter: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetVersesOfAChapterApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::GetVersesOfAChapterApi->new();
my $apiecoKey = apiecoKey_example; # String | 
my $book = book_example; # String | enter one of the books from Bible.
my $chapter = 8.14; # BigDecimal | Enter chapter number from given book.
my $verse = 8.14; # BigDecimal | Enter Verse number

eval { 
    my $result = $api_instance->versesByChapter(apiecoKey => $apiecoKey, book => $book, chapter => $chapter, verse => $verse);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetVersesOfAChapterApi->versesByChapter: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.GetVersesOfAChapterApi()
apiecoKey = apiecoKey_example # String | 
book = book_example # String | enter one of the books from Bible.
chapter = 8.14 # BigDecimal | Enter chapter number from given book.
verse = 8.14 # BigDecimal | Enter Verse number

try: 
    api_response = api_instance.verses_by_chapter(apiecoKey, book, chapter, verse)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetVersesOfAChapterApi->versesByChapter: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
Book*
String
enter one of the books from Bible.
Required
chapter*
BigDecimal
Enter chapter number from given book.
Required
Verse*
BigDecimal
Enter Verse number
Required

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input