Back to Tools

Redis

Data

Redis in-memory data store. Get, set, and manage keys. Pub/sub and streams support.

Available Actions
getsetdeletepublishsubscribe
Input Schema
{
  "type": "object",
  "required": [
    "command",
    "key"
  ],
  "properties": {
    "key": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "command": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "result": {}
  }
}
Quick Start

API Endpoint

POST /api/execute/redis

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/redis \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "get"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.