获取圣经目录(书卷和章节列表)

请求URL

/bibleBook/getBibleCatalog GET POST

请求体 application/json

{
	"versionId":"string //圣经版本ID,默认为\"CUV\"(和合本)"
}

返回结果

[{
	"bookId":"string //书卷ID",
	"name":"string //书卷名称",
	"abbreviation":"string //书卷缩写",
	"testament":"string //所属约(新约/旧约)",
	"order":"int //顺序",
	"chapters":[{
		"chapterId":"string //章节ID",
		"number":"int //章节号",
		"reference":"string //引用"
	}]
}]

获取经文详情(按章节)

请求URL

/bibleBook/getVersesByChapter GET POST

请求体 application/json

{
	"chapterId":"string //章节ID"
}

返回结果

[{
	"verseId":"string //经文ID",
	"number":"int //经文号",
	"reference":"string //引用",
	"text":"string //内容"
}]

获取经文详情(按经文ID)

请求URL

/bibleBook/getVerseDetail GET POST

请求体 application/json

{
	"verseId":"string //经文ID"
}

返回结果

{
	"verseId":"string //经文ID",
	"number":"int //经文号",
	"reference":"string //引用",
	"text":"string //内容"
}