dotnet add package GetStreamGetting Started
Stream's Moderation API lets you integrate content moderation into any application. This guide walks you through installation, configuration, and your first moderation check.
Installation
Initialize the Client
using GetStream;
var client = ClientBuilder
.ApiKey("YOUR_API_KEY")
.ApiSecret("YOUR_API_SECRET")
.BuildModerationClient();Create a Moderation Policy
Before checking content, create a moderation configuration that defines which rules to apply:
await client.UpsertConfigAsync(new UpsertConfigRequest
{
Key = "my_config",
AiTextConfig = new AiTextConfig
{
Rules = new List<AiTextRule>
{
new AiTextRule { Label = "SPAM", Action = "flag" },
new AiTextRule { Label = "HARASSMENT", Action = "remove" },
},
},
BlockListConfig = new BlockListConfig
{
Rules = new List<BlockListRule>
{
new BlockListRule { Name = "profanity_en", Action = "remove" },
},
},
});For Stream Chat, use config key
chat:messaging. For Stream Feeds, usefeeds. See Configuration for details.
Check Content
var response = await client.CheckAsync(new CheckRequest
{
EntityType = "stream:chat:v1:message",
EntityID = "message-123",
EntityCreatorID = "user-456",
ModerationPayload = new ModerationPayload
{
Texts = new List<string> { "Hello, this is a test message" },
},
ConfigKey = "my_config",
});
Console.WriteLine(response.RecommendedAction); // "keep", "flag", or "remove"Handle the Response
The response includes:
RecommendedAction--"keep","flag", or"remove"Status--"complete"or"partial"(if async checks are still running)Item-- the review queue item (if content was flagged or removed)
switch (response.RecommendedAction)
{
case "keep":
// Content is safe, no action needed
break;
case "flag":
// Content is suspicious, send to review queue
Console.WriteLine($"Flagged for review: {response.Item}");
break;
case "remove":
// Content violates policies, remove it
Console.WriteLine($"Content removed: {response.Item}");
break;
}Next Steps
- Configuration -- Advanced policy setup
- Stream Chat Integration -- Chat moderation
- Stream Feeds Integration -- Feeds moderation
- Review Queue -- Query and act on flagged content
- Client Configuration — HTTP defaults, timeouts, and connection pooling