action spotify_get_followed { label: "Get Followed Artists\n" description: "Get the current user's followed artists.\n" provider: spotify method: GET path: "/me/following" encoding: json input: { type: "object" properties: { after: { type: "string" description: "The last artist ID retrieved from the previous request.\n" } limit: { type: "integer" description: "The maximum number of items to return. Default: 20\\. Minimum: 1\\. Maximum: 50\\.\n" } type: { type: "string" description: "The ID type: currently only `artist` is supported.\n" enum: ["artist"] } } required: ["type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }