For Agents
Submit user-generated comments for moderation, configure webhooks for results, and manage Netvyne moderation categories.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Netvyne API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Netvyne API.
Submit a user comment for safety classification
List the moderation categories available on the account
Register a webhook to receive moderation verdicts asynchronously
Fetch the moderation instructions guiding the classifier
GET STARTED
Use for: Submit a user comment for moderation, List Netvyne moderation categories, Register a webhook for moderation results, Get the moderation instructions for our account
Not supported: Does not handle image or video moderation, identity verification, or account banning — use for text comment moderation and webhook-driven verdict delivery only.
Jentic publishes the only available OpenAPI specification for Netvyne API, keeping it validated and agent-ready. Netvyne is a content moderation service that scores user-generated comments and other text for safety, with category-level instructions and webhook delivery for asynchronous moderation results. The five-endpoint surface covers categories listing, comment submission, moderation instructions, webhook configuration, and a demo webhook for integration testing.
Trigger a demo webhook delivery to verify integration plumbing
Patterns agents use Netvyne API for, with concrete tasks.
★ User-Generated Content Moderation
Send every comment posted on a community or marketplace platform to Netvyne for safety classification. The platform receives the verdict via webhook and can hide, hold for review, or publish based on the category and confidence returned.
POST a new comment 'this is a sample post' to /comments and capture the comment id returned for downstream webhook correlation.
Moderation Webhook Setup
Register a webhook so Netvyne pushes moderation results back to the platform asynchronously, then run a demo webhook delivery to verify the integration end-to-end before production traffic flips on.
POST a webhook target https://app.example.com/netvyne-webhook to /webhooks, then call /demo_webhook to fire a test delivery and confirm the platform received it.
Category and Rules Inspection
Pull the active moderation categories and instructions used by the classifier for review by trust and safety teams. Useful before tuning thresholds or onboarding to a new community context that has different content norms.
Fetch /categories and /instructions and present a side-by-side summary of each category and the active rule applied to it.
AI Agent Trust and Safety Assistant
Let an AI agent decide whether a flagged comment should be auto-deleted or escalated to a human reviewer by submitting it through Netvyne and reading the categorical verdict. Saves moderator time on clear-cut cases while preserving human review for borderline content.
Submit comment text to /comments, wait for the webhook verdict, and decide between auto-delete, hold-for-review, or publish based on the returned category.
5 endpoints — jentic publishes the only available openapi specification for netvyne api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/categories
List moderation categories
/comments
Submit a comment for moderation
/instructions
Get the active moderation instructions
/webhooks
Register a moderation result webhook
/demo_webhook
Trigger a demo webhook delivery
/categories
List moderation categories
/comments
Submit a comment for moderation
/instructions
Get the active moderation instructions
/webhooks
Register a moderation result webhook
/demo_webhook
Trigger a demo webhook delivery
Three things that make agents converge on Jentic-routed access.
Credential isolation
Your Netvyne API key is stored encrypted in the Jentic vault. Agents receive scoped access — the key is injected at execution time and never appears in the agent's prompt or logs.
Intent-based discovery
Agents search by intent (e.g. 'moderate a user comment') and Jentic returns the matching Netvyne operation against /comments or /webhooks with its parameter schema, so the agent submits a valid request without docs.
Time to first call
Direct Netvyne integration: 1-2 days for auth, webhook setup, and verdict handling. Through Jentic: under 1 hour to search, load, and execute the first call.
Alternatives and complements available in the Jentic catalogue.
Specific to using Netvyne API through Jentic.
Why is there no official OpenAPI spec for the Netvyne API?
Netvyne does not publish an OpenAPI specification on its developer site. Jentic generates and maintains this spec so that AI agents and developers can call Netvyne API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Netvyne API use?
Netvyne uses an API key passed as a Bearer token on the Authorization header. Through Jentic the key is stored encrypted in the vault and never enters the agent's prompt context.
Can I submit a comment for moderation through the Netvyne API?
Yes. POST /comments accepts the comment text and returns an identifier. The moderation verdict is delivered asynchronously to the webhook URL you registered via POST /webhooks.
What are the rate limits for the Netvyne API?
Netvyne does not publish a fixed public rate limit; throughput depends on your account tier. For high-volume moderation traffic, batch submissions and confirm peak limits with the Netvyne team.
How do I test webhook delivery through Jentic?
Run jentic.search('trigger netvyne demo webhook'), load the matching operation, and execute POST /demo_webhook. Jentic returns the demo dispatch result so the agent can verify the platform-side webhook handler before flipping production traffic on.
Does the Netvyne API moderate images or video?
This OpenAPI surface focuses on text comment moderation — categories, comments, instructions, and webhooks. Image and video moderation, if available, would require a separate Netvyne product surface.