Skip to main content
POST
/
api
/
ground_news
/
stories
/ground_news/stories
curl --request POST \
  --url https://api.anysite.io/api/ground_news/stories \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "story": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "slug": "<string>",
    "@type": "GroundNewsStory",
    "generated_headline": "<string>",
    "description": "<string>",
    "dek": "<string>",
    "share_url": "<string>",
    "start": "<string>",
    "last_modified": "<string>",
    "top_news": false,
    "overall_bias": 123,
    "source_count": 123,
    "bias_source_count": 123,
    "left_src_percent": 123,
    "cntr_src_percent": 123,
    "right_src_percent": 123,
    "left_percent": 123,
    "center_percent": 123,
    "right_percent": 123,
    "left_src_count": 123,
    "cntr_src_count": 123,
    "right_src_count": 123,
    "blindspot": "<string>",
    "blindspot_for": "<string>",
    "blindspot_statement": "<string>",
    "coverage_profile_type": "<string>",
    "factuality": {
      "@type": "GroundNewsFactuality",
      "very_high": 123,
      "high": 123,
      "mixed": 123,
      "low": 123,
      "very_low": 123,
      "unknown": 123
    },
    "ownership": {
      "@type": "GroundNewsOwnership",
      "telecom": 123,
      "private_equity": 123,
      "media_conglomerate": 123,
      "billionaire": 123,
      "government": 123,
      "independent": 123,
      "corporation": 123,
      "other": 123,
      "uncategorized": 123
    },
    "ai_summaries": {
      "@type": "GroundNewsAiSummaries",
      "left": "<string>",
      "center": "<string>",
      "right": "<string>",
      "analysis": "<string>"
    },
    "place": [],
    "latitude": 123,
    "longitude": 123,
    "interests": [],
    "sources": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
story
string
required

Ground News story URL or story slug

Minimum string length: 1
Examples:

"https://ground.news/article/us-judge-blocks-trumps-mail-in-voting-executive-order"

"us-judge-blocks-trumps-mail-in-voting-executive-order"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
slug
string
required
@type
string
default:GroundNewsStory
generated_headline
string | null
description
string | null
dek
string | null
share_url
string | null
start
string | null
last_modified
string | null
top_news
boolean
default:false
overall_bias
integer | null
source_count
integer | null
bias_source_count
integer | null
left_src_percent
number | null
cntr_src_percent
number | null
right_src_percent
number | null
left_percent
number | null
center_percent
number | null
right_percent
number | null
left_src_count
integer | null
cntr_src_count
integer | null
right_src_count
integer | null
blindspot
string | null
blindspot_for
string | null
blindspot_statement
string | null
coverage_profile_type
string | null
factuality
object
ownership
object
ai_summaries
object
place
object[]
latitude
number | null
longitude
number | null
interests
object[]
sources
object[]