LocalLocationCreate

⌘K

Creates a new location.

JSON-RPC Method:

local.location.create
Go to Example Code

Request

location

object

A location to be created.

1{
2  "location": {
3    "level": "local-lite",
4    "brand_id": 1,
5    "auto_sync_enabled": true,
6    "remote_id": "ExampleBusiness",
7    "listings_name": "Example Business",
8    "website_url": "https://www.example-business.com",
9    "email_address": "info@example-business.com",
10    "store_code": "",
11    "short_description": "Doing things since 1986.",
12    "long_description": "Really long descriptions.",
13    "languages": [],
14    "keywords": [
15      "tutoring",
16      "online tutoring",
17      "test preparation",
18      "academic tutoring"
19    ],
20    "brands": [
21      "example"
22    ],
23    "payment_forms": [],
24    "price_range": "omit",
25    "service_areas": [],
26    "service_area_only": false,
27    "services": "",
28    "primary_category": "gcid:educational_consultant",
29    "additional_categories": [
30      "gcid:tutoring_service",
31      "gcid:private_tutor"
32    ],
33    "attributes": [],
34    "address": {
35      "address_line_1": "1234 Astroworld Ave",
36      "address_line_2": "Suite 306",
37      "sublocality": "",
38      "county": "Roswell",
39      "city": "Schenectady",
40      "state_province": "NY",
41      "postal_code": "12345",
42      "country": "US"
43    },
44    "opening_status": "open",
45    "reopen_date": "0000-00-00",
46    "hours": {
47      "monday": [
48        "09:00-21:00"
49      ],
50      "tuesday": [
51        "09:00-21:00"
52      ],
53      "wednesday": [
54        "09:00-21:00"
55      ],
56      "thursday": [
57        "09:00-21:00"
58      ],
59      "friday": [
60        "09:00-21:00"
61      ],
62      "saturday": [
63        "09:00-21:00"
64      ],
65      "sunday": [
66        "09:00-21:00"
67      ]
68    },
69    "more_hours": {
70      "kitchen hours": {
71        "monday": [
72          "09:00-21:00"
73        ]
74      }
75    },
76    "opening_hours_notes": "",
77    "opening_date": "0000-00-00",
78    "special_hours": {
79      "2025-08-04": [
80        "04:00-02:30"
81      ],
82      "2025-08-05": [
83        "04:00-02:30"
84      ],
85      "2025-08-06": [
86        "04:00-02:30"
87      ]
88    },
89    "network_fields": [],
90    "phone": "+1 561-395-5555",
91    "fax": "",
92    "create_page": true,
93    "published": false
94  }
95}

Response

location

object

A Moz Local location.

1{
2  "location": {
3    "id": 4,
4    "level": "local-lite",
5    "status": "active",
6    "legacy_id": 667273870,
7    "brand_id": 1,
8    "auto_sync_enabled": true,
9    "remote_id": "ExampleBusiness",
10    "listings_name": "Example Business",
11    "location_name": "Example Business",
12    "website_url": "https://www.example-business.com",
13    "email_address": "info@example-business.com",
14    "store_code": "",
15    "short_description": "Doing things since 1986.",
16    "long_description": "Really long descriptions.",
17    "languages": [],
18    "keywords": "tutoring,online tutoring,test preparation,academic tutoring",
19    "brands": [
20      "example"
21    ],
22    "payment_forms": [],
23    "price_range": "omit",
24    "service_areas": [],
25    "service_area_only": false,
26    "services": "",
27    "primary_category": "gcid:educational_consultant",
28    "additional_categories": [
29      "gcid:tutoring_service",
30      "gcid:private_tutor"
31    ],
32    "attributes": [],
33    "address": {
34      "address_line_1": "1234 Astroworld Ave",
35      "address_line_2": "Suite 306",
36      "sublocality": "",
37      "county": "Roswell",
38      "city": "Schenectady",
39      "state_province": "NY",
40      "postal_code": "12345",
41      "country": "US"
42    },
43    "opening_status": "open",
44    "reopen_date": "0000-00-00",
45    "hours": {
46      "monday": [
47        "09:00-21:00"
48      ],
49      "tuesday": [
50        "09:00-21:00"
51      ],
52      "wednesday": [
53        "09:00-21:00"
54      ],
55      "thursday": [
56        "09:00-21:00"
57      ],
58      "friday": [
59        "09:00-21:00"
60      ],
61      "saturday": [
62        "09:00-21:00"
63      ],
64      "sunday": [
65        "09:00-21:00"
66      ]
67    },
68    "more_hours": {
69      "kitchen hours": {
70        "monday": [
71          "09:00-21:00"
72        ]
73      }
74    },
75    "opening_hours_notes": "",
76    "opening_date": "0000-00-00",
77    "special_hours": {
78      "2025-08-04": [
79        "04:00-02:30"
80      ],
81      "2025-08-05": [
82        "04:00-02:30"
83      ],
84      "2025-08-06": [
85        "04:00-02:30"
86      ]
87    },
88    "network_fields": [],
89    "phone": "+1 561-395-5555",
90    "fax": ""
91  }
92}

Example Code

Quota Usage

Does not require any quota.