πŸ“‘Live Analysis

Return data in a single HTTP request

Analyze a text or an URL

Analyze a text or URL

POST https://gptradar.com/api/analysis/live/

This endpoint will tell you if an AI wrote your input or not.

The endpoint takes in input a text or, alternatively, an url.

If an url is passed, GPTRadar will try to visit the page and extract the main content of the page.

Headers

Name
Type
Description

Authorization

String

Api-KeyYOUR-API-KEY

Request Body

Name
Type
Description

text*

string

The text you want to analyze

url*

string

A valid URL

{
  "id": "78905c72-bd93-43d0-9d3f-67a7e2639450",
  "results": {
    "is_ai": true,
    "is_human": false,
    "outcome": "Likely AI Generated - Large (ChatGPT/Davinci/Curie)",
    "burstiness": {
      "burst_mean": 4.392312690119366,
      "burst_var": 8.762827450180968,
      "burst": 11.12
    },
    "avg_perplexity": 5.341281249388172,
    "accuracy": 74.41,
    "language": "en"
  },
  "tokens": 266
}

Last updated

Was this helpful?