Get preset alphabets by chars

In order to get the character set (together with other attribute–value pairs) of preset alphabets via a non-exclusive search for the characters contained therein, the HTTP request path attribute filter[chars] MUST be sent.

All matching alphabets are returned from the remote service as list in the JSON response body. Each data object of type: alphabet in the list has the same structure as if it had been requested by its identifier via HTTP request path parameter.

Request endpoint

GET SERVER:PORT/api/alphabets?filter[chars]=AEIOU

Response status

200

Request headers

Accept:application/vnd.api+json
Content-Type:application/vnd.api+json
Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS

Response headers

Transfer-Encoding:chunked
Connection:keep-alive
Accept:application/vnd.api+json
Cache-Control:no-cache
Date:Tue, 19 Mar 2024 12:52:23 GMT
Content-Type:application/vnd.api+json
Server:nginx/1.25.4

Request body

# intentionally blank

Response body

{
    "links": {
        "self": "/api/alphabets?filter[chars]=AEIOU"
    },
    "data": [
        {
            "attributes": {
                "ascii": true,
                "length": 60,
                "bytes": 60,
                "parity": 0,
                "chars": "23456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
            },
            "id": "BASE60",
            "type": "alphabet"
        },
        {
            "attributes": {
                "ascii": true,
                "length": 62,
                "bytes": 62,
                "parity": 0,
                "chars": "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
            },
            "id": "BASE62",
            "type": "alphabet"
        },
        {
            "attributes": {
                "ascii": true,
                "length": 26,
                "bytes": 26,
                "parity": 0,
                "chars": "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
            },
            "id": "UPPER_LATIN",
            "type": "alphabet"
        }
    ]
}

HTTPie example

$ http get SERVER:PORT/api/alphabets?filter[chars]=AEIOU Accept:application/vnd.api+json Content-Type:application/vnd.api+json Session-Key:SSSSSSSS-SSSS-SSSS-SSSS-SSSSSSSSSSSS