action stream_io_api_get_rate_limits { label: "Get rate limits" description: "Get rate limits usage and quotas" provider: stream_io_api method: GET path: "/rate_limits" encoding: json input: { type: "object" properties: { android: { type: "string" } endpoints: { type: "string" } ios: { type: "string" } server_side: { type: "string" } web: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["duration"] properties: { android: { type: "object" description: "Map of endpoint rate limits for the Android platform" } duration: { type: "string" } ios: { type: "object" description: "Map of endpoint rate limits for the iOS platform" } server_side: { type: "object" description: "Map of endpoint rate limits for the server-side platform" } web: { type: "object" description: "Map of endpoint rate limits for the web platform" } } } }