Skip to main content
POST
/
api
/
ground_news
/
sources
/ground_news/sources
curl --request POST \
  --url https://api.anysite.io/api/ground_news/sources \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "source": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "@type": "GroundNewsSource",
    "domains": [],
    "bias": "<string>",
    "factuality": "<string>",
    "source_tier": 123,
    "interest_id": "<string>",
    "image": "<string>",
    "twitter": "<string>",
    "wikipedia": "<string>",
    "paywall": "<string>",
    "is_satire": false,
    "story_count": 123,
    "recent_story_count": 123,
    "latitude": 123,
    "longitude": 123,
    "place": [],
    "bias_ratings": [],
    "factuality_ratings": [],
    "owners": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
source
string
required

Ground News source slug

Minimum string length: 1
Examples:

"reuters_fa2539"

"npr"

"associated-press-news"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
alias
string
required
@type
string
default:GroundNewsSource
domains
string[]
bias
string | null
factuality
string | null
source_tier
integer | null
interest_id
string | null
image
string | null
twitter
string | null
wikipedia
string | null
paywall
string | null
is_satire
boolean
default:false
story_count
integer | null
recent_story_count
integer | null
latitude
number | null
longitude
number | null
place
object[]
bias_ratings
object[]
factuality_ratings
object[]
owners
object[]