Skip to main content
POST
/
api
/
google
/
maps
/
places
/google/maps/places
curl --request POST \
  --url https://api.anysite.io/api/google/maps/places \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "feature_id": "<string>",
  "timeout": 300
}
'
[
  {
    "feature_id": "<string>",
    "name": "<string>",
    "@type": "@google_place",
    "place_id": "<string>",
    "entity_id": "<string>",
    "cid": "<string>",
    "address": "<string>",
    "neighborhood": "<string>",
    "latitude": 123,
    "longitude": 123,
    "timezone": "<string>",
    "categories": [],
    "primary_category": "<string>",
    "rating": 123,
    "review_count": 123,
    "price_level": "<string>",
    "phone": "<string>",
    "website": "<string>",
    "domain": "<string>",
    "description": "<string>",
    "image": "<string>",
    "menu_url": "<string>",
    "hours": [],
    "attributes": [],
    "plus_code": "<string>",
    "url": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
feature_id
string
required

Place feature ID in hex form '0x..:0x..'

Minimum string length: 1
Example:

"0x89c258552071bcb3:0x5cc7129cc313de1a"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

feature_id
string
required
name
string
required
@type
string
default:@google_place
place_id
string | null
entity_id
string | null
cid
string | null
address
string | null
neighborhood
string | null
latitude
number | null
longitude
number | null
timezone
string | null
categories
string[]
primary_category
string | null
rating
number | null
review_count
integer | null
price_level
string | null
phone
string | null
website
string | null
domain
string | null
description
string | null
image
string | null
menu_url
string | null
hours
GooglePlaceHours · object[]
attributes
GooglePlaceAttributeGroup · object[]
plus_code
string | null
url
string | null