Logo Lanfrica

abdiu34567/Bible-Api

Domaine:

natural language processing

Type de record:

software
Créateur:
abd
Hôte:
Oromo, Amharic, English KJV bible API. # Bible API Documentation Welcome to the Bible API! This API provides access to the English KJV, Oromo, and Amhara versions of the Bible. You can use the provided endpoints to access various details and verses from the Bible. ## Base URL The base URL for the API is: `bible-api-kappa.vercel.app/` ## Endpoints ### 1. List all Book IDs Endpoint: `GET api/v1/listbookids` Description: This endpoint allows you to retrieve a list of all book IDs available in the Bible versions. Example Request: ``` GET bible-api-kappa.vercel.app ``` Example Response: ```json { "status": 200, "message": "Success", "version": "1.0", "data": [ { "books": { "1": "GEN", "2": "EXO", "3": "LEV", "4": "NUM", "5": "DEU", "6": "JOS", "7": "JDG", "8": "RUT", "9": "1SA", "10": "2SA", "11": "1KI", "12": "2KI", "13": "1CH", "14": "2CH", "15": "EZR", "16": "NEH", "17": "EST", "18": "JOB", "19": "PSA", "20": "PRO", "21": "ECC", "22": "SNG", "23": "ISA", "24": "JER", "25": "LAM", "26": "EZK", "27": "DAN", "28": "HOS", "29": "AMO", "30": "MIC", "31": "JOL", "32": "OBA", "33": "JON", "34": "NAM", "35": "HAB", "36": "ZEP", "37": "HAG", "38": "ZEC", "39": "MAL", "40": "MAT", "41": "MRK", "42": "LUK", "43": "JHN", "44": "ACT", "45": "ROM", "46": "1CO", "47": "2CO", "48": "GAL", "49": "EPH", "50": "PHP", "51": "COL", "52": "1TH", "53": "2TH", "54": "1TI", "55": "2TI", "56": "TIT", "57": "PHM", "58": "HEB", "59": "1PE", "60": "2PE", "61": "1JN", "62": "2JN", "63": "3JN", "64": "JAS", "65": "JUD", "66": "REV" } } ] } ``` ### 2. Get Book Information Endpoint: `GET api/v1/book/info/:bookid` Description: This endpoint provides information regarding how many total chapters the book includes and how many verses each chapter includes. Parameters: - `:bookid` (string) - The ID of the book (e.g., "GEN" for Genesis, "EXO" for Exodus, etc.) Example Request: ``` GET bible-api-kappa.vercel.app ``` Example Response: ```json { "status": 200, "message": "Success", "vers …