Returns available Projections. More info: https://epsg.io/

Query parameters:

name Text filter on the name field. All text field filter methods, like startswith, endswith, icontains are supported.

code Text filter on the code field. All text field filter methods, like startswith, endswith, icontains are supported.

extent__intersects Spatial filter on extent. Filter on only projections whose extent intersect the requested geometry. Supports WKT.

ordering Show the results in a specific order. You can order them by name, code. Add a - in front to reverse the order.

Examples:

?name=projection

?name__icontains=proj

?name__startswith=proj

?code=EPSG:25890

?code__startswith=EPSG

?ordering=name

?ordering=-code

?extent__covers=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79,
4.98 52.73, 4.87 52.73))

?extent__intersects=POLYGON((4.87 52.73, 4.87 52.79, 4.98 52.79,
4.98 52.73, 4.87 52.73))
GET /api/v4/projections/?format=api&page=5
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 6891,
    "next": "https://demo.lizard.net/api/v4/projections/?format=api&page=6",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=4",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20068/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 8N",
            "code": "EPSG:20068",
            "extent": {
                "south": 41.19,
                "west": 42.0,
                "north": 80.91,
                "east": 48.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20069/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 9N",
            "code": "EPSG:20069",
            "extent": {
                "south": 41.39,
                "west": 48.0,
                "north": 81.4,
                "east": 54.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2007/?format=api",
            "name": "St. Vincent 45 / British West Indies Grid",
            "code": "EPSG:2007",
            "extent": {
                "south": 12.54,
                "west": -61.52,
                "north": 13.44,
                "east": -61.07
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20070/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 10N",
            "code": "EPSG:20070",
            "extent": {
                "south": 50.47,
                "west": 54.0,
                "north": 81.91,
                "east": 60.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20071/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 11N",
            "code": "EPSG:20071",
            "extent": {
                "south": 50.66,
                "west": 60.0,
                "north": 81.77,
                "east": 66.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20072/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 12N",
            "code": "EPSG:20072",
            "extent": {
                "south": 54.1,
                "west": 66.0,
                "north": 77.07,
                "east": 72.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20073/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 13N",
            "code": "EPSG:20073",
            "extent": {
                "south": 53.17,
                "west": 72.0,
                "north": 79.71,
                "east": 78.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20074/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 14N",
            "code": "EPSG:20074",
            "extent": {
                "south": 50.69,
                "west": 78.0,
                "north": 81.03,
                "east": 84.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20075/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 15N",
            "code": "EPSG:20075",
            "extent": {
                "south": 49.07,
                "west": 84.0,
                "north": 81.27,
                "east": 90.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20076/?format=api",
            "name": "Pulkovo 1995 / Gauss-Kruger 16N",
            "code": "EPSG:20076",
            "extent": {
                "south": 49.89,
                "west": 90.0,
                "north": 81.35,
                "east": 96.0
            }
        }
    ]
}