Get location business profile
const url = 'https://kynectlocal-production.up.railway.app/v1/v1/brands/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/profile/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://kynectlocal-production.up.railway.app/v1/v1/brands/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/profile/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Brand identifier
Location identifier
Responses
Section titled “ Responses ”Success
object
object
object
Profile identifier
Location this profile belongs to
Parent brand
Primary phone number
Contact email
Street address
City
State/province code
Postal/ZIP code
Country code
Regular business hours
object
Monday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Tuesday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Wednesday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Thursday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Friday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Saturday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Sunday hours
object
Opening time in HH:MM format
Closing time in HH:MM format
Whether the location is closed on this day
Whether the location is open 24 hours on this day
Business description
Location tagline
Creation timestamp
Last update timestamp
Example generated
{ "data": { "profile": { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "locationId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "brandId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "phone": "example", "email": "example", "address": "example", "city": "example", "state": "example", "zipCode": "example", "country": "example", "hours": { "monday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true }, "tuesday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true }, "wednesday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true }, "thursday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true }, "friday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true }, "saturday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true }, "sunday": { "openTime": "example", "closeTime": "example", "isClosed": true, "is24Hours": true } }, "description": "example", "tagline": "example", "createdAt": "2026-04-15T12:00:00Z", "updatedAt": "2026-04-15T12:00:00Z" } }}Validation error
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Unauthenticated
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Forbidden
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Not found
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Unprocessable
object
Error envelope
object
Machine-readable error code
Human-readable error description
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}