POST
/
trending
curl --request POST \
  --url https://api.search1api.com/trending \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "search_service": "github",
  "max_results": 10
}'
{
  "trendingParameters": {
    "search_service": "github",
    "max_results": 10
  },
  "results": [
    {
      "title": "<string>",
      "url": "<string>",
      "description": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Trending parameters

The body is of type object.

Response

200
application/json

Successful Response

The response is of type object.