Search by Match Score
Search by match score.
Search by match score is now supported and can be used along with other supported filters.
Request
GET /entities/matchScores?from={0}&to={1}&bars={2}&filter={3}
        Example 1
Request
GET /entities/matchScores?from=0&to=10&bars=2
        Response
[
    {
        "from": 0,
        "to": 5,
        "count": 111
    },
    {
        "from": 5,
        "to": 10,
        "count": 0
    }
]
        Example 2
Request
GET /entities?filter=gte(potentialMatches.matchScore, 15)&select=uri&max=5
        Response
[
    {
        "uri": "entities/2V12iHi"
    },
    {
        "uri": "entities/2V12qoE"
    },
    {
        "uri": "entities/2V12ZlC"
    },
    {
        "uri": "entities/1iZTD5i"
    },
    {
        "uri": "entities/1iZT8pS"
    }
]