Introduction

GlyphNet Documentation

Welcome to the GlyphNet API documentation. GlyphNet helps you verify AI-generated claims against a semantic knowledge graph.

What is GlyphNet?

GlyphNet is an API service that verifies factual claims in AI-generated text. It uses the Glyphmine knowledge graph—a structured database of verified concepts and relationships—to check whether statements are accurate.

Quick Example

import requests
 
response = requests.post(
    "https://api.glyphnet.io/v1/verify",
    headers={"X-API-Key": "gn_live_your_key_here"},
    json={"text": "Water is composed of hydrogen and oxygen atoms."}
)
 
result = response.json()
print(result["claims"][0]["verified"])  # True
print(result["claims"][0]["confidence"])  # 1.0

Key Features

  • Claim Extraction - Automatically identifies factual claims in text
  • Semantic Verification - Checks claims against a knowledge graph, not just keywords
  • Confidence Scores - Returns how certain the verification is (0.0 to 1.0)
  • Harm Detection - Identifies potentially harmful or dangerous content
  • Fast Response - Average response time under 100ms

Get Started

API Base URL

https://api.glyphnet.io

Need Help?