StedaMaps API (1.0.0)

Download OpenAPI specification:Download

Get place by id

Authorizations:
bearerAuth
query Parameters
id
required
integer

Place ID

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "location": {
    },
  • "geometry": {
    },
  • "images": [
    ],
  • "details": {
    },
  • "osmTags": {
    }
}

Search for places

Search for places by name and/or location.

Authorizations:
bearerAuth
query Parameters
fields
Array of strings
Default: "id,location,details"
Items Enum: "id" "location" "geometry" "details" "details.references.googleMaps" "images" "osmTags"

Specifies which place fields to return.

search
string <= 300 characters

The term to search for.

location
string^-?\d+(\.\d+)?,-?\d+(\.\d+)?$

Latitude,Longitude of the center point.

radius
integer [ 1 .. 200000 ]
Default: 1000

Search radius in meters, default is 1km, max is 200km. Works only with the location parameter.

limit
integer [ 1 .. 100 ]
Default: 1

Maximum number of results.

details.types.place.kind
string >= 1
Example: details.types.place.kind=museum

Filter by the kind for the place type. Use '*' as a wildcard to match any kind.

details.types.amenity.kind
string >= 1

Filter by the kind for the amenity type. Use '*' as a wildcard to match any kind.

details.types.shop.kind
string >= 1

Filter by the kind for the shop type. Use '*' as a wildcard to match any kind.

details.types.natural.kind
string >= 1

Filter by the kind for the natural type. Use '*' as a wildcard to match any kind.

details.types.tourism.kind
string >= 1

Filter by the kind for the tourism type. Use '*' as a wildcard to match any kind.

details.types.historic.kind
string >= 1

Filter by the kind for the historic type. Use '*' as a wildcard to match any kind.

details.types.office.kind
string >= 1

Filter by the kind for the office type. Use '*' as a wildcard to match any kind.

details.types.memorial.kind
string >= 1

Filter by the kind for the memorial type. Use '*' as a wildcard to match any kind.

details.types.leisure.kind
string >= 1

Filter by the kind for the leisure type. Use '*' as a wildcard to match any kind.

Responses

Response samples

Content type
application/json
{
  • "results": [
    ]
}