Entries/Places

Get multiple entries

get/entries/{ids}

Path parameters

idsstring required

Comma-separated list of identifiers

Example:7cee99c287094a94acbdcf29ffff2e85,0884c4e86e404072b6874b99b7e32640,ed8a2aef20054102b20950b1b78eb581

Response

Successful response

titlestring required
descriptionstring required
latnumber double required

Geographic latitude (in degrees)

lngnumber double required

Geographic longitude (in degrees)

streetstring
zipstring
citystring
countrystring
statestring
emailstring

An e-mail address of a user

telephonestring
homepagestring
opening_hoursstring

The opening hours in OpenStreetMap format.

Specification: https://wiki.openstreetmap.org/wiki/Key:opening_hours

Reference implementations: https://github.com/opening-hours/

Generator tool: https://projets.pavie.info/yohours/

The service trims leading/trailing whitespaces and stores values as is. Values are currently not validated against the OSM format syntax!

categoriesstring[]
tagsTag[]
image_urlstring
image_link_urlstring
licensestring required
idstring

Identifier of a resource

versioninteger
createdinteger
ratingsstring[]

Example response

[
  {
    "lat": 37.2,
    "lng": 120.7,
    "email": "user@example.com",
    "telephone": "001 123456789",
    "homepage": "https://www.slowtec.de/",
    "opening_hours": "24/7",
    "tags": [
      "organic",
      "non-profit"
    ],
    "image_url": "https://www.slowtec.de/",
    "image_link_url": "https://www.slowtec.de/",
    "links": [
      {
        "url": "https://www.slowtec.de/"
      }
    ],
    "license": "CC0-1.0",
    "id": "7cee99c287094a94acbdcf29ffff2e85"
  }
]

Changes