Network solved-ratio GET resource

GET /statistics/network/solved-ratio
Parameter Type Default Required Description
tag string tag label

Returns the ratio of solved questions in the network if the tag query parameter is omitted. If the tag query parameter is given, it returns the ratio of solved questions for this tag. If the ratio is not defined becauce there are no questions with a given tag, null is returned.

Note: This endpoint takes into account all undeleted questions.

Response

{
    "ratio": 0.8682719546742209
}

Response if there are no questions with for tag:

{       
    "ratio": null
}