action bhagavadgita_get_api_v1_chapters_chapter_number { label: "Get a specific chapter from the Bhagavad Gita." description: "Get information about a specific chapter from the Bhagavad Gita.
" provider: bhagavadgita method: GET path: "/api/v1/chapters/{chapter_number}" 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: { 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" } } } }