action bhagavadgita_get_api_v1_chapters_chapter_number_verses { label: "Get all the Verses from a Chapter." description: "Get a list of all Verses from a particular Chapter.
" provider: bhagavadgita method: GET path: "/api/v1/chapters/{chapter_number}/verses" encoding: json input: { type: "object" properties: { access_token: { type: "string" } chapter_number: { type: "integer" enum: [1, 2, 3] } language: { type: "string" enum: ["hi"] } } required: ["access_token", "chapter_number"] additionalProperties: false } output: { type: "object" properties: { meaning: { type: "string" } text: { type: "string" } transliteration: { type: "string" } verse_number: { type: "string" } word_meanings: { type: "string" } } } }