inaturalistjs
    Preparing search index...

    Type Alias GetPlacesByIdData

    type GetPlacesByIdData = {
        body?: never;
        path: { id: string[] };
        query?: { adminLevel?: -10 | 0 | 10 | 20 | 30 | 100 };
        url: "/places/{id}";
    }
    Index

    Properties

    Properties

    body?: never
    path: { id: string[] }

    Type declaration

    • id: string[]

      Must have this ID or slug

    query?: { adminLevel?: -10 | 0 | 10 | 20 | 30 | 100 }

    Type declaration

    • OptionaladminLevel?: -10 | 0 | 10 | 20 | 30 | 100

      Admin level of a place, or an array of admin levels in comma-delimited format. Supported admin levels are: -10 (continent), 0 (country), 10 (state), 20 (county), 30 (town), 100 (park)

    url: "/places/{id}"