action bhagavadgita_get_api_v1_chapters { label: "Get all the 18 Chapters of the Bhagavad Gita." description: "Get a list of all the 18 Chapters of the Bhagavad Gita.
" provider: bhagavadgita method: GET path: "/api/v1/chapters" encoding: json input: { type: "object" properties: { access_token: { type: "string" } language: { type: "string" enum: ["hi"] } } required: ["access_token"] additionalProperties: false } output: { type: "object" properties: { chapter_number: { type: "integer" format: "int32" } chapter_summary: { type: "string" } name: { type: "string" } name_meaning: { type: "string" } name_translation: { type: "string" } name_transliterated: { type: "string" } verses_count: { type: "integer" format: "int32" } } } }