Landgate Server API

Server-level information and the services directory

Operations 1

GET /info Get ArcGIS Server info #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/landgate-server-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

landgate-server-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Landgate SLIP Public Services (ArcGIS REST) Server API
  version: '12.1'
  summary: OpenAPI description of the anonymously callable ArcGIS Server REST surface of Landgate's Shared Location Information Platform (SLIP) public tier.
  description: 'Landgate does not publish an OpenAPI definition. This document is an API Evangelist

    GENERATED description of the Esri ArcGIS Server 12.1 REST surface that Landgate serves

    anonymously at https://public-services.slip.wa.gov.au/public/rest.


    Every path and operation below was probed live and returned HTTP 200 without any

    credential (see `x-evidence` on each operation, probed 2026-07-26). Nothing here is

    invented: the operations are the standard ArcGIS REST resources that this specific

    server answers, and the parameters are the ones exercised in the probes.


    The server''s own machine-readable contract remains the ArcGIS REST services directory

    (`?f=json`), which is saved verbatim in this repo as

    `openapi/landgate-slip-public-arcgis-rest-services.json` and

    `openapi/landgate-slip-public-services-folder.json`.

    '
  contact:
    name: Landgate Customer Service
    url: https://www.landgate.wa.gov.au/help-centre/
  license:
    name: Landgate data licensing (custom; see licensing page)
    url: https://www.landgate.wa.gov.au/location-data-and-services/discovering-landgate-data/licensing/
servers:
- url: https://public-services.slip.wa.gov.au/public/rest
  description: SLIP public ArcGIS REST services directory (anonymous)
tags:
- name: Server
  description: Server-level information and the services directory
paths:
  /info:
    get:
      operationId: getSlipServerInfo
      tags:
      - Server
      summary: Get ArcGIS Server info
      description: Returns the ArcGIS Server version and the authentication posture of the public SLIP instance.
      x-evidence:
        url: https://public-services.slip.wa.gov.au/public/rest/info?f=json
        status: 200
        probed: '2026-07-26'
        sample: '{"fullVersion":"12.1.0","currentVersion":12.1,"authInfo":{"isTokenBasedSecurity":false}}'
      parameters:
      - $ref: '#/components/parameters/Format'
      responses:
        '200':
          description: Server info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerInfo'
components:
  schemas:
    ServerInfo:
      type: object
      properties:
        currentVersion:
          type: number
        fullVersion:
          type: string
        soapUrl:
          type: string
          format: uri
        authInfo:
          type: object
          properties:
            isTokenBasedSecurity:
              type: boolean
  parameters:
    Format:
      name: f
      in: query
      description: Response format. `json` for the machine-readable response.
      schema:
        type: string
        enum:
        - html
        - json
        - pjson
        - image
        - kmz
        default: html
x-generated-by: API Evangelist enrichment pipeline
x-generated: '2026-07-26'
x-method: generated
x-source: live probes of https://public-services.slip.wa.gov.au/public/rest
x-authentication: none — /public/rest/info reports authInfo.isTokenBasedSecurity=false