Skip to main content
POST
/
api
/
ground_news
/
stories
/
search
/ground_news/stories/search
curl --request POST \
  --url https://api.anysite.io/api/ground_news/stories/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "type": "<string>",
    "@type": "GroundNewsSearchResult",
    "sub_type": "<string>",
    "alias": "<string>",
    "image": "<string>",
    "start": "<string>",
    "place": "<string>",
    "source_count": 123,
    "follower_count": 123,
    "reference_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
type
string
required
@type
string
default:GroundNewsSearchResult
sub_type
string | null
alias
string | null
image
string | null
start
string | null
place
string | null
source_count
integer | null
follower_count
integer | null
reference_count
integer | null