{ "title": "Get Secret Value", "description": "Retrieve one or more secret values by name via POST /get-secret-value.", "request": { "method": "POST", "url": "https://api.akeyless.io/get-secret-value", "headers": { "Content-Type": "application/json", "Accept": "application/json" }, "body": { "names": ["/prod/database/password", "/prod/api/key"], "token": "t-1234567890abcdef1234567890abcdef" } }, "response": { "status": 200, "body": { "/prod/database/password": "s3cr3tP@ssw0rd", "/prod/api/key": "api-key-value-here" } } }