Usage of /questions/no-answers GET
Discussion
Returns questions which have received no answers.
Compare with /questions/unanswered which merely returns questions that the sites consider insufficiently well answered.
This method corresponds roughly with this site tab.
        To constrain questions returned to those with a set of tags, use the tagged parameter with a
        semi-colon delimited list of tags.
        This is an and contraint, passing tagged=c;java will return only those questions 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 question 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 questions.
Try It