All data sources

WY Office of State Lands & Investments

No authwy-osli

Wyoming OSLI — ~3.5M acres state trust + mineral estate. - searchOilGasLeases (~15.4K — slim schema) - searchSchoolSections ⭐ FundCode='CS' (Common School Sec 16+36 trust ~20K) - searchSurfaceOwnership (~31.6K), searchUpcomingAuctionLands (~195 LARCS rich), getServiceInfo Spec drift: getLeaseDetail DROPPED — lease polygon schema is too slim (LeaseNumber + dates only). LARCS table provides rich county/acres/bidPerAcre attributes — surfaced as searchUpcomingAuctionLands. upstream quirks: StateOwnership has NO County column — bbox/PLSS scoping only. FundCode CS dominates (20.1K of 31.6K parcels). Native gis2.statelands.wyo.gov returns rich schemas; AGOL mirrors are slimmer.

Provenance

PublisherWY Office of State Lands & Investments

Freshness & coverage

FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationNo credentials required

Methods (5)

  • searchOilGasLeases

    read

    OSLI O&G lease polygons (~15 (WY Office of State Lands & Investments).4K).

    Entitieslease
    Input schema
    {
      "type": "object",
      "properties": {
        "leaseNumber": {
          "type": "string",
          "examples": [
            "12-00396"
          ]
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    Use searchUpcomingAuctionLands for rich county/acres/bid-per-acre attributes.

  • searchSurfaceOwnership

    read

    OSLI State Ownership parcels (~31.6K). Filter fundCode/township/range/surfaceOnly. NO county column.

    Entitiesland, ownership
    Input schema
    {
      "type": "object",
      "properties": {
        "fundCode": {
          "type": "string",
          "examples": [
            "CS"
          ]
        },
        "activeOnly": {
          "type": "boolean"
        },
        "township": {
          "type": "string"
        },
        "range": {
          "type": "string"
        },
        "surfaceOnly": {
          "type": "boolean"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    fundCode accepts 2-3 letter code (CS/FL/SR) or descriptive substring.

  • searchSchoolSections

    read

    Common School trust sections (FundCode=CS, ~20K). Sec 16+36 analog.

    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "township": {
          "type": "string",
          "examples": [
            "47"
          ]
        },
        "range": {
          "type": "string",
          "examples": [
            "73"
          ]
        },
        "surfaceOnly": {
          "type": "boolean"
        },
        "bbox": {
          "type": "array",
          "items": {
            "type": "number"
          }
        },
        "near": {
          "type": "object",
          "properties": {
            "lat": {
              "type": "number"
            },
            "lon": {
              "type": "number"
            },
            "radiusMiles": {
              "type": "number"
            }
          },
          "required": [
            "lat",
            "lon",
            "radiusMiles"
          ],
          "additionalProperties": false
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "oneOf": [
            {
              "type": "string",
              "enum": [
                "records"
              ]
            },
            {
              "type": "string",
              "enum": [
                "geojson"
              ]
            }
          ]
        }
      },
      "additionalProperties": false
    }

    Filter twp/rge/surfaceOnly. NO county column — use bbox/PLSS.

  • searchUpcomingAuctionLands

    read

    OSLI LARCS auction inventory (~195 rows). Rich county/acres/bidPerAcre attributes. NO geometry.

    Entitiesrecord
    Input schema
    {
      "type": "object",
      "properties": {
        "county": {
          "type": "string",
          "examples": [
            "Campbell"
          ]
        },
        "fundCode": {
          "type": "string"
        },
        "minAcres": {
          "type": "number"
        },
        "excludeWithdrawn": {
          "type": "boolean"
        },
        "limit": {
          "type": "number"
        },
        "format": {
          "type": "string",
          "enum": [
            "records"
          ]
        }
      },
      "additionalProperties": false
    }

    Filter county (Title Case), fundCode, minAcres, excludeWithdrawn (default).

  • getServiceInfo

    read

    Schema + record counts for any of the 3 services (WY Office of State Lands & Investments).

    Entitiesmetadata
    Input schema
    {
      "type": "object",
      "properties": {
        "service": {
          "type": "string",
          "examples": [
            "ownership"
          ]
        }
      },
      "additionalProperties": false
    }