Google Mirror
googleapis · Company
Interacts with Glass users via the timeline.
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
mirror.timeline.list
Retrieves a list of timeline items for the authenticated user.
https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline?alt=json&key=YOUR_API_KEY&fields=example&userIp=example&orderBy=displayTime&bundleId=example&pageToken=example"aUser=example&maxResults=1&pinnedOnly=true&oauth_token=example&prettyPrint=true&sourceItemId=example&includeDeleted=true
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline?alt=json&key=YOUR_API_KEY&fields=example&userIp=example&orderBy=displayTime&bundleId=example&pageToken=example"aUser=example&maxResults=1&pinnedOnly=true&oauth_token=example&prettyPrint=true&sourceItemId=example&includeDeleted=true"
import requests
params = {
"alt": "json",
"key": "YOUR_API_KEY",
"fields": "example",
"userIp": "example",
"orderBy": "displayTime",
"bundleId": "example",
"pageToken": "example",
"quotaUser": "example",
"maxResults": "1",
"pinnedOnly": "true",
"oauth_token": "example",
"prettyPrint": "true",
"sourceItemId": "example",
"includeDeleted": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline');
url.searchParams.set('alt', 'json');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('fields', 'example');
url.searchParams.set('userIp', 'example');
url.searchParams.set('orderBy', 'displayTime');
url.searchParams.set('bundleId', 'example');
url.searchParams.set('pageToken', 'example');
url.searchParams.set('quotaUser', 'example');
url.searchParams.set('maxResults', '1');
url.searchParams.set('pinnedOnly', 'true');
url.searchParams.set('oauth_token', 'example');
url.searchParams.set('prettyPrint', 'true');
url.searchParams.set('sourceItemId', 'example');
url.searchParams.set('includeDeleted', 'true');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline")
q := baseURL.Query()
q.Set("alt", "json")
q.Set("key", "YOUR_API_KEY")
q.Set("fields", "example")
q.Set("userIp", "example")
q.Set("orderBy", "displayTime")
q.Set("bundleId", "example")
q.Set("pageToken", "example")
q.Set("quotaUser", "example")
q.Set("maxResults", "1")
q.Set("pinnedOnly", "true")
q.Set("oauth_token", "example")
q.Set("prettyPrint", "true")
q.Set("sourceItemId", "example")
q.Set("includeDeleted", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline")
uri.query = URI.encode_www_form({
"alt" => "json",
"key" => "YOUR_API_KEY",
"fields" => "example",
"userIp" => "example",
"orderBy" => "displayTime",
"bundleId" => "example",
"pageToken" => "example",
"quotaUser" => "example",
"maxResults" => "1",
"pinnedOnly" => "true",
"oauth_token" => "example",
"prettyPrint" => "true",
"sourceItemId" => "example",
"includeDeleted" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/timeline?" . http_build_query([
"alt" => "json",
"key" => "YOUR_API_KEY",
"fields" => "example",
"userIp" => "example",
"orderBy" => "displayTime",
"bundleId" => "example",
"pageToken" => "example",
"quotaUser" => "example",
"maxResults" => "1",
"pinnedOnly" => "true",
"oauth_token" => "example",
"prettyPrint" => "true",
"sourceItemId" => "example",
"includeDeleted" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
mirror.contacts.list
Retrieves a list of contacts for the authenticated user.
https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts?alt=json&key=YOUR_API_KEY&fields=example&userIp=example"aUser=example&oauth_token=example&prettyPrint=true
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts?alt=json&key=YOUR_API_KEY&fields=example&userIp=example"aUser=example&oauth_token=example&prettyPrint=true"
import requests
params = {
"alt": "json",
"key": "YOUR_API_KEY",
"fields": "example",
"userIp": "example",
"quotaUser": "example",
"oauth_token": "example",
"prettyPrint": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts');
url.searchParams.set('alt', 'json');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('fields', 'example');
url.searchParams.set('userIp', 'example');
url.searchParams.set('quotaUser', 'example');
url.searchParams.set('oauth_token', 'example');
url.searchParams.set('prettyPrint', 'true');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts")
q := baseURL.Query()
q.Set("alt", "json")
q.Set("key", "YOUR_API_KEY")
q.Set("fields", "example")
q.Set("userIp", "example")
q.Set("quotaUser", "example")
q.Set("oauth_token", "example")
q.Set("prettyPrint", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts")
uri.query = URI.encode_www_form({
"alt" => "json",
"key" => "YOUR_API_KEY",
"fields" => "example",
"userIp" => "example",
"quotaUser" => "example",
"oauth_token" => "example",
"prettyPrint" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/contacts?" . http_build_query([
"alt" => "json",
"key" => "YOUR_API_KEY",
"fields" => "example",
"userIp" => "example",
"quotaUser" => "example",
"oauth_token" => "example",
"prettyPrint" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
mirror.locations.list
Retrieves a list of locations for the user.
https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations?alt=json&key=YOUR_API_KEY&fields=example&userIp=example"aUser=example&oauth_token=example&prettyPrint=true
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations?alt=json&key=YOUR_API_KEY&fields=example&userIp=example"aUser=example&oauth_token=example&prettyPrint=true"
import requests
params = {
"alt": "json",
"key": "YOUR_API_KEY",
"fields": "example",
"userIp": "example",
"quotaUser": "example",
"oauth_token": "example",
"prettyPrint": "true"
}
response = requests.get(
"https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations');
url.searchParams.set('alt', 'json');
url.searchParams.set('key', 'YOUR_API_KEY');
url.searchParams.set('fields', 'example');
url.searchParams.set('userIp', 'example');
url.searchParams.set('quotaUser', 'example');
url.searchParams.set('oauth_token', 'example');
url.searchParams.set('prettyPrint', 'true');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations")
q := baseURL.Query()
q.Set("alt", "json")
q.Set("key", "YOUR_API_KEY")
q.Set("fields", "example")
q.Set("userIp", "example")
q.Set("quotaUser", "example")
q.Set("oauth_token", "example")
q.Set("prettyPrint", "true")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations")
uri.query = URI.encode_www_form({
"alt" => "json",
"key" => "YOUR_API_KEY",
"fields" => "example",
"userIp" => "example",
"quotaUser" => "example",
"oauth_token" => "example",
"prettyPrint" => "true"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/googleapis.com/mirror/v1/locations?" . http_build_query([
"alt" => "json",
"key" => "YOUR_API_KEY",
"fields" => "example",
"userIp" => "example",
"quotaUser" => "example",
"oauth_token" => "example",
"prettyPrint" => "true"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Google Mirror?
Google Mirror is a Company API. Developers commonly use company APIs for:
- enriching CRM records with company firmographics
- building lead-generation and prospecting tools
- verifying business identity and registration details
- monitoring competitors and market intelligence
- powering B2B data enrichment pipelines
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Google Mirror is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide