Usage of /articles GET
Discussion
Gets all the articles on the site.
To constrain articles returned to those with a set of tags, use the tagged
parameter with a
semi-colon delimited list of tags.
This is an and constraint, passing tagged=c;java
will return only those articles with
both tags. As such, passing more than 5 tags will always return zero results.
The sorts accepted by this method operate on the following fields of the article object:
- activity –
last_activity_date
- creation –
creation_date
- votes –
score
activity
is the default sort.
It is possible to create moderately complex queries using sort
, min
, max
, fromdate
, and todate
.
This method returns a list of articles.
Try It