API documentation


Endpoint

Requests are to made to the /json endpoint. Every request will return an array of 20 status.

Parameters

  • q passes a search query
  • start starts results at the `start` position

Response

The response is a JSON object as follow:

  • status containst success on success.
  • data is an array of 20 status.

Example

$ curl "https://fedsearch.io/json?q=tag:linux&start=20"
{
  "status":"success",
  "data":[
    {"id":"9430493049304930","content":"...."},
    {"id":"9430493049304944","content":"...."}
  ]
}