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=10
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=11",
    "previous": "https://demo.lizard.net/api/v4/projections/?format=api&page=9",
    "results": [
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20250/?format=api",
            "name": "AGD66 / AMG zone 50",
            "code": "EPSG:20250",
            "extent": {
                "south": -38.53,
                "west": 114.0,
                "north": -12.61,
                "east": 120.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20251/?format=api",
            "name": "AGD66 / AMG zone 51",
            "code": "EPSG:20251",
            "extent": {
                "south": -38.07,
                "west": 120.0,
                "north": -10.46,
                "east": 126.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20252/?format=api",
            "name": "AGD66 / AMG zone 52",
            "code": "EPSG:20252",
            "extent": {
                "south": -37.38,
                "west": 125.99,
                "north": -9.1,
                "east": 132.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20253/?format=api",
            "name": "AGD66 / AMG zone 53",
            "code": "EPSG:20253",
            "extent": {
                "south": -40.71,
                "west": 132.0,
                "north": -8.88,
                "east": 138.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20254/?format=api",
            "name": "AGD66 / AMG zone 54",
            "code": "EPSG:20254",
            "extent": {
                "south": -46.63,
                "west": 138.0,
                "north": -2.53,
                "east": 144.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20255/?format=api",
            "name": "AGD66 / AMG zone 55",
            "code": "EPSG:20255",
            "extent": {
                "south": -47.2,
                "west": 144.0,
                "north": -1.3,
                "east": 150.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20256/?format=api",
            "name": "AGD66 / AMG zone 56",
            "code": "EPSG:20256",
            "extent": {
                "south": -46.44,
                "west": 150.0,
                "north": -2.32,
                "east": 156.0
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20257/?format=api",
            "name": "AGD66 / AMG zone 57",
            "code": "EPSG:20257",
            "extent": {
                "south": -35.13,
                "west": 156.0,
                "north": -14.08,
                "east": 162.01
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:20258/?format=api",
            "name": "AGD66 / AMG zone 58",
            "code": "EPSG:20258",
            "extent": {
                "south": -34.22,
                "west": 162.0,
                "north": -27.25,
                "east": 163.2
            }
        },
        {
            "url": "https://demo.lizard.net/api/v4/projections/EPSG:2026/?format=api",
            "name": "NAD27(76) / MTM zone 17",
            "code": "EPSG:2026",
            "extent": {
                "south": 48.69,
                "west": -95.16,
                "north": 53.24,
                "east": -94.5
            }
        }
    ]
}