action bhagavadgita_get_api_v1_verses { label: "Get all the Verses." description: "Get a list of all Verses.
" provider: bhagavadgita method: GET path: "/api/v1/verses" encoding: json input: { type: "object" properties: { access_token: { type: "string" } language: { type: "string" enum: ["hi"] } } required: ["access_token"] additionalProperties: false } output: { type: "object" properties: { meaning: { type: "string" } text: { type: "string" } transliteration: { type: "string" } verse_number: { type: "string" } word_meanings: { type: "string" } } } }