Skip to main content
POST
/
api
/
google
/
maps
/
photos
/google/maps/photos
curl --request POST \
  --url https://api.anysite.io/api/google/maps/photos \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "feature_id": "<string>",
  "timeout": 300,
  "count": 20
}
'
[
  {
    "id": "<string>",
    "@type": "@google_photo",
    "image": "<string>",
    "caption": "<string>",
    "width": 123,
    "height": 123,
    "source": "<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
count
integer
default:20

Max number of photos

Required range: x >= 1

Response

Successful Response

id
string
required
@type
string
default:@google_photo
image
string | null
caption
string | null
width
integer | null
height
integer | null
source
string | null