diff --git a/bizmatch-server/REDIS_INDEX.txt b/bizmatch-server/REDIS_INDEX.txt deleted file mode 100644 index 64dee68..0000000 --- a/bizmatch-server/REDIS_INDEX.txt +++ /dev/null @@ -1 +0,0 @@ -FT.CREATE listingsIndex ON JSON PREFIX 1 listings: SCHEMA $.location AS location TAG SORTABLE $.price AS price NUMERIC SORTABLE $.listingsCategory AS listingsCategory TAG SORTABLE $.type AS type TAG SORTABLE \ No newline at end of file diff --git a/bizmatch-server/src/drizzle/businesses_json.model.ts b/bizmatch-server/src/drizzle/businesses_json.model.ts deleted file mode 100644 index f0386f1..0000000 --- a/bizmatch-server/src/drizzle/businesses_json.model.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { jsonb, varchar } from 'drizzle-orm/pg-core'; -import { pgTable, text, primaryKey } from 'drizzle-orm/pg-core'; - -export const businesses_json = pgTable('businesses_json', { - id: varchar('id', { length: 255 }).primaryKey(), - data: jsonb('data'), -}); - -export type BusinessesJson = { - id: string; - data: Record; -}; \ No newline at end of file diff --git a/bizmatch-server/src/drizzle/drizzle.module.ts b/bizmatch-server/src/drizzle/drizzle.module.ts index 1ad037d..b4dfdbe 100644 --- a/bizmatch-server/src/drizzle/drizzle.module.ts +++ b/bizmatch-server/src/drizzle/drizzle.module.ts @@ -2,7 +2,7 @@ import { Module } from '@nestjs/common'; import { drizzle } from 'drizzle-orm/node-postgres'; import pkg from 'pg'; const { Pool } = pkg; -import * as schema from './businesses_json.model.js'; +import * as schema from './schema.js'; import { ConfigService } from '@nestjs/config'; import { jsonb, varchar } from 'drizzle-orm/pg-core'; import { PG_CONNECTION } from './schema.js'; diff --git a/bizmatch-server/src/drizzle/schema.ts b/bizmatch-server/src/drizzle/schema.ts index db1a4a1..92f7556 100644 --- a/bizmatch-server/src/drizzle/schema.ts +++ b/bizmatch-server/src/drizzle/schema.ts @@ -1,14 +1,32 @@ -import { integer, serial, text, pgTable } from 'drizzle-orm/pg-core'; -import { relations } from 'drizzle-orm'; -import { jsonb, varchar } from 'drizzle-orm/pg-core'; +import { integer, serial, text, pgTable, timestamp, jsonb, varchar } from 'drizzle-orm/pg-core'; +import { relations, sql } from 'drizzle-orm'; export const PG_CONNECTION = 'PG_CONNECTION'; -export const businesses_json = pgTable('businesses_json', { - id: varchar('id', { length: 255 }).primaryKey(), +export const businesses_json = pgTable('businesses', { + id: varchar('id', { length: 255 }).primaryKey().default(sql`uuid_generate_v4()`), data: jsonb('data'), + created: timestamp('created'), + updated: timestamp('updated'), + visits: integer('visits'), + last_visit: timestamp('last_visit'), +}); +export const commercials_json = pgTable('commercials', { + id: varchar('id', { length: 255 }).primaryKey().default(sql`uuid_generate_v4()`), + data: jsonb('data'), + created: timestamp('created'), + updated: timestamp('updated'), + visits: integer('visits'), + last_visit: timestamp('last_visit'), +}); +export const users = pgTable('users', { + id: varchar('id', { length: 255 }).primaryKey().default(sql`uuid_generate_v4()`), + data: jsonb('data'), + created: timestamp('created'), + updated: timestamp('updated'), + visits: integer('visits'), + last_visit: timestamp('last_visit'), }); - export type BusinessesJson = { id: string; data: Record; diff --git a/bizmatch-server/src/listings/business-listings.controller.ts b/bizmatch-server/src/listings/business-listings.controller.ts index 494a5ff..ba1539a 100644 --- a/bizmatch-server/src/listings/business-listings.controller.ts +++ b/bizmatch-server/src/listings/business-listings.controller.ts @@ -4,7 +4,8 @@ import { convertStringToNullUndefined } from '../utils.js'; import { ListingsService } from './listings.service.js'; import { WINSTON_MODULE_PROVIDER } from 'nest-winston'; import { Logger } from 'winston'; -import { ListingCriteria } from 'src/models/main.model.js'; +import { ListingCriteria } from '../models/main.model.js'; +import { businesses_json } from '../drizzle/schema.js'; @Controller('listings/business') export class BusinessListingsController { @@ -13,43 +14,34 @@ export class BusinessListingsController { @Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger) { } - @Get() - findAll(): any { - this.logger.info(`start findAll Listing`); - return this.listingsService.findListings(); - } @Get(':id') findById(@Param('id') id:string): any { - return this.listingsService.findById(id); + return this.listingsService.findById(id,businesses_json); } @Get('user/:userid') findByUserId(@Param('userid') userid:string): any { - return this.listingsService.findByUserId(userid); + return this.listingsService.findByUserId(userid,businesses_json); } @Post('search') find(@Body() criteria: ListingCriteria): any { - return this.listingsService.findByState(criteria.state); + return this.listingsService.findListingsByCriteria(criteria,businesses_json); } @Post() create(@Body() listing: any){ this.logger.info(`Save Listing`); - this.listingsService.createListing(listing) + this.listingsService.createListing(listing,businesses_json) } @Put() update(@Body() listing: any){ this.logger.info(`Save Listing`); - this.listingsService.updateListing(listing.id,listing) + this.listingsService.updateListing(listing.id,listing,businesses_json) } @Delete(':id') deleteById(@Param('id') id:string){ - this.listingsService.deleteListing(id) + this.listingsService.deleteListing(id,businesses_json) } - // @Delete('deleteAll') - // deleteAll(){ - // this.listingsService.deleteAllBusinessListings() - // } } diff --git a/bizmatch-server/src/listings/commercial-property-listings.controller.ts b/bizmatch-server/src/listings/commercial-property-listings.controller.ts index f7223c2..66ad3d6 100644 --- a/bizmatch-server/src/listings/commercial-property-listings.controller.ts +++ b/bizmatch-server/src/listings/commercial-property-listings.controller.ts @@ -4,7 +4,8 @@ import { WINSTON_MODULE_PROVIDER } from 'nest-winston'; import { Logger } from 'winston'; import { FileInterceptor } from '@nestjs/platform-express'; import { FileService } from '../file/file.service.js'; -import { CommercialPropertyListing, ImageProperty } from 'src/models/main.model.js'; +import { CommercialPropertyListing, ImageProperty, ListingCriteria } from '../models/main.model.js'; +import { commercials_json } from '../drizzle/schema.js'; @Controller('listings/commercialProperty') export class CommercialPropertyListingsController { @@ -12,40 +13,36 @@ export class CommercialPropertyListingsController { constructor(private readonly listingsService:ListingsService,private fileService:FileService,@Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger) { } - - // @Get(':id') - // findById(@Param('id') id:string): any { - // return this.listingsService.getCommercialPropertyListingById(id); - // } - - // @Post('search') - // find(@Body() criteria: any): any { - // return this.listingsService.findCommercialPropertyListings(criteria); - // } - - // @Put('imageOrder/:id') - // async changeImageOrder(@Param('id') id:string,@Body() imageOrder: ImageProperty[]) { - // this.listingsService.updateImageOrder(id, imageOrder) - // } - // /** - // * @param listing creates a new listing - // */ - // @Post() - // save(@Body() listing: any){ - // this.logger.info(`Save Listing`); - // this.listingsService.saveListing(listing) - // } - - // /** - // * @param id deletes a listing - // */ - // @Delete(':id') - // deleteById(@Param('id') id:string){ - // this.listingsService.deleteCommercialPropertyListing(id) - // } - // @Delete('deleteAll') - // deleteAll(){ - // this.listingsService.deleteAllcommercialListings() - // } + @Get(':id') + findById(@Param('id') id:string): any { + return this.listingsService.findById(id,commercials_json); + } + @Get('user/:userid') + findByUserId(@Param('userid') userid:string): any { + return this.listingsService.findByUserId(userid,commercials_json); + } + @Post('search') + find(@Body() criteria: ListingCriteria): any { + return this.listingsService.findByState(criteria.state,commercials_json); + } + + @Post() + create(@Body() listing: any){ + this.logger.info(`Save Listing`); + this.listingsService.createListing(listing,commercials_json) + } + @Put() + update(@Body() listing: any){ + this.logger.info(`Save Listing`); + this.listingsService.updateListing(listing.id,listing,commercials_json) + } + @Delete(':id') + deleteById(@Param('id') id:string){ + this.listingsService.deleteListing(id,commercials_json) + } + @Put('imageOrder/:id') + async changeImageOrder(@Param('id') id:string,@Body() imageOrder: ImageProperty[]) { + this.listingsService.updateImageOrder(id, imageOrder) + } } diff --git a/bizmatch-server/src/listings/listings.module.ts b/bizmatch-server/src/listings/listings.module.ts index a80fde2..2a9becc 100644 --- a/bizmatch-server/src/listings/listings.module.ts +++ b/bizmatch-server/src/listings/listings.module.ts @@ -10,7 +10,6 @@ import { BrokerListingsController } from './broker-listings.controller.js'; import { UserService } from '../user/user.service.js'; import { Client, Connection } from 'pg'; import { drizzle } from 'drizzle-orm/node-postgres'; -import { businesses_json } from '../drizzle/businesses_json.model.js'; import { DrizzleModule } from '../drizzle/drizzle.module.js'; diff --git a/bizmatch-server/src/listings/listings.service.ts b/bizmatch-server/src/listings/listings.service.ts index 2ba1d1a..9863fd1 100644 --- a/bizmatch-server/src/listings/listings.service.ts +++ b/bizmatch-server/src/listings/listings.service.ts @@ -5,85 +5,113 @@ import { ListingCriteria, ListingType, ImageProperty, - ListingCategory + ListingCategory, + ResponseBusinessListing } from '../models/main.model.js'; import { convertStringToNullUndefined } from '../utils.js'; import { WINSTON_MODULE_PROVIDER } from 'nest-winston'; import { Logger } from 'winston'; import { EntityData, EntityId, Schema, SchemaDefinition } from 'redis-om'; -import { eq, ilike, sql } from 'drizzle-orm'; -import { BusinessesJson, PG_CONNECTION, businesses_json } from '../drizzle/schema.js'; +import { SQL, eq, ilike, sql } from 'drizzle-orm'; +import { BusinessesJson, PG_CONNECTION, businesses_json, commercials_json } from '../drizzle/schema.js'; import { NodePgDatabase } from 'drizzle-orm/node-postgres'; import * as schema from '../drizzle/schema.js'; +import { PgTableFn, PgTableWithColumns, QueryBuilder } from 'drizzle-orm/pg-core'; @Injectable() export class ListingsService { constructor(@Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger, - @Inject(PG_CONNECTION) private conn: NodePgDatabase,){ - // this.businessListingRepository = new Repository(this.businessListingSchema, redis); - // this.commercialPropertyListingRepository = new Repository(this.commercialPropertyListingSchema, redis) - // this.businessListingRepository.createIndex(); - // this.commercialPropertyListingRepository.createIndex(); + @Inject(PG_CONNECTION) private conn: NodePgDatabase,) { + } + private buildWhereClause(criteria: ListingCriteria):SQL { + const finalSql = sql`1=1`; + finalSql.append(criteria.type?sql` AND data->>'type' = ${criteria.type}` : sql``) + finalSql.append(criteria.state ? sql` AND data->>'state' = ${criteria.state}` : sql``) + finalSql.append(criteria.minPrice ? sql` AND CAST(data->>'price' AS NUMERIC) >= ${parseFloat(criteria.minPrice)}` : sql``) + finalSql.append(criteria.maxPrice ? sql` AND CAST(data->>'price' AS NUMERIC) < ${parseFloat(criteria.maxPrice)}` : sql``) + finalSql.append(criteria.realEstateChecked !== undefined ? sql` AND CAST(data->>'realEstateIncluded' AS BOOLEAN) = ${criteria.realEstateChecked}` : sql``) + finalSql.append(criteria.title ? sql` AND LOWER(data->>'title') LIKE LOWER('%' || ${criteria.title} || '%')` : sql``) + + return finalSql + } + // ############################################################## + // Listings general + // ############################################################## + private async findListings(table: typeof businesses_json | typeof commercials_json, criteria: ListingCriteria ,start = 0, length = 12): Promise { + const whereClause = this.buildWhereClause(criteria) + const [data, total] = await Promise.all([ + (await this.conn.select({ id:table.id, data: table.data }).from(table).where(whereClause).offset(start).limit(length)).map(e=>{ + const ret = e.data as any + ret.id = e.id + return ret + }), + this.conn.select({ count: sql`count(*)` }).from(table).where(whereClause).then((result) => Number(result[0].count)), + ]); + return { total, data }; + } + async findById(id: string, table: typeof businesses_json | typeof commercials_json): Promise { + const result = await this.conn.select({ data: table.data }).from(table).where(sql`${table.id} = ${id}`) + return result[0].data as BusinessListing } - // ############################################################## - // ############################################################## - async createListing(newListing: { id: string; data: BusinessesJson }): Promise { - const [createdListing] = await this.conn.insert(businesses_json).values(newListing).returning(); + async findListingsByCriteria(criteria: ListingCriteria, table: typeof businesses_json | typeof commercials_json): Promise<{ data: Record[]; total: number }> { + const start = criteria.start ? criteria.start : 0; + const length = criteria.length ? criteria.length : 12; + return await this.findListings(table, criteria, start, length) + + } + async findByPriceRange(minPrice: number, maxPrice: number, table: typeof businesses_json | typeof commercials_json): Promise { + return this.conn.select().from(table).where(sql`${table.data}->>'price' BETWEEN ${minPrice} AND ${maxPrice}`); + } + + async findByState(state: string, table: typeof businesses_json | typeof commercials_json): Promise { + return this.conn.select().from(table).where(sql`${table.data}->>'state' = ${state}`); + } + + async findByUserId(userId: string, table: typeof businesses_json | typeof commercials_json): Promise { + return this.conn.select().from(table).where(sql`${table.data}->>'userId' = ${userId}`); + } + async findByTitleContains(title: string, table: typeof businesses_json | typeof commercials_json): Promise { + return this.conn.select().from(table).where(sql`${table.data}->>'title' ILIKE '%' || ${title} || '%'`); + } + async createListing(data: BusinessListing, table: typeof businesses_json | typeof commercials_json): Promise { + const newListing = { data, created: data.created, updated: data.updated, visits: 0, last_visit: null } + const [createdListing] = await this.conn.insert(table).values(newListing).returning(); return createdListing as BusinessesJson; } - async updateListing(id: string, data: BusinessListing): Promise { - const [updateListing] = await this.conn.update(businesses_json).set(data).where(eq(businesses_json.id, id)).returning(); + async updateListing(id: string, data: BusinessListing | CommercialPropertyListing, table: typeof businesses_json | typeof commercials_json): Promise { + const [updateListing] = await this.conn.update(table).set(data).where(eq(table.id, id)).returning(); return updateListing as BusinessesJson; } - async deleteListing(id: string): Promise { - await this.conn.delete(businesses_json).where(eq(businesses_json.id, id)); + async deleteListing(id: string, table: typeof businesses_json | typeof commercials_json): Promise { + await this.conn.delete(table).where(eq(table.id, id)); } - async findByPriceRange(minPrice: number, maxPrice: number): Promise { - return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'price' BETWEEN ${minPrice} AND ${maxPrice}`); - } + // ############################################################## + // Images for commercial Properties + // ############################################################## - async findByState(state: string): Promise { - return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'state' = ${state}`); + async updateImageOrder(id: string, imageOrder: ImageProperty[]) { + const listing = await this.findById(id, commercials_json) as unknown as CommercialPropertyListing + listing.imageOrder = imageOrder; + await this.updateListing(listing.id, listing, commercials_json) } - async findById(id: string): Promise { - return this.conn.select().from(businesses_json).where(sql`${businesses_json.id} = ${id}`); + async deleteImage(id: string, name: string,) { + const listing = await this.findById(id, commercials_json) as unknown as CommercialPropertyListing + const index = listing.imageOrder.findIndex(im => im.name === name); + if (index > -1) { + listing.imageOrder.splice(index, 1); + await this.updateListing(listing.id, listing, commercials_json) + } } - async findByUserId(userId: string): Promise { - return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'userId' = ${userId}`); + async addImage(id: string, imagename: string) { + const listing = await this.findById(id, commercials_json) as unknown as CommercialPropertyListing + listing.imageOrder.push({ name: imagename, code: '', id: '' }); + await this.updateListing(listing.id, listing, commercials_json) } - // async findByTitleContains(title: string): Promise { - // return this.conn.select().from(businesses_json).where(ilike(sql`${businesses_json.data}->>'title'`, `%${title}%`)); - // } - async findByTitleContains(title: string): Promise { - return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'title' ILIKE '%' || ${title} || '%'`); - } - async findListings(start = 0, size = 48): Promise<{ data: Record[]; total: number }> { - // return this.conn.select({ data: businesses_json.data }).from(businesses_json).offset(start).limit(size); - const [data, total] = await Promise.all([ - this.conn.select({ data: businesses_json.data }).from(businesses_json).offset(start).limit(size), - this.conn.select({ count: sql`count(*)` }).from(businesses_json).then((result) => Number(result[0].count)), - ]); - return { data, total }; - } - // ############################################################## - // ############################################################## - // async saveListing(listing: BusinessListing | CommercialPropertyListing) { - // const repo=listing.listingsCategory==='business'?this.businessListingRepository:this.commercialPropertyListingRepository; - // let result - // if (listing.id){ - // result = await repo.save(listing.id,listing as any) - // } else { - // result = await repo.save(listing as any) - // listing.id=result[EntityId]; - // result = await repo.save(listing.id,listing as any) - // } - // return result; - // } // async getCommercialPropertyListingById(id: string): Promise{ // return await this.commercialPropertyListingRepository.fetch(id) as unknown as CommercialPropertyListing; // } @@ -171,25 +199,8 @@ export class ListingsService { // return listings // } - // async updateImageOrder(id:string,imageOrder: ImageProperty[]){ - // const listing = await this.getCommercialPropertyListingById(id) as unknown as CommercialPropertyListing - // listing.imageOrder=imageOrder; - // this.saveListing(listing); - // } - // async deleteImage(listingid:string,name:string,){ - // const listing = await this.getCommercialPropertyListingById(listingid) as unknown as CommercialPropertyListing - // const index = listing.imageOrder.findIndex(im=>im.name===name); - // if (index>-1){ - // listing.imageOrder.splice(index,1); - // this.saveListing(listing); - // } - // } - // async addImage(id:string,imagename: string){ - // const listing = await this.getCommercialPropertyListingById(id) as unknown as CommercialPropertyListing - // listing.imageOrder.push({name:imagename,code:'',id:''}); - // this.saveListing(listing); - // } - + + } diff --git a/bizmatch-server/src/listings/unknown-listings.controller.ts b/bizmatch-server/src/listings/unknown-listings.controller.ts index 9e91dd5..3a01612 100644 --- a/bizmatch-server/src/listings/unknown-listings.controller.ts +++ b/bizmatch-server/src/listings/unknown-listings.controller.ts @@ -4,6 +4,7 @@ import { convertStringToNullUndefined } from '../utils.js'; import { ListingsService } from './listings.service.js'; import { WINSTON_MODULE_PROVIDER } from 'nest-winston'; import { Logger } from 'winston'; +import { businesses_json, commercials_json } from '../drizzle/schema.js'; @Controller('listings/undefined') export class UnknownListingsController { @@ -11,19 +12,15 @@ export class UnknownListingsController { constructor(private readonly listingsService:ListingsService,@Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger) { } + @Get(':id') + async findById(@Param('id') id:string): Promise { + const result = await this.listingsService.findById(id,businesses_json); + if (result){ + return result + } else { + return await this.listingsService.findById(id,commercials_json); + } + } - // @Get(':id') - // async findById(@Param('id') id:string): Promise { - // const result = await this.listingsService.getBusinessListingById(id); - // if (result.id){ - // return result - // } else { - // return await this.listingsService.getCommercialPropertyListingById(id); - // } - // } - // @Get('repo/:repo') - // async getAllByRepo(@Param('repo') repo:string): Promise { - // return await this.listingsService.getIdsForRepo(repo); - // } } diff --git a/bizmatch/src/app/services/listings.service.ts b/bizmatch/src/app/services/listings.service.ts index ef98b0f..021f919 100644 --- a/bizmatch/src/app/services/listings.service.ts +++ b/bizmatch/src/app/services/listings.service.ts @@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Observable, lastValueFrom } from 'rxjs'; import { environment } from '../../environments/environment'; -import { BusinessListing, ImageProperty, ListingCriteria, ListingType } from '../../../../common-models/src/main.model'; +import { BusinessListing, CommercialPropertyListing, ImageProperty, ListingCriteria, ListingType, ResponseBusinessListing, ResponseBusinessListingArray, ResponseCommercialPropertyListing, ResponseCommercialPropertyListingArray } from '../../../../common-models/src/main.model'; import onChange from 'on-change'; import { getSessionStorageHandler } from '../utils/utils'; @@ -18,11 +18,12 @@ export class ListingsService { // return this.http.get(`${this.apiBaseUrl}/bizmatch/business-listings`); // } async getListings(criteria:ListingCriteria):Promise{ - const result = await lastValueFrom(this.http.post(`${this.apiBaseUrl}/bizmatch/listings/${criteria.listingsCategory}/search`,criteria)); - return result; + const result = await lastValueFrom(this.http.post(`${this.apiBaseUrl}/bizmatch/listings/${criteria.listingsCategory}/search`,criteria)); + return result.data; } getListingById(id:string,listingsCategory?:'business'|'commercialProperty'):Observable{ - return this.http.get(`${this.apiBaseUrl}/bizmatch/listings/${listingsCategory}/${id}`); + const result = this.http.get(`${this.apiBaseUrl}/bizmatch/listings/${listingsCategory}/${id}`); + return result; } getListingByUserId(userid:string):Promise{ return lastValueFrom(this.http.get(`${this.apiBaseUrl}/bizmatch/listings/business/user/${userid}`)); diff --git a/common-models/src/main.model.ts b/common-models/src/main.model.ts index 7b42de2..b1897f1 100644 --- a/common-models/src/main.model.ts +++ b/common-models/src/main.model.ts @@ -67,6 +67,20 @@ export type ListingType = | BusinessListing | CommercialPropertyListing; +export type ResponseBusinessListingArray = { + data:BusinessListing[], + total:number +} +export type ResponseBusinessListing = { + data:BusinessListing +} +export type ResponseCommercialPropertyListingArray = { + data:CommercialPropertyListing[], + total:number +} +export type ResponseCommercialPropertyListing = { + data:CommercialPropertyListing +} export interface ListingCriteria { start:number, length:number, @@ -77,6 +91,7 @@ export interface ListingCriteria { minPrice:string, maxPrice:string, realEstateChecked:boolean, + title:string, listingsCategory:'business'|'professionals_brokers'|'commercialProperty', category:'professional|broker' } diff --git a/crawler/.vscode/launch.json b/crawler/.vscode/launch.json index 730a66a..de3a05f 100644 --- a/crawler/.vscode/launch.json +++ b/crawler/.vscode/launch.json @@ -16,18 +16,6 @@ "${workspaceFolder}/**/*.js" ] }, - { - "type": "node", - "request": "launch", - "name": "Import", - "skipFiles": [ - "/**" - ], - "program": "${workspaceFolder}/import.js", - "outFiles": [ - "${workspaceFolder}/**/*.js" - ] - }, { "type": "node", "request": "launch", @@ -44,11 +32,11 @@ { "type": "node", "request": "launch", - "name": "updateFields", + "name": "postgres_business_import", "skipFiles": [ "/**" ], - "program": "${workspaceFolder}/updateFields.js", + "program": "${workspaceFolder}/build/crawler/postgres_business_import.js", "outFiles": [ "${workspaceFolder}/**/*.js" ] diff --git a/crawler/data/businesses.json b/crawler/data/businesses.json index 35d2cca..8e5104f 100644 --- a/crawler/data/businesses.json +++ b/crawler/data/businesses.json @@ -7,7 +7,7 @@ "type": "13", "state": "CA", "city": "San Francisco", - "id": "02HRPPQYPJ6BMXS44WP8G7THB2", + "id": "5e99af54-40df-4157-a116-b89a4e39d266", "price": 300000, "salesRevenue": 450000, "temporary": false, @@ -33,7 +33,7 @@ "type": "13", "state": "CA", "city": "San Francisco", - "id": "02HRPPQYPJ6BMXS44WP8G7THB2", + "id": "c995561c-0251-4f43-a721-6f366a2eb41f", "price": 300000, "salesRevenue": 450000, "temporary": false, @@ -59,7 +59,7 @@ "type": "1", "state": "FL", "city": "Miami", - "id": "03HRPPQYPJ6BMXS44WP8G7THB3", + "id": "03ecd9db-ad0f-43a7-bb53-f697941793c8", "price": 500000, "salesRevenue": 800000, "temporary": false, @@ -85,7 +85,7 @@ "type": "5", "state": "NY", "city": "New York City", - "id": "04HRPPQYPJ6BMXS44WP8G7THB4", + "id": "86935fc5-8998-46eb-b381-de0fcfff6d27", "price": 250000, "salesRevenue": 500000, "temporary": false, @@ -111,7 +111,7 @@ "type": "12", "state": "OH", "city": "Cleveland", - "id": "05HRPPQYPJ6BMXS44WP8G7THB5", + "id": "68123b40-5ca8-416d-83cf-2092eacb9e45", "price": 2000000, "salesRevenue": 5000000, "temporary": false, @@ -137,7 +137,7 @@ "type": "10", "state": "CO", "city": "Denver", - "id": "06HRPPQYPJ6BMXS44WP8G7THB6", + "id": "ea233fce-9d45-4f05-8965-c5841896a974", "price": 150000, "salesRevenue": 300000, "temporary": false, @@ -163,7 +163,7 @@ "type": "5", "state": "TX", "city": "N/A", - "id": "07HRPPQYPJ6BMXS44WP8G7THB7", + "id": "c8c35d0d-9786-4c8f-bc3d-a01ec1202d4f", "price": 200000, "salesRevenue": 500000, "temporary": false, @@ -189,7 +189,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "08HRPPQYPJ6BMXS44WP8G7THB8", + "id": "1d60b7d2-e641-436f-9959-bc6602ce4142", "price": 750000, "salesRevenue": 1500000, "temporary": false, @@ -215,7 +215,7 @@ "type": "13", "state": "WA", "city": "Seattle", - "id": "09HRPPQYPJ6BMXS44WP8G7THB9", + "id": "7d0c32a2-4fbb-4db2-aba8-a74d158dea45", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -241,7 +241,7 @@ "type": "7", "state": "FL", "city": "Orlando", - "id": "10HRPPQYPJ6BMXS44WP8G7TH10", + "id": "4c73608d-ef13-4572-9d18-7f20d5240229", "price": 500000, "salesRevenue": 1000000, "temporary": false, @@ -267,7 +267,7 @@ "type": "1", "state": "CA", "city": "Los Angeles", - "id": "11HRPPQYPJ6BMXS44WP8G7TH11", + "id": "355ce340-17ea-4fd9-9ed4-fb84a21068ca", "price": 1500000, "salesRevenue": 3000000, "temporary": false, @@ -293,7 +293,7 @@ "type": "10", "state": "GA", "city": "Atlanta", - "id": "12HRPPQYPJ6BMXS44WP8G7TH12", + "id": "d15b3f85-9da0-4414-b4f5-91e9a1c1cadb", "price": 800000, "salesRevenue": 1500000, "temporary": false, @@ -319,7 +319,7 @@ "type": "12", "state": "MI", "city": "Detroit", - "id": "13HRPPQYPJ6BMXS44WP8G7TH13", + "id": "6568b482-b100-4b8f-9208-90436099345c", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -345,7 +345,7 @@ "type": "7", "state": "CO", "city": "Denver", - "id": "14HRPPQYPJ6BMXS44WP8G7TH14", + "id": "cbdf541a-d1ca-4297-9b60-b2857a666f3a", "price": 250000, "salesRevenue": 500000, "temporary": false, @@ -371,7 +371,7 @@ "type": "13", "state": "NY", "city": "New York City", - "id": "15HRPPQYPJ6BMXS44WP8G7TH15", + "id": "e9857442-1a9f-4830-a6e9-45e8844315e1", "price": 1000000, "salesRevenue": 2000000, "temporary": false, @@ -397,7 +397,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "16HRPPQYPJ6BMXS44WP8G7TH16", + "id": "778e453f-6346-4f6f-9e7b-9feab4878fc6", "price": 750000, "salesRevenue": 1500000, "temporary": false, @@ -423,7 +423,7 @@ "type": "7", "state": "IL", "city": "Chicago", - "id": "17HRPPQYPJ6BMXS44WP8G7TH17", + "id": "d7d686e2-e95e-4bd1-bc97-97056969c859", "price": 400000, "salesRevenue": 750000, "temporary": false, @@ -449,7 +449,7 @@ "type": "1", "state": "TX", "city": "Dallas", - "id": "18HRPPQYPJ6BMXS44WP8G7TH18", + "id": "bd7bfb74-d9ea-4ee1-bf1d-ab07ab769396", "price": 600000, "salesRevenue": 1200000, "temporary": false, @@ -475,7 +475,7 @@ "type": "13", "state": "TX", "city": "Austin", - "id": "19HRPPQYPJ6BMXS44WP8G7TH19", + "id": "9612a81a-2b97-4199-bdc3-3360b0a452da", "price": 350000, "salesRevenue": 750000, "temporary": false, @@ -501,7 +501,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "20HRPPQYPJ6BMXS44WP8G7TH20", + "id": "1a9579dd-5e69-41a3-a816-4dbd1e5a1248", "price": 1000000, "salesRevenue": 2000000, "temporary": false, @@ -527,7 +527,7 @@ "type": "7", "state": "TX", "city": "San Antonio", - "id": "21HRPPQYPJ6BMXS44WP8G7TH21", + "id": "47c3bb08-7f9a-43e6-9078-a0000fe2f2a8", "price": 500000, "salesRevenue": 1000000, "temporary": false, @@ -553,7 +553,7 @@ "type": "7", "state": "TX", "city": "Fort Worth", - "id": "22HRPPQYPJ6BMXS44WP8G7TH22", + "id": "6f054f48-e6d6-42b7-a5be-ed2e54c19ad6", "price": 800000, "salesRevenue": 1500000, "temporary": false, @@ -579,7 +579,7 @@ "type": "7", "state": "TX", "city": "El Paso", - "id": "23HRPPQYPJ6BMXS44WP8G7TH23", + "id": "56a3d421-bf6e-400e-91e2-e5a6c4ddfa90", "price": 650000, "salesRevenue": 1300000, "temporary": false, @@ -605,7 +605,7 @@ "type": "1", "state": "TX", "city": "Arlington", - "id": "24HRPPQYPJ6BMXS44WP8G7TH24", + "id": "4dc71338-294f-477d-8002-ca1d5149c9d1", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -631,7 +631,7 @@ "type": "7", "state": "TX", "city": "Plano", - "id": "25HRPPQYPJ6BMXS44WP8G7TH25", + "id": "1f8b9a18-1945-4bde-9e66-f81f1e6c8a79", "price": 300000, "salesRevenue": 600000, "temporary": false, @@ -657,7 +657,7 @@ "type": "12", "state": "TX", "city": "Houston", - "id": "26HRPPQYPJ6BMXS44WP8G7TH26", + "id": "aaec725b-1a1b-48c6-a987-8e5b60e2f004", "price": 1500000, "salesRevenue": 3000000, "temporary": false, @@ -683,7 +683,7 @@ "type": "13", "state": "TX", "city": "Austin", - "id": "27HRPPQYPJ6BMXS44WP8G7TH27", + "id": "6a6b502d-421b-4696-a1d6-345e9d7bacfe", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -709,7 +709,7 @@ "type": "5", "state": "TX", "city": "Dallas", - "id": "02BDSPQYKJ7CNXQ55ZP3H8SJQ2", + "id": "ec0c59ea-30a4-4d13-ae85-ff87c6ad29db", "price": 220000, "salesRevenue": 540000, "temporary": false, @@ -735,7 +735,7 @@ "type": "2", "state": "TX", "city": "Houston", - "id": "03ERQTLZM18DNFV66YQ9I2JV84", + "id": "9ff86d11-a900-4ed1-ad44-0209dcd11a5b", "price": 350000, "salesRevenue": 800000, "temporary": false, @@ -761,7 +761,7 @@ "type": "3", "state": "TX", "city": "San Antonio", - "id": "04FRMKZYNJ2CSXV77WP8G4TFB3", + "id": "96cfbee3-f0ed-47c7-ac6b-c0fac53fb269", "price": 150000, "salesRevenue": 300000, "temporary": false, @@ -787,7 +787,7 @@ "type": "6", "state": "TX", "city": "Midland", - "id": "05GTSNZLOJ8EKRQV66X9H2JVU5", + "id": "efb8b05b-e2c5-44b9-b05d-34ee79efc9c1", "price": 500000, "salesRevenue": 1200000, "temporary": false, @@ -813,7 +813,7 @@ "type": "8", "state": "TX", "city": "Austin", - "id": "06HRKKZYNJ2DSXV88WP3G4TFB6", + "id": "915fa470-2efa-462f-8685-ad10241d9a6d", "price": 300000, "salesRevenue": 650000, "temporary": false, @@ -839,7 +839,7 @@ "type": "9", "state": "TX", "city": "Houston", - "id": "07ITLNZLOJ8FKRV99YQAH3KUV7", + "id": "5c48de3b-60da-4f0a-826e-a5e1c9ac5d6e", "price": 600000, "salesRevenue": 1100000, "temporary": false, @@ -865,7 +865,7 @@ "type": "13", "state": "TX", "city": "Fort Worth", - "id": "08KFMKZYNJ3ESXVAAWP4G5TFB8", + "id": "ffb78c11-0a50-452e-a266-309303d5828c", "price": 280000, "salesRevenue": 500000, "temporary": false, @@ -891,7 +891,7 @@ "type": "8", "state": "TX", "city": "El Paso", - "id": "09LRNNZMOK9GRWVBBYRAI4LUW9", + "id": "be53b26b-0de9-4521-b6be-a6ae72d14e7c", "price": 200000, "salesRevenue": 400000, "temporary": false, @@ -917,7 +917,7 @@ "type": "12", "state": "TX", "city": "Corpus Christi", - "id": "10MSNKOPL10HTXWCCZSDJ5MEXA", + "id": "f20086fc-baf4-48e4-a8c0-013df0b06e2d", "price": 450000, "salesRevenue": 900000, "temporary": false, @@ -943,7 +943,7 @@ "type": "7", "state": "TX", "city": "Laredo", - "id": "11TNUPQMVP12IYXDDZTEK6NFGH", + "id": "40fedee3-5663-4148-be3c-0836147f654b", "price": 175000, "salesRevenue": 350000, "temporary": false, @@ -969,7 +969,7 @@ "type": "7", "state": "TX", "city": "Dallas", - "id": "28HRPPQYPJ6BMXS44WP8G7TH28", + "id": "6ed4eb91-5506-484a-bf61-9c5a1f17f9e4", "price": 1200000, "salesRevenue": 2000000, "temporary": false, @@ -995,7 +995,7 @@ "type": "13", "state": "TX", "city": "Houston", - "id": "29HRPPQYPJ6BMXS44WP8G7TH29", + "id": "491f756e-f6c5-4343-b271-8d7e2ae54094", "price": 500000, "salesRevenue": 1000000, "temporary": false, @@ -1021,7 +1021,7 @@ "type": "7", "state": "TX", "city": "San Antonio", - "id": "30HRPPQYPJ6BMXS44WP8G7TH30", + "id": "0ca6f114-607d-43c3-9c06-3987bd8701cc", "price": 800000, "salesRevenue": 1500000, "temporary": false, @@ -1047,7 +1047,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "31HRPPQYPJ6BMXS44WP8G7TH31", + "id": "d5dd481e-6df6-4eda-875a-2d59462ccc4f", "price": 400000, "salesRevenue": 750000, "temporary": false, @@ -1073,7 +1073,7 @@ "type": "7", "state": "TX", "city": "Dallas", - "id": "32HRPPQYPJ6BMXS44WP8G7TH32", + "id": "db37d70b-e293-4ce3-a74d-fe63f6dac542", "price": 1000000, "salesRevenue": 2000000, "temporary": false, @@ -1099,7 +1099,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "33HRPPQYPJ6BMXS44WP8G7TH33", + "id": "c3e48ef2-50c2-4caa-822c-767dcb9f1901", "price": 800000, "salesRevenue": 1500000, "temporary": false, @@ -1125,7 +1125,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "34HRPPQYPJ6BMXS44WP8G7TH34", + "id": "3751b37c-fa99-423b-91d2-d2ece09cfaf3", "price": 300000, "salesRevenue": 600000, "temporary": false, @@ -1151,7 +1151,7 @@ "type": "7", "state": "TX", "city": "San Antonio", - "id": "35HRPPQYPJ6BMXS44WP8G7TH35", + "id": "8d9a069e-97f4-476c-be81-6ae18554ea36", "price": 400000, "salesRevenue": 800000, "temporary": false, @@ -1177,7 +1177,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "36HRPPQYPJ6BMXS44WP8G7TH36", + "id": "30d0c76c-0aa3-4ed9-a987-58f5b6c8bd25", "price": 2500000, "salesRevenue": 1500000, "temporary": false, @@ -1203,7 +1203,7 @@ "type": "7", "state": "TX", "city": "Dallas", - "id": "37HRPPQYPJ6BMXS44WP8G7TH37", + "id": "9f0f59f7-3e77-456e-b9f5-b63a667db1bf", "price": 500000, "salesRevenue": 1000000, "temporary": false, @@ -1229,7 +1229,7 @@ "type": "5", "state": "TX", "city": "Houston", - "id": "38HRPPQYPJ6BMXS44WP8G7TH38", + "id": "9a2914cf-ab17-40ad-a5a1-6eeefe9a7715", "price": 600000, "salesRevenue": 1200000, "temporary": false, @@ -1255,7 +1255,7 @@ "type": "7", "state": "TX", "city": "San Antonio", - "id": "39HRPPQYPJ6BMXS44WP8G7TH39", + "id": "dc3a937b-7bf3-47c2-8435-32e25435581e", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -1281,7 +1281,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "40HRPPQYPJ6BMXS44WP8G7TH40", + "id": "a5c26bb6-77d8-4f81-bab3-74b4060188be", "price": 350000, "salesRevenue": 700000, "temporary": false, @@ -1307,7 +1307,7 @@ "type": "7", "state": "TX", "city": "Dallas", - "id": "41HRPPQYPJ6BMXS44WP8G7TH41", + "id": "942169b5-9fd0-4375-81a9-f6903a54835d", "price": 600000, "salesRevenue": 1200000, "temporary": false, @@ -1333,7 +1333,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "42HRPPQYPJ6BMXS44WP8G7TH42", + "id": "1b0d5ff5-6ca8-451d-9ec3-d65c58f2a074", "price": 1500000, "salesRevenue": 3000000, "temporary": false, @@ -1359,7 +1359,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "43HRPPQYPJ6BMXS44WP8G7TH43", + "id": "17de616a-1597-489d-b61a-68b22f3ce82a", "price": 400000, "salesRevenue": 800000, "temporary": false, @@ -1385,7 +1385,7 @@ "type": "7", "state": "TX", "city": "San Antonio", - "id": "44HRPPQYPJ6BMXS44WP8G7TH44", + "id": "8d273a3c-a4e0-4038-8063-ed3b50ee7432", "price": 800000, "salesRevenue": 1500000, "temporary": false, @@ -1411,7 +1411,7 @@ "type": "7", "state": "TX", "city": "Dallas", - "id": "45HRPPQYPJ6BMXS44WP8G7TH45", + "id": "644fc16e-b65a-4f0b-ab05-40f7bfd0768f", "price": 1000000, "salesRevenue": 2000000, "temporary": false, @@ -1437,7 +1437,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "46HRPPQYPJ6BMXS44WP8G7TH46", + "id": "fc7b68ab-4844-4e5e-8118-29eec5c6de6c", "price": 500000, "salesRevenue": 1000000, "temporary": false, @@ -1463,7 +1463,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "47HRPPQYPJ6BMXS44WP8G7TH47", + "id": "ac3c7e6e-1f7d-4054-ae0d-6cdab59263c0", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -1489,7 +1489,7 @@ "type": "13", "state": "WA", "city": "Seattle", - "id": "48HRPPQYPJ6BMXS44WP8G7TH48", + "id": "cc3352ac-dd63-486b-9e1c-19804411eba5", "price": 400000, "salesRevenue": 800000, "temporary": false, @@ -1515,7 +1515,7 @@ "type": "1", "state": "FL", "city": "Miami", - "id": "49HRPPQYPJ6BMXS44WP8G7TH49", + "id": "a787e513-66ed-46fb-8660-84af628f50de", "price": 750000, "salesRevenue": 1500000, "temporary": false, @@ -1541,7 +1541,7 @@ "type": "7", "state": "CO", "city": "Denver", - "id": "50HRPPQYPJ6BMXS44WP8G7TH50", + "id": "58173ec8-76ed-49d6-a676-0ad6de2b6b06", "price": 300000, "salesRevenue": 600000, "temporary": false, @@ -1567,7 +1567,7 @@ "type": "7", "state": "IL", "city": "Chicago", - "id": "51HRPPQYPJ6BMXS44WP8G7TH51", + "id": "6142b0fb-89f8-4be9-a10c-858981cd8bb3", "price": 1500000, "salesRevenue": 2500000, "temporary": false, @@ -1593,7 +1593,7 @@ "type": "7", "state": "LA", "city": "New Orleans", - "id": "52HRPPQYPJ6BMXS44WP8G7TH52", + "id": "88f01008-f9e0-47d0-870a-de77ded38e15", "price": 2000000, "salesRevenue": 1200000, "temporary": false, @@ -1619,7 +1619,7 @@ "type": "7", "state": "OR", "city": "Portland", - "id": "53HRPPQYPJ6BMXS44WP8G7TH53", + "id": "dcb1d189-29d5-449f-a6dd-ec21421ca11a", "price": 250000, "salesRevenue": 500000, "temporary": false, @@ -1645,7 +1645,7 @@ "type": "7", "state": "NM", "city": "Santa Fe", - "id": "54HRPPQYPJ6BMXS44WP8G7TH54", + "id": "7cfc0821-6292-4ef0-8ea7-d24b51309c0c", "price": 800000, "salesRevenue": 1500000, "temporary": false, @@ -1671,7 +1671,7 @@ "type": "7", "state": "GA", "city": "Atlanta", - "id": "55HRPPQYPJ6BMXS44WP8G7TH55", + "id": "19cd17a6-e271-4fe1-9011-237faede709f", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -1697,7 +1697,7 @@ "type": "13", "state": "MA", "city": "Boston", - "id": "56HRPPQYPJ6BMXS44WP8G7TH56", + "id": "667e68f6-ed43-443d-bc1b-a53c10ff327d", "price": 1000000, "salesRevenue": 2000000, "temporary": false, @@ -1723,7 +1723,7 @@ "type": "7", "state": "CA", "city": "Los Angeles", - "id": "57HRPPQYPJ6BMXS44WP8G7TH57", + "id": "ce01895f-1cc9-46e6-9c7d-52010180eab2", "price": 600000, "salesRevenue": 1200000, "temporary": false, @@ -1749,7 +1749,7 @@ "type": "7", "state": "PA", "city": "Philadelphia", - "id": "58HRPPQYPJ6BMXS44WP8G7TH58", + "id": "8a7d3137-b411-4b59-b2c0-666a6beee066", "price": 1500000, "salesRevenue": 3000000, "temporary": false, @@ -1775,7 +1775,7 @@ "type": "7", "state": "AZ", "city": "Phoenix", - "id": "59HRPPQYPJ6BMXS44WP8G7TH59", + "id": "0d47ecd7-50d8-46bf-ba51-5d1b16409f0e", "price": 750000, "salesRevenue": 1500000, "temporary": false, @@ -1801,7 +1801,7 @@ "type": "7", "state": "NC", "city": "Charlotte", - "id": "60HRPPQYPJ6BMXS44WP8G7TH60", + "id": "464eecb0-8fba-4408-9f77-088bdb82dca1", "price": 500000, "salesRevenue": 1000000, "temporary": false, @@ -1827,7 +1827,7 @@ "type": "7", "state": "OH", "city": "Columbus", - "id": "61HRPPQYPJ6BMXS44WP8G7TH61", + "id": "5d9c9185-c790-4751-8cd9-ab7f5c61c95c", "price": 600000, "salesRevenue": 1200000, "temporary": false, @@ -1853,7 +1853,7 @@ "type": "7", "state": "NV", "city": "Las Vegas", - "id": "62HRPPQYPJ6BMXS44WP8G7TH62", + "id": "542302f8-16e5-4162-8be0-f28b26bf2e91", "price": 900000, "salesRevenue": 1800000, "temporary": false, @@ -1879,7 +1879,7 @@ "type": "12", "state": "MI", "city": "Detroit", - "id": "63HRPPQYPJ6BMXS44WP8G7TH63", + "id": "6ffd274b-0cf2-4a2e-a699-f773ddb8c1a8", "price": 1800000, "salesRevenue": 3500000, "temporary": false, @@ -1905,7 +1905,7 @@ "type": "5", "state": "CA", "city": "San Francisco", - "id": "64HRPPQYPJ6BMXS44WP8G7TH64", + "id": "db42433c-efd6-40b7-89bf-bce2a0cb55a6", "price": 400000, "salesRevenue": 800000, "temporary": false, @@ -1931,7 +1931,7 @@ "type": "7", "state": "FL", "city": "Miami", - "id": "65HRPPQYPJ6BMXS44WP8G7TH65", + "id": "c4bf6c70-b2b4-4626-a773-82e3c1fac634", "price": 1200000, "salesRevenue": 2500000, "temporary": false, @@ -1957,7 +1957,7 @@ "type": "5", "state": "CO", "city": "Denver", - "id": "66HRPPQYPJ6BMXS44WP8G7TH66", + "id": "6709e264-25fc-41fc-adaf-0fba4cba802d", "price": 800000, "salesRevenue": 1600000, "temporary": false, @@ -1983,7 +1983,7 @@ "type": "7", "state": "WA", "city": "Seattle", - "id": "67HRPPQYPJ6BMXS44WP8G7TH67", + "id": "6e9edbc6-a8de-4bb3-a542-d893648d0694", "price": 1500000, "salesRevenue": 3000000, "temporary": false, @@ -2009,7 +2009,7 @@ "type": "13", "state": "CA", "city": "San Francisco", - "id": "01HRPPQYPJ6BMXS44WP8G7THB2", + "id": "4f509d57-c86a-4026-ae51-46c3313d3d1c", "price": 350000, "salesRevenue": 500000, "temporary": false, @@ -2035,7 +2035,7 @@ "type": "1", "state": "TX", "city": "Houston", - "id": "01HRPPQYPJ6BMXS44WP8G7THB3", + "id": "0204edea-12ca-4f12-87bd-3b008d124575", "price": 500000, "salesRevenue": 800000, "temporary": false, @@ -2061,7 +2061,7 @@ "type": "8", "state": "NY", "city": "New York City", - "id": "01HRPPQYPJ6BMXS44WP8G7THB4", + "id": "d9c86b12-0607-44d4-9c9f-7c2578a8cf20", "price": 1200000, "salesRevenue": 2000000, "temporary": false, @@ -2087,7 +2087,7 @@ "type": "9", "state": "OR", "city": "Portland", - "id": "01HRPPQYPJ6BMXS44WP8G7THB5", + "id": "709d1db9-44a4-4479-842f-ab806bc0d216", "price": 1500000, "salesRevenue": 750000, "temporary": false, @@ -2113,7 +2113,7 @@ "type": "10", "state": "FL", "city": "Miami", - "id": "01HRPPQYPJ6BMXS44WP8G7THB6", + "id": "1d1be25b-b6a4-48e1-8892-dc71c2524a40", "price": 400000, "salesRevenue": 600000, "temporary": false, @@ -2139,7 +2139,7 @@ "type": "11", "state": "IL", "city": "Chicago", - "id": "01HRPPQYPJ6BMXS44WP8G7THB7", + "id": "18ead709-bb53-4def-a5d9-db55f1e46d4e", "price": 2000000, "salesRevenue": 3000000, "temporary": false, @@ -2165,7 +2165,7 @@ "type": "12", "state": "NC", "city": "Charlotte", - "id": "01HRPPQYPJ6BMXS44WP8G7THB8", + "id": "26a6c052-448d-4ced-9d84-5d11f55289e2", "price": 1800000, "salesRevenue": 2500000, "temporary": false, @@ -2191,7 +2191,7 @@ "type": "13", "state": "GA", "city": "Atlanta", - "id": "01HRPPQYPJ6BMXS44WP8G7THB9", + "id": "9e2182db-1b06-44b5-bbff-74a85ba40c33", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -2217,7 +2217,7 @@ "type": "1", "state": "AZ", "city": "Phoenix", - "id": "01HRPPQYPJ6BMXS44WP8G7THB10", + "id": "4a250ba3-33d0-4a8c-a62e-b1deca4fdf32", "price": 250000, "salesRevenue": 400000, "temporary": false, @@ -2243,7 +2243,7 @@ "type": "2", "state": "CO", "city": "Denver", - "id": "01HRPPQYPJ6BMXS44WP8G7THB11", + "id": "40590f2d-8696-41cc-917a-2fd95abd54d7", "price": 1200000, "salesRevenue": 1800000, "temporary": false, @@ -2269,7 +2269,7 @@ "type": "3", "state": "WA", "city": "Seattle", - "id": "01HRPPQYPJ6BMXS44WP8G7THB12", + "id": "5fcb39c6-ae9e-4355-82eb-a5312b10cc43", "price": 1500000, "salesRevenue": 2000000, "temporary": false, @@ -2295,7 +2295,7 @@ "type": "7", "state": "FL", "city": "Orlando", - "id": "01HRPPQYPJ6BMXS44WP8G7THB13", + "id": "8e53d650-0862-43a8-9a8e-a6574b2a1548", "price": 500000, "salesRevenue": 750000, "temporary": false, @@ -2321,7 +2321,7 @@ "type": "8", "state": "TX", "city": "Austin", - "id": "01HRPPQYPJ6BMXS44WP8G7THB14", + "id": "84b59db9-e51a-401b-ab96-ce4a23f44b78", "price": 1000000, "salesRevenue": 1500000, "temporary": false, @@ -2347,7 +2347,7 @@ "type": "9", "state": "CA", "city": "Napa", - "id": "01HRPPQYPJ6BMXS44WP8G7THB15", + "id": "177540c5-6165-47aa-8295-80dd98938d39", "price": 5000000, "salesRevenue": 3000000, "temporary": false, @@ -2373,7 +2373,7 @@ "type": "10", "state": "GA", "city": "Atlanta", - "id": "01HRPPQYPJ6BMXS44WP8G7THB16", + "id": "63cef11a-634b-487f-b265-b9d86dc2ba50", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -2399,7 +2399,7 @@ "type": "11", "state": "IL", "city": "Chicago", - "id": "01HRPPQYPJ6BMXS44WP8G7THB17", + "id": "af77458d-8d7b-42d7-bddd-8ae583f62610", "price": 1200000, "salesRevenue": 1800000, "temporary": false, @@ -2425,7 +2425,7 @@ "type": "12", "state": "OH", "city": "Cleveland", - "id": "01HRPPQYPJ6BMXS44WP8G7THB18", + "id": "440381c8-fb38-467b-8bcb-73c952555bd5", "price": 3000000, "salesRevenue": 5000000, "temporary": false, @@ -2451,7 +2451,7 @@ "type": "13", "state": "NY", "city": "New York City", - "id": "01HRPPQYPJ6BMXS44WP8G7THB19", + "id": "fae3c3c0-04e6-4bc0-88c6-a16fb0ad82ee", "price": 1500000, "salesRevenue": 2000000, "temporary": false, @@ -2477,7 +2477,7 @@ "type": "1", "state": "CA", "city": "Los Angeles", - "id": "01HRPPQYPJ6BMXS44WP8G7THB20", + "id": "2ca1962a-d3e9-4fdb-9348-01e9f92d0f3c", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -2503,7 +2503,7 @@ "type": "2", "state": "TX", "city": "Dallas", - "id": "01HRPPQYPJ6BMXS44WP8G7THB21", + "id": "57dba8a6-de2d-494e-996f-51bc86d2bb5f", "price": 1000000, "salesRevenue": 1500000, "temporary": false, @@ -2529,7 +2529,7 @@ "type": "3", "state": "FL", "city": "Miami", - "id": "01HRPPQYPJ6BMXS44WP8G7THB22", + "id": "e5a2c41f-d49d-42ec-80ee-2b5c265605fc", "price": 1500000, "salesRevenue": 2000000, "temporary": false, @@ -2555,7 +2555,7 @@ "type": "7", "state": "CO", "city": "Denver", - "id": "01HRPPQYPJ6BMXS44WP8G7THB23", + "id": "6b97da33-5cc5-4dab-a03e-6714b4ec1bdf", "price": 250000, "salesRevenue": 400000, "temporary": false, @@ -2581,7 +2581,7 @@ "type": "7", "state": "NY", "city": "New York City", - "id": "01HRPPQYPJ6BMXS44WP8G7THB24", + "id": "d3e2bf85-b7b8-464a-8fe8-72c463d607a9", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -2607,7 +2607,7 @@ "type": "9", "state": "CA", "city": "Sacramento", - "id": "01HRPPQYPJ6BMXS44WP8G7THB25", + "id": "7449f97e-3c3c-4b79-a39b-04df39ed677d", "price": 1500000, "salesRevenue": 1000000, "temporary": false, @@ -2633,7 +2633,7 @@ "type": "10", "state": "TX", "city": "Houston", - "id": "01HRPPQYPJ6BMXS44WP8G7THB26", + "id": "821d2ae1-4662-4c01-a7db-994c56e1e688", "price": 500000, "salesRevenue": 800000, "temporary": false, @@ -2659,7 +2659,7 @@ "type": "11", "state": "IL", "city": "Chicago", - "id": "01HRPPQYPJ6BMXS44WP8G7THB27", + "id": "d4330cee-578a-4418-a7d5-497c9c7e24c2", "price": 1200000, "salesRevenue": 1800000, "temporary": false, @@ -2685,7 +2685,7 @@ "type": "12", "state": "OH", "city": "Columbus", - "id": "01HRPPQYPJ6BMXS44WP8G7THB28", + "id": "1d77f23f-e45a-4af2-8e8b-84887c47b0d4", "price": 1000000, "salesRevenue": 1500000, "temporary": false, @@ -2711,7 +2711,7 @@ "type": "13", "state": "PA", "city": "Philadelphia", - "id": "01HRPPQYPJ6BMXS44WP8G7THB29", + "id": "50b46fc8-a830-4d89-af7b-c74eec50d993", "price": 500000, "salesRevenue": 750000, "temporary": false, @@ -2737,7 +2737,7 @@ "type": "1", "state": "AZ", "city": "Phoenix", - "id": "01HRPPQYPJ6BMXS44WP8G7THB30", + "id": "a975e9bd-2858-4713-a498-0fc6af8aee3c", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -2763,7 +2763,7 @@ "type": "2", "state": "WA", "city": "Seattle", - "id": "01HRPPQYPJ6BMXS44WP8G7THB31", + "id": "c3c0e40d-c1d1-4e3e-bbca-4c36d2eb37d3", "price": 1200000, "salesRevenue": 1800000, "temporary": false, @@ -2789,7 +2789,7 @@ "type": "7", "state": "NC", "city": "Charlotte", - "id": "01HRPPQYPJ6BMXS44WP8G7THB32", + "id": "2609c48b-5e38-46c2-95df-a54d10238dd9", "price": 500000, "salesRevenue": 800000, "temporary": false, @@ -2815,7 +2815,7 @@ "type": "8", "state": "CA", "city": "San Diego", - "id": "01HRPPQYPJ6BMXS44WP8G7THB33", + "id": "e2d8e3bb-1962-4a97-b470-fc29096b90de", "price": 1000000, "salesRevenue": 1500000, "temporary": false, @@ -2841,7 +2841,7 @@ "type": "9", "state": "OR", "city": "Portland", - "id": "01HRPPQYPJ6BMXS44WP8G7THB34", + "id": "ca5f80f5-574f-4f8d-af71-81ae166315f3", "price": 400000, "salesRevenue": 600000, "temporary": false, @@ -2867,7 +2867,7 @@ "type": "10", "state": "FL", "city": "Orlando", - "id": "01HRPPQYPJ6BMXS44WP8G7THB35", + "id": "6732f641-66c8-4551-85ce-b624dd0efd51", "price": 500000, "salesRevenue": 800000, "temporary": false, @@ -2893,7 +2893,7 @@ "type": "11", "state": "CO", "city": "Denver", - "id": "01HRPPQYPJ6BMXS44WP8G7THB36", + "id": "aae3a511-1698-4baa-b324-1aa433b7ea3b", "price": 1500000, "salesRevenue": 2000000, "temporary": false, @@ -2919,7 +2919,7 @@ "type": "12", "state": "PA", "city": "Philadelphia", - "id": "01HRPPQYPJ6BMXS44WP8G7THB37", + "id": "f73a91a6-a1ed-4b88-a8a9-feee0075d22e", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -2945,7 +2945,7 @@ "type": "13", "state": "GA", "city": "Atlanta", - "id": "01HRPPQYPJ6BMXS44WP8G7THB38", + "id": "f755028f-7e8b-4c1f-ae13-d2f6ee52790c", "price": 600000, "salesRevenue": 1000000, "temporary": false, @@ -2971,7 +2971,7 @@ "type": "1", "state": "TX", "city": "San Antonio", - "id": "01HRPPQYPJ6BMXS44WP8G7THB39", + "id": "66d0798c-ae1c-4ad7-9928-3447a5ae1261", "price": 400000, "salesRevenue": 600000, "temporary": false, @@ -2997,7 +2997,7 @@ "type": "7", "state": "AZ", "city": "Phoenix", - "id": "01HRPPQYPJ6BMXS44WP8G7THB40", + "id": "b6a1ae3f-0c91-49b0-8ab7-806017398355", "price": 800000, "salesRevenue": 1200000, "temporary": false, @@ -3023,7 +3023,7 @@ "type": "13", "state": "TX", "city": "Dallas", - "id": "01HRPPQYPJ6BMXS44WP8G7THB41", + "id": "e653a6bf-8505-47dd-b668-5f923826b96c", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -3048,7 +3048,7 @@ "type": "1", "state": "TX", "city": "Houston", - "id": "01HRPPQYPJ6BMXS44WP8G7THB42", + "id": "376ad9af-4b8d-41e8-9ed4-d96c54cc206c", "price": 800000, "salesRevenue": 1200000, "leasedLocation": true, @@ -3073,7 +3073,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "01HRPPQYPJ6BMXS44WP8G7THB43", + "id": "ef80fd55-6178-4aa6-b99f-59641485940d", "price": 600000, "salesRevenue": 1000000, "leasedLocation": false, @@ -3098,7 +3098,7 @@ "type": "10", "state": "TX", "city": "San Antonio", - "id": "01HRPPQYPJ6BMXS44WP8G7THB44", + "id": "63e6461a-936b-4e91-af70-59d8d22e2c64", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -3123,7 +3123,7 @@ "type": "11", "state": "TX", "city": "El Paso", - "id": "01HRPPQYPJ6BMXS44WP8G7THB45", + "id": "12329e7f-bbfc-4545-9672-d111a38a96ef", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -3148,7 +3148,7 @@ "type": "12", "state": "TX", "city": "Fort Worth", - "id": "01HRPPQYPJ6BMXS44WP8G7THB46", + "id": "f89c1ef6-62b9-409f-8cc2-258eb4eeb62c", "price": 2500000, "salesRevenue": 4000000, "leasedLocation": false, @@ -3173,7 +3173,7 @@ "type": "13", "state": "TX", "city": "Plano", - "id": "01HRPPQYPJ6BMXS44WP8G7THB47", + "id": "87bc64d8-b16e-4f89-9dab-2801c414e941", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -3198,7 +3198,7 @@ "type": "1", "state": "TX", "city": "Lubbock", - "id": "01HRPPQYPJ6BMXS44WP8G7THB48", + "id": "36683cdb-d33d-4fb8-93a5-631982dcff1d", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -3223,7 +3223,7 @@ "type": "2", "state": "TX", "city": "Corpus Christi", - "id": "01HRPPQYPJ6BMXS44WP8G7THB49", + "id": "df92b91b-3ca1-45c7-bcf8-e087c0e38aa6", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": false, @@ -3248,7 +3248,7 @@ "type": "3", "state": "TX", "city": "Irving", - "id": "01HRPPQYPJ6BMXS44WP8G7THB50", + "id": "adb0a778-51e1-4747-92c8-d729b0bc19a8", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -3273,7 +3273,7 @@ "type": "7", "state": "TX", "city": "Arlington", - "id": "01HRPPQYPJ6BMXS44WP8G7THB51", + "id": "887c0d5f-0bbd-45ea-95a9-2db1f94f7411", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -3298,7 +3298,7 @@ "type": "7", "state": "TX", "city": "Frisco", - "id": "01HRPPQYPJ6BMXS44WP8G7THB52", + "id": "3e442b6c-9f8d-45cf-8710-a830d86dac51", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -3323,7 +3323,7 @@ "type": "5", "state": "TX", "city": "Amarillo", - "id": "01HRPPQYPJ6BMXS44WP8G7THB53", + "id": "7682e952-adab-420c-b704-c0f0eeb07e72", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -3348,7 +3348,7 @@ "type": "10", "state": "TX", "city": "Beaumont", - "id": "01HRPPQYPJ6BMXS44WP8G7THB54", + "id": "5a1403c0-8581-4573-8aa9-81f742be1b3b", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -3373,7 +3373,7 @@ "type": "11", "state": "TX", "city": "Waco", - "id": "01HRPPQYPJ6BMXS44WP8G7THB55", + "id": "5eb8427a-b9d4-4ff7-9161-b44084f14ef7", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": true, @@ -3398,7 +3398,7 @@ "type": "12", "state": "TX", "city": "Midland", - "id": "01HRPPQYPJ6BMXS44WP8G7THB56", + "id": "5f767b1d-9abd-46c8-90c5-40c29c2987da", "price": 800000, "salesRevenue": 1200000, "leasedLocation": true, @@ -3423,7 +3423,7 @@ "type": "13", "state": "TX", "city": "Odessa", - "id": "01HRPPQYPJ6BMXS44WP8G7THB57", + "id": "7d53049a-97cc-483d-b194-438c6f44d289", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -3448,7 +3448,7 @@ "type": "5", "state": "TX", "city": "Abilene", - "id": "01HRPPQYPJ6BMXS44WP8G7THB58", + "id": "c0907b46-6b5d-404c-977b-091bd3334e36", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -3473,7 +3473,7 @@ "type": "10", "state": "TX", "city": "Round Rock", - "id": "01HRPPQYPJ6BMXS44WP8G7THB59", + "id": "8032daa0-69b4-41a1-a294-fb030c31a9d0", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -3498,7 +3498,7 @@ "type": "11", "state": "TX", "city": "McAllen", - "id": "01HRPPQYPJ6BMXS44WP8G7THB60", + "id": "d3bafab2-6a4a-4c3e-931d-8b9bafe15c9f", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -3523,7 +3523,7 @@ "type": "1", "state": "TX", "city": "Tyler", - "id": "01HRPPQYPJ6BMXS44WP8G7THB61", + "id": "fff2b116-3972-4c9f-80a2-0174d76d25f3", "price": 350000, "salesRevenue": 550000, "leasedLocation": true, @@ -3548,7 +3548,7 @@ "type": "7", "state": "TX", "city": "College Station", - "id": "01HRPPQYPJ6BMXS44WP8G7THB62", + "id": "83b0ba4e-edcc-466c-b94f-d84bdaff69e3", "price": 600000, "salesRevenue": 1000000, "leasedLocation": false, @@ -3573,7 +3573,7 @@ "type": "7", "state": "TX", "city": "Wichita Falls", - "id": "01HRPPQYPJ6BMXS44WP8G7THB63", + "id": "6ab9fbe8-1323-407a-aa83-0d51c6df9565", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -3598,7 +3598,7 @@ "type": "13", "state": "TX", "city": "San Marcos", - "id": "01HRPPQYPJ6BMXS44WP8G7THB64", + "id": "6808026a-c33a-4954-b6c0-e9e94153b0f1", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -3623,7 +3623,7 @@ "type": "2", "state": "TX", "city": "Temple", - "id": "01HRPPQYPJ6BMXS44WP8G7THB65", + "id": "734f0c4f-fffe-45c4-bff9-a50d9995db5e", "price": 800000, "salesRevenue": 1200000, "leasedLocation": false, @@ -3648,7 +3648,7 @@ "type": "2", "state": "TX", "city": "New Braunfels", - "id": "01HRPPQYPJ6BMXS44WP8G7THB66", + "id": "dbd73122-08c3-428d-83f1-3bd5610b9ca0", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": false, @@ -3673,7 +3673,7 @@ "type": "10", "state": "TX", "city": "Lewisville", - "id": "01HRPPQYPJ6BMXS44WP8G7THB67", + "id": "1c55bc74-d130-41eb-94a7-4a08a949111e", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -3698,7 +3698,7 @@ "type": "13", "state": "TX", "city": "Flower Mound", - "id": "01HRPPQYPJ6BMXS44WP8G7THB68", + "id": "6743a498-ddef-4349-a9dd-072fc6e04478", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -3723,7 +3723,7 @@ "type": "10", "state": "TX", "city": "Georgetown", - "id": "01HRPPQYPJ6BMXS44WP8G7THB69", + "id": "1fd1427b-240b-4548-aa69-3f5819c96617", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -3748,7 +3748,7 @@ "type": "1", "state": "TX", "city": "Mansfield", - "id": "01HRPPQYPJ6BMXS44WP8G7THB70", + "id": "004f4eee-baf0-4334-906b-1d558544c364", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -3773,7 +3773,7 @@ "type": "10", "state": "TX", "city": "Cedar Park", - "id": "01HRPPQYPJ6BMXS44WP8G7THB71", + "id": "5ad7f9ab-55b0-44a3-b57d-6e01a5bf9cb4", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -3798,7 +3798,7 @@ "type": "10", "state": "TX", "city": "Pflugerville", - "id": "01HRPPQYPJ6BMXS44WP8G7THB72", + "id": "1215df93-2bc7-41fc-8e46-47f76b6cf67c", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -3823,7 +3823,7 @@ "type": "7", "state": "TX", "city": "Euless", - "id": "01HRPPQYPJ6BMXS44WP8G7THB73", + "id": "2cfa20eb-da23-4bb6-b12f-568c9e1a5184", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -3848,7 +3848,7 @@ "type": "10", "state": "TX", "city": "Grapevine", - "id": "01HRPPQYPJ6BMXS44WP8G7THB74", + "id": "d26b7fdb-b858-4775-8cd5-8e410f9d050f", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -3873,7 +3873,7 @@ "type": "10", "state": "TX", "city": "Coppell", - "id": "01HRPPQYPJ6BMXS44WP8G7THB75", + "id": "5f524489-09f1-4a89-9758-29110dded3e2", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -3898,7 +3898,7 @@ "type": "10", "state": "TX", "city": "Katy", - "id": "01HRPPQYPJ6BMXS44WP8G7THB76", + "id": "0b096c23-dcbb-48e1-a23a-c9adc462f6df", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -3923,7 +3923,7 @@ "type": "7", "state": "TX", "city": "Friendswood", - "id": "01HRPPQYPJ6BMXS44WP8G7THB77", + "id": "782e3012-0500-4be5-a7a3-bab70599c6e6", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -3948,7 +3948,7 @@ "type": "10", "state": "TX", "city": "Little Elm", - "id": "01HRPPQYPJ6BMXS44WP8G7THB78", + "id": "6a0c6b3b-a39d-483e-8f6e-61c3929bd33d", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -3973,7 +3973,7 @@ "type": "10", "state": "TX", "city": "The Colony", - "id": "01HRPPQYPJ6BMXS44WP8G7THB79", + "id": "292b3a0d-8b41-4699-9844-792be7dd6979", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -3998,7 +3998,7 @@ "type": "10", "state": "TX", "city": "Schertz", - "id": "01HRPPQYPJ6BMXS44WP8G7THB80", + "id": "652c23b7-70b1-4ff3-b6fe-a400474f74b8", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -4023,7 +4023,7 @@ "type": "1", "state": "TX", "city": "Houston", - "id": "01HRPPQYPJ6BMXS44WP8G7THB81", + "id": "34b66661-eab3-4a9c-a6e1-eab6b0c837df", "price": 750000, "salesRevenue": 1200000, "leasedLocation": true, @@ -4048,7 +4048,7 @@ "type": "13", "state": "TX", "city": "Austin", - "id": "01HRPPQYPJ6BMXS44WP8G7THB82", + "id": "642f4e5f-39e8-4212-8ad5-13d088735991", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -4073,7 +4073,7 @@ "type": "10", "state": "TX", "city": "Dallas", - "id": "01HRPPQYPJ6BMXS44WP8G7THB83", + "id": "5ea9babb-8b80-443b-9990-1fd681d1c915", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -4098,7 +4098,7 @@ "type": "11", "state": "TX", "city": "San Antonio", - "id": "01HRPPQYPJ6BMXS44WP8G7THB84", + "id": "af055e79-1ef9-4964-b463-79d581288cd1", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -4123,7 +4123,7 @@ "type": "12", "state": "TX", "city": "Fort Worth", - "id": "01HRPPQYPJ6BMXS44WP8G7THB85", + "id": "03d88af6-cfa5-4f3e-aeed-f8095368ab8b", "price": 2000000, "salesRevenue": 3000000, "leasedLocation": false, @@ -4148,7 +4148,7 @@ "type": "10", "state": "TX", "city": "El Paso", - "id": "01HRPPQYPJ6BMXS44WP8G7THB86", + "id": "84442dd2-1e4d-459c-bbc0-7acef2e66c0d", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -4173,7 +4173,7 @@ "type": "7", "state": "TX", "city": "Plano", - "id": "01HRPPQYPJ6BMXS44WP8G7THB87", + "id": "5c1bd042-eebe-4ff6-b52f-27a451bd1eb2", "price": 800000, "salesRevenue": 1200000, "leasedLocation": false, @@ -4198,7 +4198,7 @@ "type": "1", "state": "TX", "city": "Lubbock", - "id": "01HRPPQYPJ6BMXS44WP8G7THB88", + "id": "80085300-642f-4285-b801-68f765c2afec", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -4223,7 +4223,7 @@ "type": "2", "state": "TX", "city": "Corpus Christi", - "id": "01HRPPQYPJ6BMXS44WP8G7THB89", + "id": "9f2d82c9-d707-4b22-ac54-00367795b91f", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": false, @@ -4248,7 +4248,7 @@ "type": "3", "state": "TX", "city": "Irving", - "id": "01HRPPQYPJ6BMXS44WP8G7THB90", + "id": "d1d572ac-682c-4a3c-89bb-761577fa5c99", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": true, @@ -4273,7 +4273,7 @@ "type": "7", "state": "TX", "city": "Arlington", - "id": "01HRPPQYPJ6BMXS44WP8G7THB91", + "id": "0fa93702-5c14-4ca1-813b-467dd99359a6", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -4298,7 +4298,7 @@ "type": "7", "state": "TX", "city": "Frisco", - "id": "01HRPPQYPJ6BMXS44WP8G7THB92", + "id": "32e1c5d2-f64c-46a1-a8bb-4de67788b265", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -4323,7 +4323,7 @@ "type": "5", "state": "TX", "city": "Amarillo", - "id": "01HRPPQYPJ6BMXS44WP8G7THB93", + "id": "f2e6ef3e-589d-47a7-8ecd-4f27576fc42d", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -4348,7 +4348,7 @@ "type": "10", "state": "TX", "city": "Beaumont", - "id": "01HRPPQYPJ6BMXS44WP8G7THB94", + "id": "913f0540-8c5d-44a9-8951-0a258b360222", "price": 450000, "salesRevenue": 700000, "leasedLocation": true, @@ -4373,7 +4373,7 @@ "type": "11", "state": "TX", "city": "Waco", - "id": "01HRPPQYPJ6BMXS44WP8G7THB95", + "id": "7909ccfc-bdad-459c-895d-1319d52d5148", "price": 1500000, "salesRevenue": 2000000, "leasedLocation": true, @@ -4398,7 +4398,7 @@ "type": "12", "state": "TX", "city": "Midland", - "id": "01HRPPQYPJ6BMXS44WP8G7THB96", + "id": "9cc31b41-7f56-46e2-b421-a077efed8b34", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": true, @@ -4423,7 +4423,7 @@ "type": "13", "state": "TX", "city": "Odessa", - "id": "01HRPPQYPJ6BMXS44WP8G7THB97", + "id": "541500d9-2038-4d15-9434-15944a9043a5", "price": 350000, "salesRevenue": 550000, "leasedLocation": true, @@ -4448,7 +4448,7 @@ "type": "5", "state": "TX", "city": "Abilene", - "id": "01HRPPQYPJ6BMXS44WP8G7THB98", + "id": "9949b302-32b4-46ff-b5e7-e2ab9530e655", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -4473,7 +4473,7 @@ "type": "10", "state": "TX", "city": "Round Rock", - "id": "01HRPPQYPJ6BMXS44WP8G7THB99", + "id": "afa4f939-bdbe-49d0-90e2-ec32836098f5", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -4498,7 +4498,7 @@ "type": "11", "state": "TX", "city": "McAllen", - "id": "01HRPPQYPJ6BMXS44WP8G7THC00", + "id": "db13bf21-aa78-4cef-b3a7-c8e83de807e5", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": true, @@ -4523,7 +4523,7 @@ "type": "1", "state": "TX", "city": "Tyler", - "id": "01HRPPQYPJ6BMXS44WP8G7THC01", + "id": "c9ecc95f-b492-41dd-91a5-1de615f25c67", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -4548,7 +4548,7 @@ "type": "7", "state": "TX", "city": "College Station", - "id": "01HRPPQYPJ6BMXS44WP8G7THC02", + "id": "d94ee5cc-890a-4ec6-9428-38d0daec63cc", "price": 500000, "salesRevenue": 800000, "leasedLocation": false, @@ -4573,7 +4573,7 @@ "type": "7", "state": "TX", "city": "Wichita Falls", - "id": "01HRPPQYPJ6BMXS44WP8G7THC03", + "id": "c946eec3-ee57-4650-b744-592a015f4f9b", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -4598,7 +4598,7 @@ "type": "13", "state": "TX", "city": "San Marcos", - "id": "01HRPPQYPJ6BMXS44WP8G7THC04", + "id": "5b62e9be-f69c-4cc1-9c69-34cff2ed153e", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -4623,7 +4623,7 @@ "type": "2", "state": "TX", "city": "Temple", - "id": "01HRPPQYPJ6BMXS44WP8G7THC05", + "id": "58672910-a29c-4208-8ce6-0fea4265be2c", "price": 600000, "salesRevenue": 1000000, "leasedLocation": false, @@ -4648,7 +4648,7 @@ "type": "2", "state": "TX", "city": "New Braunfels", - "id": "01HRPPQYPJ6BMXS44WP8G7THC06", + "id": "c4fd440c-2589-4372-a4ca-e6697dcdc4ae", "price": 800000, "salesRevenue": 1200000, "leasedLocation": false, @@ -4673,7 +4673,7 @@ "type": "10", "state": "TX", "city": "Lewisville", - "id": "01HRPPQYPJ6BMXS44WP8G7THC07", + "id": "16f244dd-eb6f-46c7-81cd-009905305102", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -4698,7 +4698,7 @@ "type": "13", "state": "TX", "city": "Flower Mound", - "id": "01HRPPQYPJ6BMXS44WP8G7THC08", + "id": "9867be81-f7db-4662-be14-d3d02753e53d", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -4723,7 +4723,7 @@ "type": "10", "state": "TX", "city": "Georgetown", - "id": "01HRPPQYPJ6BMXS44WP8G7THC09", + "id": "d40b690e-f69c-4cf5-abde-d577f12cb2ff", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -4748,7 +4748,7 @@ "type": "1", "state": "TX", "city": "Mansfield", - "id": "01HRPPQYPJ6BMXS44WP8G7THC10", + "id": "fe3b3f34-d28f-4e6f-a5f7-219f84d8f3c3", "price": 220000, "salesRevenue": 350000, "leasedLocation": true, @@ -4773,7 +4773,7 @@ "type": "10", "state": "TX", "city": "Cedar Park", - "id": "01HRPPQYPJ6BMXS44WP8G7THC11", + "id": "e5209c80-e5aa-4163-9f00-d1bfb2d05856", "price": 350000, "salesRevenue": 550000, "leasedLocation": true, @@ -4798,7 +4798,7 @@ "type": "10", "state": "TX", "city": "Pflugerville", - "id": "01HRPPQYPJ6BMXS44WP8G7THC12", + "id": "6fa772e2-3eb7-4578-8943-456df42dba42", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -4823,7 +4823,7 @@ "type": "7", "state": "TX", "city": "Euless", - "id": "01HRPPQYPJ6BMXS44WP8G7THC13", + "id": "0e7417ec-bf8f-46b3-92e3-e32781647e10", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -4848,7 +4848,7 @@ "type": "10", "state": "TX", "city": "Grapevine", - "id": "01HRPPQYPJ6BMXS44WP8G7THC14", + "id": "673e5c7a-f0a0-4ea7-a805-7a8597d40530", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -4873,7 +4873,7 @@ "type": "10", "state": "TX", "city": "Coppell", - "id": "01HRPPQYPJ6BMXS44WP8G7THC15", + "id": "4f32341a-2525-4c2b-b5b6-43f7a5f36dd3", "price": 450000, "salesRevenue": 700000, "leasedLocation": true, @@ -4898,7 +4898,7 @@ "type": "10", "state": "TX", "city": "Katy", - "id": "01HRPPQYPJ6BMXS44WP8G7THC16", + "id": "a9041810-3792-476b-b00e-04f9fcfb18a3", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -4923,7 +4923,7 @@ "type": "7", "state": "TX", "city": "Friendswood", - "id": "01HRPPQYPJ6BMXS44WP8G7THC17", + "id": "7e95759b-b580-47a3-bad7-9b19cdf23667", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -4948,7 +4948,7 @@ "type": "10", "state": "TX", "city": "Little Elm", - "id": "01HRPPQYPJ6BMXS44WP8G7THC18", + "id": "c811616b-fc48-41e7-b219-27900744a5d1", "price": 120000, "salesRevenue": 250000, "leasedLocation": true, @@ -4973,7 +4973,7 @@ "type": "10", "state": "TX", "city": "The Colony", - "id": "01HRPPQYPJ6BMXS44WP8G7THC19", + "id": "b98e8195-af29-4df0-9b2d-69315629ce88", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -4998,7 +4998,7 @@ "type": "10", "state": "TX", "city": "Schertz", - "id": "01HRPPQYPJ6BMXS44WP8G7THC20", + "id": "76b40a5a-cad7-4fee-b887-3409daa11f22", "price": 350000, "salesRevenue": 550000, "leasedLocation": true, @@ -5023,7 +5023,7 @@ "type": "1", "state": "TX", "city": "Houston", - "id": "6c2044b5-7f8a-4c6a-9b1a-1f8912e1a2d7", + "id": "b10a4398-7edd-4a6b-a83a-9e167dcf0286", "price": 800000, "salesRevenue": 1200000, "leasedLocation": true, @@ -5048,7 +5048,7 @@ "type": "13", "state": "TX", "city": "Austin", - "id": "ad9e4d5c-d5a5-4b5c-9c5d-5a4b3c2d1e0f", + "id": "89ee0490-6531-442b-804c-3c8132e16841", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -5073,7 +5073,7 @@ "type": "10", "state": "TX", "city": "Dallas", - "id": "8f7e6d5c-4b3a-2c1d-0e9f-8g7h6i5j4k3l", + "id": "d7df1691-a8aa-4867-84eb-fbc7d32a548f", "price": 700000, "salesRevenue": 1200000, "leasedLocation": true, @@ -5098,7 +5098,7 @@ "type": "11", "state": "TX", "city": "San Antonio", - "id": "2m1n0o9p-8q7r-6s5t-4u3v-2w1x0y9z8a7", + "id": "c3eec2b7-bee0-4aeb-8b21-c7810ef2efc7", "price": 1500000, "salesRevenue": 2000000, "leasedLocation": true, @@ -5123,7 +5123,7 @@ "type": "12", "state": "TX", "city": "Fort Worth", - "id": "6b5c4d3e-2f1g-0h9i-8j7k-6l5m4n3o2p1", + "id": "eac4b8b7-f062-49da-a7f1-c1e5944ae5fe", "price": 2500000, "salesRevenue": 4000000, "leasedLocation": false, @@ -5148,7 +5148,7 @@ "type": "10", "state": "TX", "city": "El Paso", - "id": "0q9r8s7t-6u5v-4w3x-2y1z-0a9b8c7d6e5", + "id": "1d1e451e-ef22-4b0d-8e78-a668d19de88b", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -5173,7 +5173,7 @@ "type": "7", "state": "TX", "city": "Plano", - "id": "4f3g2h1i-0j9k-8l7m-6n5o-4p3q2r1s0t9", + "id": "c0a98019-883a-406b-a6ad-048a2e229a4c", "price": 900000, "salesRevenue": 1500000, "leasedLocation": false, @@ -5198,7 +5198,7 @@ "type": "1", "state": "TX", "city": "Lubbock", - "id": "8u7v6w5x-4y3z-2a1b-0c9d-8e7f6g5h4i3", + "id": "f28b8b3a-d052-400f-b21c-bac82226403c", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -5223,7 +5223,7 @@ "type": "2", "state": "TX", "city": "Corpus Christi", - "id": "2j1k0l9m-8n7o-6p5q-4r3s-2t1u0v9w8x7", + "id": "f706ae58-43f4-43d4-846e-120a76cd11c9", "price": 1500000, "salesRevenue": 2000000, "leasedLocation": false, @@ -5248,7 +5248,7 @@ "type": "3", "state": "TX", "city": "Irving", - "id": "6y5z4a3b-2c1d-0e9f-8g7h-6i5j4k3l2m1", + "id": "0b96efc7-4d75-42b7-a91e-e241046a4ca1", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -5273,7 +5273,7 @@ "type": "7", "state": "TX", "city": "Arlington", - "id": "0n9o8p7q-6r5s-4t3u-2v1w-0x9y8z7a6b5", + "id": "3b99b88c-7715-4b3b-998f-bd2df1b8855c", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -5298,7 +5298,7 @@ "type": "7", "state": "TX", "city": "Frisco", - "id": "4c3d2e1f-0g9h-8i7j-6k5l-4m3n2o1p0q9", + "id": "a134feb2-4a91-43bd-8760-7ad759e2867d", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -5323,7 +5323,7 @@ "type": "5", "state": "TX", "city": "Amarillo", - "id": "8r7s6t5u-4v3w-2x1y-0z9a-8b7c6d5e4f3", + "id": "032b3da4-8ebd-4c43-a216-460e807deddc", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -5348,7 +5348,7 @@ "type": "10", "state": "TX", "city": "Beaumont", - "id": "2g1h0i9j-8k7l-6m5n-4o3p-2q1r0s9t8u7", + "id": "836d52ab-1a73-4fd1-87da-d24c884f0649", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -5373,7 +5373,7 @@ "type": "11", "state": "TX", "city": "Waco", - "id": "6v5w4x3y-2z1a-0b9c-8d7e-6f5g4h3i2j1", + "id": "98fd18a8-7794-4fbe-b7cd-a09d26251916", "price": 1800000, "salesRevenue": 2500000, "leasedLocation": true, @@ -5398,7 +5398,7 @@ "type": "12", "state": "TX", "city": "Midland", - "id": "0k9l8m7n-6o5p-4q3r-2s1t-0u9v8w7x6y5", + "id": "3e23bde7-a2bb-4782-ba6d-9bd75a2c3760", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -5423,7 +5423,7 @@ "type": "13", "state": "TX", "city": "Odessa", - "id": "4z3a2b1c-0d9e-8f7g-6h5i-4j3k2l1m0n9", + "id": "9c82ce32-8ee0-4b5e-bceb-9c2d5521013e", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -5448,7 +5448,7 @@ "type": "5", "state": "TX", "city": "Abilene", - "id": "8o7p6q5r-4s3t-2u1v-0w9x-8y7z6a5b4c3", + "id": "a90a2937-8e9e-40f2-a5f9-de0bb021fdc3", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -5473,7 +5473,7 @@ "type": "10", "state": "TX", "city": "Round Rock", - "id": "2d1e0f9g-8h7i-6j5k-4l3m-2n1o0p9q8r7", + "id": "fd410443-da58-4429-a02f-a076a8611e67", "price": 800000, "salesRevenue": 1200000, "leasedLocation": true, @@ -5498,7 +5498,7 @@ "type": "11", "state": "TX", "city": "McAllen", - "id": "6s5t4u3v-2w1x-0y9z-8a7b-6c5d4e3f2g1", + "id": "259cd998-298f-4067-ae47-051739e51734", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -5523,7 +5523,7 @@ "type": "1", "state": "TX", "city": "Tyler", - "id": "0h9i8j7k-6l5m-4n3o-2p1q-0r9s8t7u6v5", + "id": "557039b6-16e6-4e7a-82eb-956fbb249837", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -5548,7 +5548,7 @@ "type": "7", "state": "TX", "city": "College Station", - "id": "4w3x2y1z-0a9b-8c7d-6e5f-4g3h2i1j0k9", + "id": "8c4ccd00-10dc-424d-8dac-3d71c0dc31f1", "price": 600000, "salesRevenue": 1000000, "leasedLocation": false, @@ -5573,7 +5573,7 @@ "type": "7", "state": "TX", "city": "Wichita Falls", - "id": "8l7m6n5o-4p3q-2r1s-0t9u-8v7w6x5y4z3", + "id": "b7f0ea2d-d72e-4a65-a0e6-f601b1d6fbb1", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -5598,7 +5598,7 @@ "type": "13", "state": "TX", "city": "San Marcos", - "id": "2a1b0c9d-8e7f-6g5h-4i3j-2k1l0m9n8o7", + "id": "7f3080d5-a91a-4871-8f73-a3d079fc3615", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -5623,7 +5623,7 @@ "type": "2", "state": "TX", "city": "Temple", - "id": "6p5q4r3s-2t1u-0v9w-8x7y-6z5a4b3c2d1", + "id": "1f590eb7-592b-4d92-849e-593291edb857", "price": 800000, "salesRevenue": 1200000, "leasedLocation": false, @@ -5648,7 +5648,7 @@ "type": "2", "state": "TX", "city": "New Braunfels", - "id": "0e9f8g7h-6i5j-4k3l-2m1n-0o9p8q7r6s5", + "id": "ee869623-687a-4709-b5b6-799eea060ae5", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": false, @@ -5673,7 +5673,7 @@ "type": "10", "state": "TX", "city": "Lewisville", - "id": "4t3u2v1w-0x9y-8z7a-6b5c-4d3e2f1g0h9", + "id": "37ba8ee5-3cee-4d4a-8835-690db17d08c1", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -5698,7 +5698,7 @@ "type": "13", "state": "TX", "city": "Flower Mound", - "id": "8i7j6k5l-4m3n-2o1p-0q9r-8s7t6u5v4w3", + "id": "c497f880-38bf-4b17-9721-1c39884c1c8e", "price": 220000, "salesRevenue": 350000, "leasedLocation": true, @@ -5723,7 +5723,7 @@ "type": "10", "state": "TX", "city": "Georgetown", - "id": "2x1y0z9a-8b7c-6d5e-4f3g-2h1i0j9k8l7", + "id": "02f81bd5-9248-428a-8593-18b6f39cdadc", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -5748,7 +5748,7 @@ "type": "1", "state": "TX", "city": "Mansfield", - "id": "6m5n4o3p-2q1r-0s9t-8u7v-6w5x4y3z2a1", + "id": "9aa2126b-f627-4d13-8b9e-07f94d3c68d5", "price": 280000, "salesRevenue": 450000, "leasedLocation": true, @@ -5773,7 +5773,7 @@ "type": "10", "state": "TX", "city": "Cedar Park", - "id": "0b9c8d7e-6f5g-4h3i-2j1k-0l9m8n7o6p5", + "id": "0920ce5f-4912-4788-955b-82814c2d00a3", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -5798,7 +5798,7 @@ "type": "10", "state": "TX", "city": "Pflugerville", - "id": "4q3r2s1t-0u9v-8w7x-6y5z-4a3b2c1d0e9", + "id": "c9b94652-6c0f-4097-b754-96003b9ad481", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -5823,7 +5823,7 @@ "type": "7", "state": "TX", "city": "Euless", - "id": "8f7g6h5i-4j3k-2l1m-0n9o-8p7q6r5s4t3", + "id": "d10b945c-fc17-412d-95f1-2d1968dc7058", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -5848,7 +5848,7 @@ "type": "10", "state": "TX", "city": "Grapevine", - "id": "2u1v0w9x-8y7z-6a5b-4c3d-2e1f0g9h8i7", + "id": "a11ee975-e02e-4f42-93c8-5533d8692f81", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -5873,7 +5873,7 @@ "type": "10", "state": "TX", "city": "Coppell", - "id": "6j5k4l3m-2n1o-0p9q-8r7s-6t5u4v3w2x1", + "id": "4e43245d-fae2-4078-8acf-ee4c0d8127c9", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -5898,7 +5898,7 @@ "type": "10", "state": "TX", "city": "Katy", - "id": "0y9z8a7b-6c5d-4e3f-2g1h-0i9j8k7l6m5", + "id": "16eaddcf-f05f-415c-b75f-c54d52fd29b0", "price": 220000, "salesRevenue": 350000, "leasedLocation": true, @@ -5923,7 +5923,7 @@ "type": "7", "state": "TX", "city": "Friendswood", - "id": "4n3o2p1q-0r9s-8t7u-6v5w-4x3y2z1a0b9", + "id": "bf7fdcba-f40f-4790-806c-b8a907927ec0", "price": 280000, "salesRevenue": 450000, "leasedLocation": true, @@ -5948,7 +5948,7 @@ "type": "10", "state": "TX", "city": "Little Elm", - "id": "8c7d6e5f-4g3h-2i1j-0k9l-8m7n6o5p4q3", + "id": "78029bd0-b998-4e22-bdd4-60269e10b90a", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -5973,7 +5973,7 @@ "type": "10", "state": "TX", "city": "The Colony", - "id": "2r1s0t9u-8v7w-6x5y-4z3a-2b1c0d9e8f7", + "id": "477cd339-e02b-4877-a6a2-a67ef83f6ea5", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -5998,7 +5998,7 @@ "type": "10", "state": "TX", "city": "Schertz", - "id": "6g5h4i3j-2k1l-0m9n-8o7p-6q5r4s3t2u1", + "id": "314aedba-bac0-449a-ba93-34c5998d8e1b", "price": 450000, "salesRevenue": 750000, "leasedLocation": true, @@ -6023,7 +6023,7 @@ "type": "7", "state": "TX", "city": "Houston", - "id": "0v9w8x7y-6z5a-4b3c-2d1e-0f9g8h7i6j5", + "id": "b971c773-5a23-4e0e-b2c4-21fbccf01369", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -6048,7 +6048,7 @@ "type": "10", "state": "TX", "city": "Austin", - "id": "4k3l2m1n-0o9p-8q7r-6s5t-4u3v2w1x0y9", + "id": "993523be-a2b0-43eb-91af-c02d753f565e", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6073,7 +6073,7 @@ "type": "13", "state": "TX", "city": "Dallas", - "id": "8z7a6b5c-4d3e-2f1g-0h9i-8j7k6l5m4n3", + "id": "dad6dfbb-cb08-4e66-b8b8-af415a65cd11", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -6098,7 +6098,7 @@ "type": "1", "state": "TX", "city": "San Antonio", - "id": "2o1p0q9r-8s7t-6u5v-4w3x-2y1z0a9b8c7", + "id": "0bbebb09-28b7-4273-bf9e-853ad7aa2fcb", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": false, @@ -6123,7 +6123,7 @@ "type": "7", "state": "TX", "city": "Fort Worth", - "id": "6d5e4f3g-2h1i-0j9k-8l7m-6n5o4p3q2r1", + "id": "2cd8a1ee-74bf-4fd6-8bf9-42274be25a1f", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -6148,7 +6148,7 @@ "type": "10", "state": "TX", "city": "El Paso", - "id": "0s9t8u7v-6w5x-4y3z-2a1b-0c9d8e7f6g5", + "id": "c30c742a-0bc7-4999-abda-7b28e0f70cf9", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -6173,7 +6173,7 @@ "type": "5", "state": "TX", "city": "Plano", - "id": "4h3i2j1k-0l9m-8n7o-6p5q-4r3s2t1u0v9", + "id": "71b08b3d-1c95-49a5-a8d1-c1c392194b04", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -6198,7 +6198,7 @@ "type": "10", "state": "TX", "city": "Lubbock", - "id": "8w7x6y5z-4a3b-2c1d-0e9f-8g7h6i5j4k3", + "id": "c0381d5a-2408-4aa3-a0c5-7c31f913105f", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -6223,7 +6223,7 @@ "type": "10", "state": "TX", "city": "Corpus Christi", - "id": "2l1m0n9o-8p7q-6r5s-4t3u-2v1w0x9y8z7", + "id": "85c7a557-7753-4346-913b-8a4fe34b19de", "price": 450000, "salesRevenue": 750000, "leasedLocation": true, @@ -6248,7 +6248,7 @@ "type": "10", "state": "TX", "city": "Irving", - "id": "6a5b4c3d-2e1f-0g9h-8i7j-6k5l4m3n2o1", + "id": "91c76eb4-a32d-4708-8bc7-55f142a219f7", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -6273,7 +6273,7 @@ "type": "10", "state": "TX", "city": "Arlington", - "id": "0p9q8r7s-6t5u-4v3w-2x1y-0z9a8b7c6d5", + "id": "5a9dd14a-f489-410c-8847-f4c921496b3a", "price": 280000, "salesRevenue": 450000, "leasedLocation": true, @@ -6298,7 +6298,7 @@ "type": "1", "state": "TX", "city": "Frisco", - "id": "4e3f2g1h-0i9j-8k7l-6m5n-4o3p2q1r0s9", + "id": "0b7f3d88-7e9f-4562-8810-c4b62cc20deb", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -6323,7 +6323,7 @@ "type": "5", "state": "TX", "city": "Amarillo", - "id": "8t7u6v5w-4x3y-2z1a-0b9c-8d7e6f5g4h3", + "id": "126130a6-5f5e-4ac4-9355-46918466f92f", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -6348,7 +6348,7 @@ "type": "10", "state": "TX", "city": "Beaumont", - "id": "2i1j0k9l-8m7n-6o5p-4q3r-2s1t0u9v8w7", + "id": "6e9d9501-e732-4b6a-937f-e053749e8517", "price": 320000, "salesRevenue": 550000, "leasedLocation": true, @@ -6373,7 +6373,7 @@ "type": "10", "state": "TX", "city": "Waco", - "id": "6x5y4z3a-2b1c-0d9e-8f7g-6h5i4j3k2l1", + "id": "2fe2667c-2bde-469c-871c-9f8f35301ddd", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -6398,7 +6398,7 @@ "type": "7", "state": "TX", "city": "Midland", - "id": "0m9n8o7p-6q5r-4s3t-2u1v-0w9x8y7z6a5", + "id": "52ad3fcd-3efa-474e-9774-d5d40791f11d", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6423,7 +6423,7 @@ "type": "10", "state": "TX", "city": "Odessa", - "id": "4b3c2d1e-0f9g-8h7i-6j5k-4l3m2n1o0p9", + "id": "68da8a56-52e3-4b98-9b5d-7bacb30e50a8", "price": 220000, "salesRevenue": 350000, "leasedLocation": true, @@ -6448,7 +6448,7 @@ "type": "10", "state": "TX", "city": "Abilene", - "id": "8q7r6s5t-4u3v-2w1x-0y9z-8a7b6c5d4e3", + "id": "0112bf81-3b1c-467e-a37c-5716f351eab9", "price": 380000, "salesRevenue": 600000, "leasedLocation": true, @@ -6473,7 +6473,7 @@ "type": "10", "state": "TX", "city": "Round Rock", - "id": "2f1g0h9i-8j7k-6l5m-4n3o-2p1q0r9s8t7", + "id": "8824b0ff-5289-4351-9118-9d21ad0bd2ae", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -6498,7 +6498,7 @@ "type": "3", "state": "TX", "city": "McAllen", - "id": "6u5v4w3x-2y1z-0a9b-8c7d-6e5f4g3h2i1", + "id": "5c7f8300-90fe-4f41-b83e-930e17d8f6fd", "price": 800000, "salesRevenue": 1200000, "leasedLocation": false, @@ -6523,7 +6523,7 @@ "type": "10", "state": "TX", "city": "Tyler", - "id": "0j9k8l7m-6n5o-4p3q-2r1s-0t9u8v7w6x5", + "id": "467245a3-e426-4955-983e-67203ac18024", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6548,7 +6548,7 @@ "type": "1", "state": "TX", "city": "College Station", - "id": "4y3z2a1b-0c9d-8e7f-6g5h-4i3j2k1l0m9", + "id": "69007748-bde4-472c-95b6-9154779c2364", "price": 2500000, "salesRevenue": 4000000, "leasedLocation": false, @@ -6573,7 +6573,7 @@ "type": "10", "state": "TX", "city": "Wichita Falls", - "id": "8n7o6p5q-4r3s-2t1u-0v9w-8x7y6z5a4b3", + "id": "669f5649-8734-4f14-9947-f7cbe60fe90d", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -6598,7 +6598,7 @@ "type": "10", "state": "TX", "city": "San Marcos", - "id": "2c1d0e9f-8g7h-6i5j-4k3l-2m1n0o9p8q7", + "id": "151ae894-7d05-476c-a282-217c01c99bf7", "price": 280000, "salesRevenue": 450000, "leasedLocation": true, @@ -6623,7 +6623,7 @@ "type": "10", "state": "TX", "city": "Temple", - "id": "6r5s4t3u-2v1w-0x9y-8z7a-6b5c4d3e2f1", + "id": "cba82043-bbed-45cc-9898-d5c9a8076ad1", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6648,7 +6648,7 @@ "type": "5", "state": "TX", "city": "New Braunfels", - "id": "0g9h8i7j-6k5l-4m3n-2o1p-0q9r8s7t6u5", + "id": "8edae844-0cd2-4d46-87f7-2d12e48a42be", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -6673,7 +6673,7 @@ "type": "10", "state": "TX", "city": "Lewisville", - "id": "4v3w2x1y-0z9a-8b7c-6d5e-4f3g2h1i0j9", + "id": "226ed553-9a8d-44cb-9b4c-5a4aabfcc80d", "price": 220000, "salesRevenue": 350000, "leasedLocation": true, @@ -6698,7 +6698,7 @@ "type": "10", "state": "TX", "city": "Flower Mound", - "id": "8k7l6m5n-4o3p-2q1r-0s9t-8u7v6w5x4y3", + "id": "2ca4cca6-96b7-4a11-be12-32549e57314b", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -6723,7 +6723,7 @@ "type": "10", "state": "TX", "city": "Georgetown", - "id": "2z1a0b9c-8d7e-6f5g-4h3i-2j1k0l9m8n7", + "id": "2d1b5d65-73c4-4554-8d78-0676c225d9fb", "price": 500000, "salesRevenue": 800000, "leasedLocation": false, @@ -6748,7 +6748,7 @@ "type": "5", "state": "TX", "city": "Mansfield", - "id": "6o5p4q3r-2s1t-0u9v-8w7x-6y5z4a3b2c1", + "id": "71978589-1ee9-457a-9b5d-2251ed98a9cd", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6773,7 +6773,7 @@ "type": "10", "state": "TX", "city": "Cedar Park", - "id": "0d9e8f7g-6h5i-4j3k-2l1m-0n9o8p7q6r5", + "id": "ee781a73-5112-40a8-bfc7-3876153c9e69", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -6798,7 +6798,7 @@ "type": "8", "state": "TX", "city": "Pflugerville", - "id": "4s3t2u1v-0w9x-8y7z-6a5b-4c3d2e1f0g9", + "id": "14b4672a-5d93-4c32-ba3e-ab90d5da7ae5", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -6823,7 +6823,7 @@ "type": "10", "state": "TX", "city": "Euless", - "id": "8h7i6j5k-4l3m-2n1o-0p9q-8r7s6t5u4v3", + "id": "47fff8b4-d88f-4f49-ab19-cfc2d4022b74", "price": 280000, "salesRevenue": 450000, "leasedLocation": true, @@ -6848,7 +6848,7 @@ "type": "7", "state": "TX", "city": "Grapevine", - "id": "2w1x0y9z-8a7b-6c5d-4e3f-2g1h0i9j8k7", + "id": "b35832ca-4640-4930-a182-5c1fd918eb9c", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6873,7 +6873,7 @@ "type": "10", "state": "TX", "city": "Coppell", - "id": "6l5m4n3o-2p1q-0r9s-8t7u-6v5w4x3y2z1", + "id": "082129a7-a7a5-4422-b8b8-e389d84415f2", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -6898,7 +6898,7 @@ "type": "7", "state": "TX", "city": "Katy", - "id": "0a9b8c7d-6e5f-4g3h-2i1j-0k9l8m7n6o5", + "id": "5a7bcf3b-120f-4000-8b62-818f721f613d", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -6923,7 +6923,7 @@ "type": "10", "state": "TX", "city": "Friendswood", - "id": "4p3q2r1s-0t9u-8v7w-6x5y-4z3a2b1c0d9", + "id": "1b6b0ee3-c4d4-4fbd-84c8-d6cac300c925", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -6948,7 +6948,7 @@ "type": "13", "state": "TX", "city": "Little Elm", - "id": "8e7f6g5h-4i3j-2k1l-0m9n-8o7p6q5r4s3", + "id": "6e51fb67-4b26-4556-849b-63f2b3b8ba58", "price": 400000, "salesRevenue": 600000, "leasedLocation": false, @@ -6973,7 +6973,7 @@ "type": "10", "state": "TX", "city": "The Colony", - "id": "2t1u0v9w-8x7y-6z5a-4b3c-2d1e0f9g8h7", + "id": "1fd5402d-68c2-4b77-b967-4ce674531757", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -6998,7 +6998,7 @@ "type": "5", "state": "TX", "city": "Schertz", - "id": "6i5j4k3l-2m1n-0o9p-8q7r-6s5t4u3v2w1", + "id": "c4199291-632a-4c26-8c9f-3dac8460a6ba", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -7023,7 +7023,7 @@ "type": "10", "state": "TX", "city": "Conroe", - "id": "0x9y8z7a-6b5c-4d3e-2f1g-0h9i8j7k6l5", + "id": "ef6bdada-8601-438b-aa89-5a6f044febf5", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -7048,7 +7048,7 @@ "type": "5", "state": "TX", "city": "New Braunfels", - "id": "4m3n2o1p-0q9r-8s7t-6u5v-4w3x2y1z0a9", + "id": "426b0ce4-1d97-4b79-a73a-94b2d423bd82", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -7073,7 +7073,7 @@ "type": "10", "state": "TX", "city": "Cypress", - "id": "8b7c6d5e-4f3g-2h1i-0j9k-8l7m6n5o4p3", + "id": "aa364962-06b3-42c6-aa3c-ac34bd285bbe", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -7098,7 +7098,7 @@ "type": "5", "state": "TX", "city": "Leander", - "id": "2q1r0s9t-8u7v-6w5x-4y3z-2a1b0c9d8e7", + "id": "2c4baa50-71f6-4c35-b977-7932e3bd1033", "price": 180000, "salesRevenue": 350000, "leasedLocation": true, @@ -7123,7 +7123,7 @@ "type": "10", "state": "TX", "city": "Pearland", - "id": "6f5g4h3i-2j1k-0l9m-8n7o-6p5q4r3s2t1", + "id": "09b1533f-cedd-4030-8421-62b4528a3414", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -7148,7 +7148,7 @@ "type": "7", "state": "TX", "city": "San Marcos", - "id": "0u9v8w7x-6y5z-4a3b-2c1d-0e9f8g7h6i5", + "id": "a6557587-ea3b-4bb0-afea-062359ca535d", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -7173,7 +7173,7 @@ "type": "10", "state": "TX", "city": "Victoria", - "id": "4j3k2l1m-0n9o-8p7q-6r5s-4t3u2v1w0x9", + "id": "92093b67-cf08-4496-85fc-585569696e59", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -7198,7 +7198,7 @@ "type": "13", "state": "TX", "city": "Wylie", - "id": "8y7z6a5b-4c3d-2e1f-0g9h-8i7j6k5l4m3", + "id": "6c3bad70-2ba8-40a0-b6c0-21f3beb778f4", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -7223,7 +7223,7 @@ "type": "10", "state": "TX", "city": "Port Arthur", - "id": "2n1o0p9q-8r7s-6t5u-4v3w-2x1y0z9a8b7", + "id": "14ed7f0c-edb3-4828-b5c1-1f9a12141045", "price": 250000, "salesRevenue": 400000, "leasedLocation": false, @@ -7248,7 +7248,7 @@ "type": "5", "state": "TX", "city": "Burleson", - "id": "6c5d4e3f-2g1h-0i9j-8k7l-6m5n4o3p2q1", + "id": "d78b9148-2554-4f33-b5b2-3fefdd343b7d", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -7273,7 +7273,7 @@ "type": "10", "state": "TX", "city": "Nederland", - "id": "0r9s8t7u-6v5w4x-3y2z-1a0b-9c8d7e6f5", + "id": "31c3359d-ea04-46dc-b2d7-90c27c1ac27c", "price": 280000, "salesRevenue": 450000, "leasedLocation": false, @@ -7298,7 +7298,7 @@ "type": "7", "state": "TX", "city": "Texarkana", - "id": "4g3h2i1j-0k9l-8m7n-6o5p-4q3r2s1t0u9", + "id": "03dbcfe8-6803-4fa3-bc73-6c71bcaa5ca8", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -7323,7 +7323,7 @@ "type": "10", "state": "TX", "city": "Richmond", - "id": "8v7w6x5y-4z3a-2b1c-0d9e-8f7g6h5i4j3", + "id": "6aabc37a-282e-4aea-83d0-99ff398b1476", "price": 300000, "salesRevenue": 500000, "leasedLocation": false, @@ -7348,7 +7348,7 @@ "type": "5", "state": "TX", "city": "Baytown", - "id": "2k1l0m9n-8o7p-6q5r-4s3t-2u1v0w9x8y7", + "id": "e3cb667f-7c86-4909-bb4f-24acdf3f19a0", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -7373,7 +7373,7 @@ "type": "10", "state": "TX", "city": "Rowlett", - "id": "6z5a4b3c-2d1e-0f9g-8h7i-6j5k4l3m2n1", + "id": "9604f77a-c026-4e57-ba8f-357c5e9a4375", "price": 180000, "salesRevenue": 300000, "leasedLocation": false, @@ -7398,7 +7398,7 @@ "type": "5", "state": "TX", "city": "Copperas Cove", - "id": "0o9p8q7r-6s5t-4u3v-2w1x-0y9z8a7b6c5", + "id": "44651025-d9b6-47f6-95ff-a1756f5ce8f5", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -7423,7 +7423,7 @@ "type": "10", "state": "TX", "city": "Hutto", - "id": "4d3e2f1g-0h9i-8j7k-6l5m-4n3o2p1q0r9", + "id": "a3129871-20bb-4208-addd-1ab4acae6b1d", "price": 400000, "salesRevenue": 600000, "leasedLocation": false, @@ -7448,7 +7448,7 @@ "type": "13", "state": "TX", "city": "Granbury", - "id": "8s7t6u5v-4w3x-2y1z-0a9b-8c7d6e5f4g3", + "id": "ede34aa0-36de-457d-8b8f-aac181ce070f", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -7473,7 +7473,7 @@ "type": "10", "state": "TX", "city": "Saginaw", - "id": "2h1i0j9k-8l7m-6n5o-4p3q-2r1s0t9u8v7", + "id": "c1cad718-d11d-44ef-a2eb-41d3a080d1c9", "price": 200000, "salesRevenue": 350000, "leasedLocation": false, @@ -7498,7 +7498,7 @@ "type": "13", "state": "TX", "city": "Benbrook", - "id": "6w5x4y3z-2a1b-0c9d-8e7f-6g5h4i3j2k1", + "id": "ec5fd3df-c88c-4b86-a8d3-b1ba37bcbdc0", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -7523,7 +7523,7 @@ "type": "1", "state": "TX", "city": "Houston", - "id": "0l9m8n7o-6p5q-4r3s-2t1u-0v9w8x7y6z5", + "id": "ca9f2bea-7bdb-43e9-ba4f-8f8d3cec339d", "price": 850000, "salesRevenue": 1500000, "leasedLocation": true, @@ -7548,7 +7548,7 @@ "type": "13", "state": "TX", "city": "Austin", - "id": "4a3b2c1d-0e9f-8g7h-6i5j-4k3l2m1n0o9", + "id": "a01657f1-64ab-416c-9e07-da20ecbaac42", "price": 400000, "salesRevenue": 750000, "leasedLocation": true, @@ -7573,7 +7573,7 @@ "type": "11", "state": "TX", "city": "Dallas", - "id": "8p7q6r5s-4t3u-2v1w-0x9y-8z7a6b5c4d3", + "id": "1be6abee-6378-4dfb-a588-ace005facac8", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -7598,7 +7598,7 @@ "type": "12", "state": "TX", "city": "San Antonio", - "id": "2e1f0g9h-8i7j-6k5l-4m3n-2o1p0q9r8s7", + "id": "3f754b09-674a-43af-947e-6580e854f6f0", "price": 2200000, "salesRevenue": 3500000, "leasedLocation": false, @@ -7623,7 +7623,7 @@ "type": "13", "state": "TX", "city": "Fort Worth", - "id": "6t5u4v3w-2x1y-0z9a-8b7c-6d5e4f3g2h1", + "id": "5a2282e4-6e5e-45c2-abea-b4fc39471258", "price": 600000, "salesRevenue": 1000000, "leasedLocation": true, @@ -7648,7 +7648,7 @@ "type": "7", "state": "TX", "city": "El Paso", - "id": "0i9j8k7l-6m5n-4o3p-2q1r-0s9t8u7v6w5", + "id": "424bf0a6-3a67-4266-a248-34785986cd2b", "price": 750000, "salesRevenue": 1200000, "leasedLocation": false, @@ -7673,7 +7673,7 @@ "type": "1", "state": "TX", "city": "Plano", - "id": "4x3y2z1a-0b9c-8d7e-6f5g-4h3i2j1k0l9", + "id": "1b2eb832-cfe7-4e79-ac60-1d57d34f9a80", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -7698,7 +7698,7 @@ "type": "2", "state": "TX", "city": "Lubbock", - "id": "8m7n6o5p-4q3r-2s1t-0u9v-8w7x6y5z4a3", + "id": "4552ec3b-8793-49b0-be64-5b18c29fa9b8", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": false, @@ -7723,7 +7723,7 @@ "type": "3", "state": "TX", "city": "Corpus Christi", - "id": "2b1c0d9e-8f7g-6h5i-4j3k-2l1m0n9o8p7", + "id": "4914e02f-2850-47d6-86af-e948fdcdbeb7", "price": 1500000, "salesRevenue": 2000000, "leasedLocation": true, @@ -7748,7 +7748,7 @@ "type": "7", "state": "TX", "city": "Irving", - "id": "6q5r4s3t-2u1v-0w9x-8y7z-6a5b4c3d2e1", + "id": "bdbf6499-583f-4dce-b150-bb1ec965cef4", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -7773,7 +7773,7 @@ "type": "7", "state": "TX", "city": "Arlington", - "id": "0f9g8h7i-6j5k-4l3m-2n1o-0p9q8r7s6t5", + "id": "fbeeb250-d387-4280-a0d0-b082ac22fc90", "price": 450000, "salesRevenue": 750000, "leasedLocation": true, @@ -7798,7 +7798,7 @@ "type": "5", "state": "TX", "city": "Frisco", - "id": "4u3v2w1x-0y9z-8a7b-6c5d-4e3f2g1h0i9", + "id": "31bfe4a1-5bac-45be-b85e-26764d93975c", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -7823,7 +7823,7 @@ "type": "11", "state": "TX", "city": "Beaumont", - "id": "8j7k6l5m-4n3o-2p1q-0r9s-8t7u6v5w4x3", + "id": "da9b0e4c-41be-48c8-8575-ae1e2816bd6c", "price": 1200000, "salesRevenue": 1800000, "leasedLocation": true, @@ -7848,7 +7848,7 @@ "type": "12", "state": "TX", "city": "Waco", - "id": "2y1z0a9b-8c7d-6e5f-4g3h-2i1j0k9l8m7", + "id": "b49b88ff-335c-47a8-890a-bb77f0b5ec81", "price": 900000, "salesRevenue": 1500000, "leasedLocation": true, @@ -7873,7 +7873,7 @@ "type": "13", "state": "TX", "city": "Odessa", - "id": "6n5o4p3q-2r1s-0t9u-8v7w-6x5y4z3a2b1", + "id": "0f64201f-c9a9-4f4b-826f-edcc2d6a010a", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -7898,7 +7898,7 @@ "type": "5", "state": "TX", "city": "Abilene", - "id": "0c9d8e7f-6g5h-4i3j-2k1l-0m9n8o7p6q5", + "id": "1d371afd-4de7-41c2-9ef8-1f5890ee50b4", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -7923,7 +7923,7 @@ "type": "7", "state": "TX", "city": "Round Rock", - "id": "4r3s2t1u-0v9w-8x7y-6z5a-4b3c2d1e0f9", + "id": "083c9d60-6d0d-4f42-851a-85f8752fafdd", "price": 800000, "salesRevenue": 1200000, "leasedLocation": true, @@ -7948,7 +7948,7 @@ "type": "11", "state": "TX", "city": "McAllen", - "id": "8g7h6i5j-4k3l-2m1n-0o9p-8q7r6s5t4u3", + "id": "91f06051-b632-4b48-89e3-c3a177a51a9c", "price": 1000000, "salesRevenue": 1500000, "leasedLocation": true, @@ -7973,7 +7973,7 @@ "type": "1", "state": "TX", "city": "Tyler", - "id": "2v1w0x9y-8z7a-6b5c-4d3e-2f1g0h9i8j7", + "id": "e7f625ac-be4c-40b6-999f-1556177a0455", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -7998,7 +7998,7 @@ "type": "7", "state": "TX", "city": "College Station", - "id": "6k5l4m3n-2o1p-0q9r-8s7t-6u5v4w3x2y1", + "id": "3dc50037-3196-493f-9367-d5028dd48641", "price": 500000, "salesRevenue": 800000, "leasedLocation": false, @@ -8023,7 +8023,7 @@ "type": "7", "state": "TX", "city": "Wichita Falls", - "id": "0z9a8b7c-6d5e-4f3g-2h1i-0j9k8l7m6n5", + "id": "4c6cba09-53aa-454e-9d08-2535d06e4273", "price": 400000, "salesRevenue": 600000, "leasedLocation": true, @@ -8048,7 +8048,7 @@ "type": "13", "state": "TX", "city": "San Marcos", - "id": "4o3p2q1r-0s9t-8u7v-6w5x-4y3z2a1b0c9", + "id": "70723544-930f-4ef7-a1b5-b9706bad779b", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -8073,7 +8073,7 @@ "type": "2", "state": "TX", "city": "Temple", - "id": "8d7e6f5g-4h3i-2j1k-0l9m-8n7o6p5q4r3", + "id": "284c7a77-c2c0-4be9-a33d-d28ea79e4534", "price": 600000, "salesRevenue": 1000000, "leasedLocation": false, @@ -8098,7 +8098,7 @@ "type": "2", "state": "TX", "city": "New Braunfels", - "id": "2s1t0u9v-8w7x-6y5z-4a3b-2c1d0e9f8g7", + "id": "9565b3ce-05cf-49d0-a515-568ba0e57c7b", "price": 800000, "salesRevenue": 1200000, "leasedLocation": false, @@ -8123,7 +8123,7 @@ "type": "13", "state": "TX", "city": "Flower Mound", - "id": "6h5i4j3k-2l1m-0n9o-8p7q-6r5s4t3u2v1", + "id": "dd94157f-6c50-4b30-9352-5f25214a7e49", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -8148,7 +8148,7 @@ "type": "7", "state": "TX", "city": "Georgetown", - "id": "0w9x8y7z-6a5b-4c3d-2e1f-0g9h8i7j6k5", + "id": "685c1292-2762-46cf-b7ac-853f10c53a8f", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -8173,7 +8173,7 @@ "type": "1", "state": "TX", "city": "Mansfield", - "id": "4l3m2n1o-0p9q-8r7s-6t5u-4v3w2x1y0z9", + "id": "842969cb-27b1-40c5-9c20-4bcb2c453efb", "price": 220000, "salesRevenue": 350000, "leasedLocation": true, @@ -8198,7 +8198,7 @@ "type": "13", "state": "TX", "city": "Cedar Park", - "id": "8a7b6c5d-4e3f-2g1h-0i9j-8k7l6m5n4o3", + "id": "dde91b12-5f7f-4a55-be00-6e452c7e53d7", "price": 350000, "salesRevenue": 550000, "leasedLocation": true, @@ -8223,7 +8223,7 @@ "type": "13", "state": "TX", "city": "Pflugerville", - "id": "2p1q0r9s-8t7u-6v5w-4x3y-2z1a0b9c8d7", + "id": "019094db-40c3-4bea-813a-6ae1a17c923b", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -8248,7 +8248,7 @@ "type": "7", "state": "TX", "city": "Euless", - "id": "6e5f4g3h-2i1j-0k9l-8m7n-6o5p4q3r2s1", + "id": "24cc12f1-2cb4-42d7-8c0f-95767b299abc", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -8273,7 +8273,7 @@ "type": "13", "state": "TX", "city": "Grapevine", - "id": "0t9u8v7w-6x5y-4z3a-2b1c-0d9e8f7g6h5", + "id": "6769439e-838c-40f1-a99b-9cae929674db", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -8298,7 +8298,7 @@ "type": "7", "state": "TX", "city": "Coppell", - "id": "4i3j2k1l-0m9n-8o7p-6q5r-4s3t2u1v0w9", + "id": "240ee859-2d64-4d67-9bac-15279fe1f141", "price": 450000, "salesRevenue": 700000, "leasedLocation": true, @@ -8323,7 +8323,7 @@ "type": "13", "state": "TX", "city": "Katy", - "id": "8x7y6z5a-4b3c-2d1e-0f9g-8h7i6j5k4l3", + "id": "0d107bc8-de04-4875-b01f-533109b896af", "price": 180000, "salesRevenue": 300000, "leasedLocation": true, @@ -8348,7 +8348,7 @@ "type": "7", "state": "TX", "city": "Friendswood", - "id": "2m1n0o9p-8q7r-6s5t-4u3v-2w1x0y9z8a7", + "id": "1638a82a-20a9-455e-8a0a-125519b36a56", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -8373,7 +8373,7 @@ "type": "13", "state": "TX", "city": "Little Elm", - "id": "6b5c4d3e-2f1g-0h9i-8j7k-6l5m4n3o2p1", + "id": "79da5bc9-4549-4a1a-a1f9-47fc5105e782", "price": 120000, "salesRevenue": 250000, "leasedLocation": true, @@ -8398,7 +8398,7 @@ "type": "13", "state": "TX", "city": "The Colony", - "id": "0q9r8s7t-6u5v-4w3x-2y1z-0a9b8c7d6e5", + "id": "37696996-33fe-4e47-a522-54928045cc6f", "price": 250000, "salesRevenue": 400000, "leasedLocation": true, @@ -8423,7 +8423,7 @@ "type": "13", "state": "TX", "city": "Schertz", - "id": "4f3g2h1i-0j9k-8l7m-6n5o-4p3q2r1s0t9", + "id": "50e42141-9c11-4a7a-876d-174c94075732", "price": 350000, "salesRevenue": 550000, "leasedLocation": true, @@ -8448,7 +8448,7 @@ "type": "7", "state": "TX", "city": "Kerrville", - "id": "8u7v6w5x-4y3z-2a1b-0c9d-8e7f6g5h4i3", + "id": "e53ccfbb-ea48-4795-bf2b-2f2d79518e3a", "price": 200000, "salesRevenue": 350000, "leasedLocation": true, @@ -8473,7 +8473,7 @@ "type": "7", "state": "TX", "city": "Leander", - "id": "2j1k0l9m-8n7o-6p5q-4r3s-2t1u0v9w8x7", + "id": "092fea66-bf9e-42c8-8818-d3f890d03e26", "price": 150000, "salesRevenue": 300000, "leasedLocation": true, @@ -8498,7 +8498,7 @@ "type": "13", "state": "TX", "city": "Rockwall", - "id": "6y5z4a3b-2c1d-0e9f-8g7h-6i5j4k3l2m1", + "id": "a706dd45-cada-4aa9-9e4a-c1a3f141307d", "price": 400000, "salesRevenue": 600000, "leasedLocation": false, @@ -8523,7 +8523,7 @@ "type": "1", "state": "TX", "city": "Houston", - "id": "c7d2c1f4-9a5d-4f9a-b8e1-6f5e8d3b6c4a", + "id": "b739c225-4777-4d72-896c-7a48b8d84388", "price": 450000, "salesRevenue": 850000, "leasedLocation": true, @@ -8548,7 +8548,7 @@ "type": "7", "state": "TX", "city": "Austin", - "id": "e6b2d8a1-3c5f-4e9d-a7b2-8c1d6e5f4a9b", + "id": "3d864da0-3977-4dee-b017-929a3c4dabab", "price": 1200000, "salesRevenue": 2500000, "leasedLocation": false, @@ -8573,7 +8573,7 @@ "type": "13", "state": "TX", "city": "San Antonio", - "id": "f1c4b9d2-7e8a-4d5b-9c1e-3a6d8f5b4c7e", + "id": "2861650a-5e79-4848-af55-4159cb9733a2", "price": 750000, "salesRevenue": 1200000, "leasedLocation": true, @@ -8598,7 +8598,7 @@ "type": "13", "state": "TX", "city": "Dallas", - "id": "a2b3c4d5-e6f7-4g8h-9i0j-1k2l3m4n5o6p", + "id": "47d7a0fc-c9cd-4352-9238-34e3ea135c36", "price": 350000, "salesRevenue": 600000, "leasedLocation": true, @@ -8623,7 +8623,7 @@ "type": "7", "state": "TX", "city": "Fort Worth", - "id": "b3c4d5e6-f7g8-4h9i-0j1k-2l3m4n5o6p7q", + "id": "8e309c73-e22b-4488-a1c3-16039391c389", "price": 950000, "salesRevenue": 1800000, "leasedLocation": false, @@ -8648,7 +8648,7 @@ "type": "7", "state": "TX", "city": "El Paso", - "id": "c4d5e6f7-g8h9-4i0j-1k2l-3m4n5o6p7q8r", + "id": "77ee4c22-5c8f-480b-9364-66c92e296bef", "price": 250000, "salesRevenue": 450000, "leasedLocation": true, @@ -8673,7 +8673,7 @@ "type": "7", "state": "TX", "city": "Plano", - "id": "d5e6f7g8-h9i0-4j1k-2l3m-4n5o6p7q8r9s", + "id": "cef7b815-c5f3-4de1-ab39-977dbacfdc0b", "price": 400000, "salesRevenue": 750000, "leasedLocation": true, @@ -8698,7 +8698,7 @@ "type": "1", "state": "TX", "city": "Arlington", - "id": "e6f7g8h9-i0j1-4k2l-3m4n-5o6p7q8r9s0t", + "id": "cc67e963-e3d9-4b5a-a620-870853fb7134", "price": 800000, "salesRevenue": 1500000, "leasedLocation": false, @@ -8723,7 +8723,7 @@ "type": "13", "state": "TX", "city": "Corpus Christi", - "id": "f7g8h9i0-j1k2-4l3m-4n5o-6p7q8r9s0t1u", + "id": "5397df13-ed49-4ca3-8885-4845f65c9c66", "price": 300000, "salesRevenue": 500000, "leasedLocation": true, @@ -8748,7 +8748,7 @@ "type": "7", "state": "TX", "city": "Frisco", - "id": "g8h9i0j1-k2l3-4m4n-5o6p-7q8r9s0t1u2v", + "id": "14576f4a-11f7-43f7-bf97-93ed63a35469", "price": 600000, "salesRevenue": 1200000, "leasedLocation": false, @@ -8773,7 +8773,7 @@ "type": "7", "state": "TX", "city": "Lubbock", - "id": "h9i0j1k2-l3m4-4n5o-6p7q-8r9s0t1u2v3w", + "id": "2ee7af71-75a2-4eaf-b15c-0b830898b8fb", "price": 180000, "salesRevenue": 350000, "leasedLocation": true, @@ -8798,7 +8798,7 @@ "type": "7", "state": "TX", "city": "Denton", - "id": "i0j1k2l3-m4n5-4o6p-7q8r-9s0t1u2v3w4x", + "id": "8a7ffa81-2b81-4fa9-ba00-daa9e52c0a3a", "price": 1200000, "salesRevenue": 2500000, "leasedLocation": false, @@ -8823,7 +8823,7 @@ "type": "7", "state": "TX", "city": "Waco", - "id": "j1k2l3m4-n5o6-4p7q-8r9s-0t1u2v3w4x5y", + "id": "6afbb426-34ef-4365-84f0-c34beec0c1b3", "price": 500000, "salesRevenue": 800000, "leasedLocation": true, @@ -8848,7 +8848,7 @@ "type": "1", "state": "TX", "city": "Midland", - "id": "k2l3m4n5-o6p7-4q8r-9s0t-1u2v3w4x5y6z", + "id": "5c7dd774-9cf7-48c4-bd30-e8d33c6e1437", "price": 450000, "salesRevenue": 900000, "leasedLocation": true, @@ -8873,7 +8873,7 @@ "type": "13", "state": "TX", "city": "Abilene", - "id": "l3m4n5o6-p7q8-4r9s-0t1u-2v3w4x5y6z7a", + "id": "12fc6d9e-e795-4c30-a11d-e714427b55e2", "price": 750000, "salesRevenue": 1500000, "leasedLocation": false, @@ -8898,7 +8898,7 @@ "type": "7", "state": "TX", "city": "Beaumont", - "id": "m4n5o6p7-q8r9-4s0t-1u2v-3w4x5y6z7a8b", + "id": "fc22ea5d-e28c-4a0d-aadc-b242ddb6beef", "price": 200000, "salesRevenue": 400000, "leasedLocation": true, @@ -8923,7 +8923,7 @@ "type": "5", "state": "TX", "city": "Round Rock", - "id": "n5o6p7q8-r9s0-4t1u-2v3w-4x5y6z7a8b9c", + "id": "b29a3b99-5762-40fc-b249-86f93b967456", "price": 500000, "salesRevenue": 1000000, "leasedLocation": true, @@ -8948,7 +8948,7 @@ "type": "11", "state": "TX", "city": "Wichita Falls", - "id": "o6p7q8r9-s0t1-4u2v-3w4x-5y6z7a8b9c0d", + "id": "3d4f144a-717f-4408-9249-033a49ce3e0a", "price": 1500000, "salesRevenue": 2000000, "leasedLocation": false, @@ -8973,7 +8973,7 @@ "type": "13", "state": "TX", "city": "Tyler", - "id": "p7q8r9s0-t1u2-4v3w-4x5y-6z7a8b9c0d1e", + "id": "4b149c55-9caf-40bc-ae14-060b7b43b8fb", "price": 650000, "salesRevenue": 1200000, "leasedLocation": true, @@ -8998,7 +8998,7 @@ "type": "12", "state": "TX", "city": "Odessa", - "id": "q8r9s0t1-u2v3-4w4x-5y6z-7a8b9c0d1e2f", + "id": "964f9499-603e-41a2-8695-6a93f59fc53d", "price": 900000, "salesRevenue": 1800000, "leasedLocation": false, @@ -9023,7 +9023,7 @@ "type": "7", "state": "TX", "city": "Longview", - "id": "r9s0t1u2-v3w4-4x5y-6z7a-8b9c0d1e2f3g", + "id": "6b45331b-e63c-476f-a5c6-b5663fa6d612", "price": 400000, "salesRevenue": 750000, "leasedLocation": true, @@ -9048,7 +9048,7 @@ "type": "1", "state": "CA", "city": "Los Angeles", - "id": "c742d1f4-a874-4f6c-9a5e-1a5f5c2e0d3b", + "id": "a5efd1e0-8211-4e2f-84c6-e731866e1bdf", "price": 450000, "salesRevenue": 850000, "leasedLocation": true, @@ -9073,7 +9073,7 @@ "type": "2", "state": "TX", "city": "Houston", - "id": "f5c7a3d9-2b1e-4a8c-9d1f-8c3e6b5a4d7f", + "id": "adcd33b3-0f41-44b7-a149-681cabcdfd1e", "price": 1200000, "salesRevenue": 2500000, "leasedLocation": false, @@ -9098,7 +9098,7 @@ "type": "3", "state": "FL", "city": "Miami", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "8a5addef-330e-4b30-ab4b-354f7d102996", "price": 2000000, "salesRevenue": 5000000, "leasedLocation": true, @@ -9123,7 +9123,7 @@ "type": "5", "state": "NY", "city": "New York City", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "58653861-3cb6-49e4-a907-9baeae295be1", "price": 350000, "salesRevenue": 750000, "leasedLocation": true, @@ -9148,7 +9148,7 @@ "type": "6", "state": "TX", "city": "Midland", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "07b68d53-6d9a-4592-b188-770e31b66c11", "price": 3500000, "salesRevenue": 8000000, "leasedLocation": false, @@ -9173,7 +9173,7 @@ "type": "7", "state": "AZ", "city": "Phoenix", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "17619fb3-f9fc-45a9-82d8-0d21d412cea0", "price": 500000, "salesRevenue": 1000000, "leasedLocation": true, @@ -9198,7 +9198,7 @@ "type": "8", "state": "IL", "city": "Chicago", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "11d61107-d93a-475a-b5d9-c7e9e0fb052f", "price": 1500000, "salesRevenue": 3000000, "leasedLocation": true, @@ -9223,7 +9223,7 @@ "type": "9", "state": "IA", "city": "Des Moines", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "7efe14e4-aa99-4418-b48f-64878aa02481", "price": 800000, "salesRevenue": 1500000, "leasedLocation": false, @@ -9248,7 +9248,7 @@ "type": "10", "state": "GA", "city": "Atlanta", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "45f5e994-d362-4a6d-8186-576deec9b154", "price": 600000, "salesRevenue": 1200000, "leasedLocation": true, @@ -9273,7 +9273,7 @@ "type": "11", "state": "WA", "city": "Seattle", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "1cdce518-56c4-4ffb-824f-77424c988333", "price": 1000000, "salesRevenue": 2000000, "leasedLocation": true, @@ -9298,7 +9298,7 @@ "type": "12", "state": "NC", "city": "Charlotte", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "fcb4f38d-f1fb-4cf8-95a0-4983933bfc63", "price": 2500000, "salesRevenue": 5000000, "leasedLocation": false, @@ -9323,7 +9323,7 @@ "type": "1", "state": "MI", "city": "Detroit", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "d8c32c42-189a-4f62-9496-364688caef22", "price": 900000, "salesRevenue": 1800000, "leasedLocation": false, @@ -9348,7 +9348,7 @@ "type": "2", "state": "OH", "city": "Cleveland", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "2c49d709-8352-45b7-90c0-93d67c221b1f", "price": 1500000, "salesRevenue": 3000000, "leasedLocation": true, @@ -9373,7 +9373,7 @@ "type": "3", "state": "NV", "city": "Las Vegas", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "07aa6ba8-6581-4ada-b5c1-38f3c7ecd59c", "price": 5000000, "salesRevenue": 10000000, "leasedLocation": true, @@ -9398,7 +9398,7 @@ "type": "5", "state": "OR", "city": "Portland", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "8054227f-5d8c-46b7-a9ee-a89dffd59b57", "price": 250000, "salesRevenue": 500000, "leasedLocation": true, @@ -9423,7 +9423,7 @@ "type": "6", "state": "TX", "city": "Odessa", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "0f4e6b2e-6de4-49ab-89c9-6cbcb81fddf5", "price": 4000000, "salesRevenue": 8000000, "leasedLocation": false, @@ -9448,7 +9448,7 @@ "type": "7", "state": "FL", "city": "Tampa", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "8a2f7174-d1de-4432-a409-ac2453b4c21e", "price": 600000, "salesRevenue": 1200000, "leasedLocation": true, @@ -9473,7 +9473,7 @@ "type": "8", "state": "CA", "city": "San Francisco", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "b74e5c05-3a94-4127-9117-5d3c40b8487f", "price": 2000000, "salesRevenue": 4000000, "leasedLocation": true, @@ -9498,7 +9498,7 @@ "type": "9", "state": "KS", "city": "Wichita", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "79f38344-0cb7-48a2-9166-4ceadf39f703", "price": 1200000, "salesRevenue": 2500000, "leasedLocation": false, @@ -9523,7 +9523,7 @@ "type": "11", "state": "MA", "city": "Boston", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "34fc769d-8e29-4ff7-8a64-f323c52e58fc", "price": 1500000, "salesRevenue": 3000000, "leasedLocation": true, @@ -9548,7 +9548,7 @@ "type": "12", "state": "WI", "city": "Milwaukee", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "d319eca1-577f-4375-a7ec-de25f22f4e7e", "price": 3000000, "salesRevenue": 6000000, "leasedLocation": false, @@ -9573,7 +9573,7 @@ "type": "13", "state": "OR", "city": "Portland", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "df9457e7-5036-451d-a741-5ad176693684", "price": 300000, "salesRevenue": 600000, "leasedLocation": true, @@ -9598,7 +9598,7 @@ "type": "1", "state": "AZ", "city": "Phoenix", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "7a7976f8-0b58-4c8b-83d5-ac53c4dc21a6", "price": 250000, "salesRevenue": 500000, "leasedLocation": true, @@ -9623,7 +9623,7 @@ "type": "2", "state": "TX", "city": "Dallas", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "00989024-02e7-4fc1-8227-e129acb2c45d", "price": 2000000, "salesRevenue": 4000000, "leasedLocation": false, @@ -9648,7 +9648,7 @@ "type": "3", "state": "FL", "city": "Miami", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "a661458b-170e-4ab6-95cc-c4bc12f827bf", "price": 1500000, "salesRevenue": 3000000, "leasedLocation": true, @@ -9673,7 +9673,7 @@ "type": "5", "state": "HI", "city": "Honolulu", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "aaf04dc0-3936-4dd3-8a76-aad8713a9f0c", "price": 500000, "salesRevenue": 1000000, "leasedLocation": true, @@ -9698,7 +9698,7 @@ "type": "6", "state": "TX", "city": "Houston", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "10635075-e94a-4056-aa4a-844e6d75ffd7", "price": 5000000, "salesRevenue": 10000000, "leasedLocation": false, @@ -9723,7 +9723,7 @@ "type": "7", "state": "IL", "city": "Chicago", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "d120091a-a102-4a6d-b095-094c82824e17", "price": 1200000, "salesRevenue": 2500000, "leasedLocation": true, @@ -9748,7 +9748,7 @@ "type": "8", "state": "NY", "city": "New York City", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "5ffa2546-1351-4b70-8191-b021428fbf20", "price": 2500000, "salesRevenue": 5000000, "leasedLocation": true, @@ -9773,7 +9773,7 @@ "type": "9", "state": "CA", "city": "Sacramento", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "1d7cf578-7811-4390-b1dd-1d526749dae6", "price": 1500000, "salesRevenue": 1000000, "leasedLocation": false, @@ -9798,7 +9798,7 @@ "type": "1", "state": "WA", "city": "Seattle", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "219baa11-d631-4b03-8197-aec3d7531706", "price": 800000, "salesRevenue": 1600000, "leasedLocation": true, @@ -9823,7 +9823,7 @@ "type": "2", "state": "OH", "city": "Cleveland", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "5051ff5d-536f-4e12-b4e9-c2b8b804ff60", "price": 2000000, "salesRevenue": 4000000, "leasedLocation": false, @@ -9848,7 +9848,7 @@ "type": "10", "state": "GA", "city": "Atlanta", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "11a870ab-d148-465e-a126-e533ea9fdeee", "price": 500000, "salesRevenue": 1000000, "leasedLocation": true, @@ -9873,7 +9873,7 @@ "type": "5", "state": "CA", "city": "San Diego", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "8f00e0a7-0951-47af-919d-3c922ae340b4", "price": 300000, "salesRevenue": 600000, "leasedLocation": true, @@ -9898,7 +9898,7 @@ "type": "6", "state": "TX", "city": "Midland", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "9cf9c4fa-7f25-46af-a980-d6d46773c3f7", "price": 10000000, "salesRevenue": 20000000, "leasedLocation": false, @@ -9923,7 +9923,7 @@ "type": "7", "state": "FL", "city": "Tampa", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "b606f23e-d245-4b82-a86d-81cc0ef8dc2b", "price": 1500000, "salesRevenue": 3000000, "leasedLocation": true, @@ -9948,7 +9948,7 @@ "type": "8", "state": "IL", "city": "Chicago", - "id": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "id": "bea8c393-566c-48b9-abd9-0c11c68e6214", "price": 1000000, "salesRevenue": 2000000, "leasedLocation": true, @@ -9973,7 +9973,7 @@ "type": "9", "state": "CA", "city": "Napa", - "id": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "id": "0928ae2a-53a9-40ad-b06f-e47c63ef2c62", "price": 8000000, "salesRevenue": 3000000, "leasedLocation": false, @@ -9989,5 +9989,2505 @@ "draft": false, "internals": "Profitable winery with a strong brand and award-winning wines. Real estate included.", "created": "2023-01-25T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Repair Shop", + "description": "

Thriving Auto Repair Business for Sale

Well-established auto repair shop with a loyal customer base in the heart of Houston. Fully equipped with state-of-the-art diagnostic tools and equipment.

Experienced staff of certified mechanics ready to continue providing top-notch service. Strong financials and growth potential make this an attractive opportunity for the right buyer.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "8b085b3b-506c-44dc-b386-f58218bc12fa", + "price": 650000, + "salesRevenue": 950000, + "leasedLocation": false, + "established": 2005, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 45678, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Solid business with a great reputation. Owner is motivated to sell.", + "created": "2022-09-15T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company", + "description": "

Well-Established Landscaping Business in Dallas

Successful landscaping company with a strong client base and consistent growth. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Excellent opportunity for someone looking to expand their portfolio or enter the landscaping industry.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "cad25edb-622d-4c30-8b67-787749c1da52", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 987654", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great team in place. Poised for continued growth.", + "created": "2022-11-03T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Local Coffee Shop", + "description": "

Charming Coffee Shop in the Heart of Austin

Beloved neighborhood coffee shop known for its unique blends and cozy atmosphere. Prime location with steady foot traffic.

Fully equipped kitchen and seating area. Loyal customer base and strong social media presence. Ideal opportunity for someone passionate about the coffee industry.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "0438003d-e632-477e-9f64-b58925288e2a", + "price": 350000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 2 weeks of training and support.", + "cashFlow": 100000, + "brokerLicencing": "TX 135790", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Charming shop with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-20T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Boutique Hotel", + "description": "

Charming Boutique Hotel in San Antonio

Beautiful 20-room boutique hotel located in the historic district of San Antonio. Consistently high occupancy rates and glowing reviews.

Fully furnished rooms with unique decor and modern amenities. On-site restaurant and bar. Strong financials and loyal customer base. Perfect opportunity for hospitality professionals or investors.

", + "type": "3", + "state": "TX", + "city": "San Antonio", + "id": "e8e98811-9fca-41c2-98fe-e6aaa361d50e", + "price": 3500000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 12345, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-maintained property with a great reputation. Solid investment opportunity.", + "created": "2022-12-10T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company", + "description": "

Successful HVAC Business in Fort Worth

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced technicians and management team in place. Consistent growth and profitability. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "5044f95c-6bf3-4ba9-80fa-304f9910a541", + "price": 1800000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 2000, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 369258", + "internalListingNumber": 54321, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-08-25T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dental Practice", + "description": "

Successful Dental Practice in El Paso

Well-established dental practice with a loyal patient base. Modern facility with state-of-the-art equipment.

Experienced staff of dental professionals. Strong financials and consistent growth. Perfect opportunity for a dentist looking to own their own practice or an investor seeking a profitable acquisition.

", + "type": "11", + "state": "TX", + "city": "El Paso", + "id": "aa2eb102-2ee0-4e75-b99d-d528565e8d10", + "price": 1200000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 147852", + "internalListingNumber": 98765, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run practice with a great reputation. Owner is motivated to sell.", + "created": "2022-07-18T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Fitness Center", + "description": "

Thriving Fitness Center in Plano

Popular fitness center with a diverse membership base. Fully equipped with modern cardio and strength training equipment.

Experienced staff of certified trainers and instructors. Strong financials and consistent growth. Excellent opportunity for fitness enthusiasts or investors looking for a profitable venture.

", + "type": "7", + "state": "TX", + "city": "Plano", + "id": "1d00e93e-4d7b-454f-919d-f3cdfb19fb7c", + "price": 900000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal member base. Poised for continued growth.", + "created": "2022-09-05T15:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Restaurant Chain", + "description": "

Popular Tex-Mex Restaurant Chain in Texas

Well-established restaurant chain with 5 locations across Texas. Known for its authentic Tex-Mex cuisine and lively atmosphere.

Fully equipped kitchens and dining areas. Experienced staff and management team in place. Strong financials and brand recognition. Perfect opportunity for restaurateurs or investors looking to acquire a thriving business.

", + "type": "13", + "state": "TX", + "city": "Multiple", + "id": "a0024fdb-6d1c-43c5-85e1-8268d6b0ec3c", + "price": 5000000, + "salesRevenue": 7500000, + "leasedLocation": true, + "established": 2000, + "employees": 150, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1500000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established chain with a strong brand and loyal customer base.", + "created": "2022-11-22T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Accounting Firm", + "description": "

Thriving Accounting Practice in Houston

Well-established accounting firm with a diverse client base. Experienced team of CPAs and support staff.

Strong financials and consistent growth. Excellent opportunity for an accounting professional looking to own their own practice or an investor seeking a profitable acquisition.

", + "type": "11", + "state": "TX", + "city": "Houston", + "id": "9a9fa364-7530-4b80-bbf7-870afec1c3f3", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 1995, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run firm with a great reputation. Owner is motivated to sell.", + "created": "2022-10-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Company", + "description": "

Successful Manufacturing Business in Dallas

Well-established manufacturing company specializing in custom metal fabrication. Fully equipped facility with modern machinery and equipment.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the manufacturing industry or looking to expand their portfolio.

", + "type": "12", + "state": "TX", + "city": "Dallas", + "id": "9140bc5e-a2b1-48f4-b780-a5cc05c85e5f", + "price": 4000000, + "salesRevenue": 6000000, + "leasedLocation": false, + "established": 1985, + "employees": 50, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-02T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bar and Grill", + "description": "

Thriving Bar and Grill in Austin

Well-established bar and grill with a loyal customer base. Known for its unique cocktails and delicious pub fare.

Fully equipped kitchen and bar area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "6c8fd87e-1a6b-4511-95f8-82bf4d2239e7", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 30, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-28T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Body Shop", + "description": "

Thriving Auto Body Shop in San Antonio

Well-established auto body shop with a strong reputation for quality work. Fully equipped with state-of-the-art tools and equipment.

Experienced staff of certified technicians. Strong financials and consistent growth. Excellent opportunity for someone in the auto body industry or looking to expand their portfolio.

", + "type": "1", + "state": "TX", + "city": "San Antonio", + "id": "74a649b7-7ca6-4a6e-b0a2-24136b52cce3", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 1998, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 86420, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-12T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dry Cleaning Business", + "description": "

Established Dry Cleaning Business in Corpus Christi

Well-established dry cleaning business with a loyal customer base. Fully equipped with modern cleaning equipment and machinery.

Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the dry cleaning industry or looking for a profitable investment.

", + "type": "7", + "state": "TX", + "city": "Corpus Christi", + "id": "8fd43afc-b74d-4d07-b366-7e07706ad157", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell.", + "created": "2022-08-05T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant", + "description": "

Profitable Franchise Restaurant in Lubbock

Well-established franchise restaurant with a prime location in Lubbock. Consistently high sales and customer traffic.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone looking to own a proven business model.

", + "type": "10", + "state": "TX", + "city": "Lubbock", + "id": "2effd116-5b8f-4253-a2fe-583a57a73bdd", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Catering Company", + "description": "

Successful Catering Business in Arlington

Well-established catering company with a diverse client base. Known for its delicious food and exceptional service.

Fully equipped commercial kitchen and catering vehicles. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Arlington", + "id": "d7fc5f37-4c5f-4ecd-b26b-26d2aa47e7ce", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-08T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Veterinary Clinic", + "description": "

Successful Veterinary Practice in Amarillo

Well-established veterinary clinic with a loyal client base. Modern facility with state-of-the-art equipment.

Experienced staff of veterinarians and support personnel. Strong financials and consistent growth. Excellent opportunity for a veterinarian looking to own their own practice or an investor seeking a profitable acquisition.

", + "type": "11", + "state": "TX", + "city": "Amarillo", + "id": "9982f119-6352-46af-acfa-f28d28ba58ea", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2000, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run practice with a great reputation. Owner is motivated to sell.", + "created": "2022-09-25T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Business", + "description": "

Thriving Landscaping Company in Waco

Well-established landscaping business with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Perfect opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Waco", + "id": "1658990e-c0b9-4b1f-9f77-92b3535084d7", + "price": 900000, + "salesRevenue": 1400000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-07-15T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Plumbing Company", + "description": "

Established Plumbing Business in McAllen

Well-established plumbing company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "McAllen", + "id": "7884811c-2083-4f13-a673-a35921109bba", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 1995, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-05T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bakery and Cafe", + "description": "

Thriving Bakery and Cafe in Midland

Well-established bakery and cafe with a loyal customer base. Known for its delicious pastries and artisan coffee.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Midland", + "id": "99b52861-f07f-4f36-878b-63a537eab74c", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-08-22T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Detailing Shop", + "description": "

Successful Auto Detailing Business in Abilene

Well-established auto detailing shop with a strong reputation for quality work. Fully equipped with state-of-the-art tools and equipment.

Experienced staff of detailing professionals. Strong financials and consistent growth. Excellent opportunity for someone in the auto detailing industry or looking to expand their portfolio.

", + "type": "1", + "state": "TX", + "city": "Abilene", + "id": "c6373c0b-f3d6-44e3-b737-744b7296f3b1", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-10-10T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Home Healthcare Agency", + "description": "

Successful Home Healthcare Business in Houston

Well-established home healthcare agency with a strong reputation for quality care. Fully licensed and accredited.

Experienced staff of healthcare professionals and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the healthcare industry or looking to expand their portfolio.

", + "type": "11", + "state": "TX", + "city": "Houston", + "id": "879ea68f-0750-44a2-a96a-5440036c4ac2", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": true, + "established": 2005, + "employees": 50, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run agency with a loyal client base. Solid investment opportunity.", + "created": "2022-12-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Sports Bar and Grill", + "description": "

Thriving Sports Bar and Grill in San Antonio

Well-established sports bar and grill with a loyal customer base. Known for its lively atmosphere and delicious pub fare.

Fully equipped kitchen and bar area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "San Antonio", + "id": "bbd4e604-2271-4bb3-b7df-d64b1034c1c6", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2010, + "employees": 35, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-05T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Contracting Business", + "description": "

Profitable Electrical Contracting Company in Dallas

Well-established electrical contracting business with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced electricians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the electrical industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "5b8af4c6-947f-4844-a686-6b51f7253faa", + "price": 3000000, + "salesRevenue": 4500000, + "leasedLocation": false, + "established": 1998, + "employees": 40, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-11-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center", + "description": "

Profitable Franchise Fitness Center in Austin

Well-established franchise fitness center with a prime location in Austin. Consistently high membership and revenue.

Fully equipped with modern cardio and strength training equipment. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for fitness enthusiasts or investors looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Austin", + "id": "f4e161c5-003e-4905-84ce-6f62e8e180db", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a great reputation. Solid investment opportunity.", + "created": "2022-10-12T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Event Planning Business", + "description": "

Successful Event Planning Company in Fort Worth

Well-established event planning business with a diverse client base. Known for its creative designs and exceptional service.

Experienced team of event planners and coordinators. Strong financials and consistent growth. Perfect opportunity for someone in the event planning industry or looking for a profitable investment.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "74502aa8-8e4b-4b60-be08-3a536a3b77dc", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-08-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company", + "description": "

Profitable Roofing Business in El Paso

Well-established roofing company with a strong reputation for quality work. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "El Paso", + "id": "f2a79d6d-b0ee-48cc-9d67-e5df241d8963", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2000, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-02T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Italian Restaurant", + "description": "

Thriving Italian Restaurant in Plano

Well-established Italian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Plano", + "id": "faeb08de-2977-41c5-863e-443bf658243a", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-25T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Auto Repair Shop", + "description": "

Profitable Franchise Auto Repair Shop in Irving

Well-established franchise auto repair shop with a prime location in Irving. Consistently high customer traffic and revenue.

Fully equipped with state-of-the-art diagnostic tools and equipment. Experienced staff of certified mechanics in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the auto repair industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Irving", + "id": "df56205f-1b10-4fdf-92a4-fa49092f8d29", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-07-10T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Child Care Center", + "description": "

Successful Child Care Business in Lubbock

Well-established child care center with a strong reputation for quality care. Fully licensed and accredited.

Experienced staff of early childhood educators and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the child care industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Lubbock", + "id": "f6e3dc8a-3cb8-4969-bc3c-b25431f5fdd8", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run center with a loyal client base. Solid investment opportunity.", + "created": "2022-11-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Craft Brewery and Taproom", + "description": "

Thriving Craft Brewery and Taproom in Corpus Christi

Well-established craft brewery and taproom with a loyal customer base. Known for its unique brews and lively atmosphere.

Fully equipped brewing facility and taproom. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the craft beer industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Corpus Christi", + "id": "9fb0d95e-94e0-464d-b8eb-7f1aa950a1c5", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": true, + "established": 2015, + "employees": 30, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company", + "description": "

Profitable HVAC Business in Laredo

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced HVAC technicians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Laredo", + "id": "23505bcc-8114-4842-9135-33f8fb09e134", + "price": 3000000, + "salesRevenue": 4500000, + "leasedLocation": false, + "established": 2000, + "employees": 40, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Hair Salon", + "description": "

Profitable Franchise Hair Salon in Amarillo

Well-established franchise hair salon with a prime location in Amarillo. Consistently high customer traffic and revenue.

Fully equipped with modern styling stations and equipment. Experienced staff of licensed stylists in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the beauty industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Amarillo", + "id": "f270f656-b063-41cf-8657-6caafc0bd113", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Business", + "description": "

Successful Pet Grooming Salon in Waco

Well-established pet grooming business with a strong reputation for quality care. Fully equipped with modern grooming tools and equipment.

Experienced staff of pet groomers and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the pet care industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Waco", + "id": "3f096a4e-3427-48f9-b6b9-2779dfc33421", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal client base. Poised for continued growth.", + "created": "2022-08-28T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Mexican Restaurant", + "description": "

Thriving Mexican Restaurant in McAllen

Well-established Mexican restaurant with a loyal customer base. Known for its authentic cuisine and lively atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "McAllen", + "id": "f05bbb68-4709-458d-9742-d779ceb1aaf3", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-10T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Printing Company", + "description": "

Profitable Printing Business in Midland

Well-established printing company with a diverse client base. Fully equipped with modern printing presses and equipment.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the printing industry or looking to expand their portfolio.

", + "type": "12", + "state": "TX", + "city": "Midland", + "id": "5e084aae-fadb-4446-ba43-db9bd4d7fc43", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 1995, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Sandwich Shop", + "description": "

Profitable Franchise Sandwich Shop in Odessa

Well-established franchise sandwich shop with a prime location in Odessa. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Odessa", + "id": "5d377a91-1811-493c-93e8-8daf1b20b189", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-18T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Martial Arts Studio", + "description": "

Successful Martial Arts Studio in Abilene

Well-established martial arts studio with a strong reputation for quality instruction. Fully equipped with modern training equipment and mats.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the martial arts industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Abilene", + "id": "1917ea96-c31e-4995-941b-4a9e1383c34e", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Smoothie and Juice Bar", + "description": "

Thriving Smoothie and Juice Bar in Beaumont

Well-established smoothie and juice bar with a loyal customer base. Known for its healthy and delicious offerings.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the health food industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Beaumont", + "id": "a628d94c-58f3-4df0-837c-e3c8e47192c2", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2018, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Flooring Company", + "description": "

Profitable Flooring Business in Tyler

Well-established flooring company with a diverse client base. Fully equipped with tools, vehicles, and inventory.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the flooring industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Tyler", + "id": "0d3a865c-31db-4e9c-b126-64958d208bb0", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Tutoring Center", + "description": "

Profitable Franchise Tutoring Center in College Station

Well-established franchise tutoring center with a prime location in College Station. Consistently high student enrollment and revenue.

Fully equipped classrooms and learning materials. Experienced staff of certified teachers in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the education industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "College Station", + "id": "d42c807a-98d0-40b7-a46b-9a15a3998c6a", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-05T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Home Healthcare Agency", + "description": "

Successful Home Healthcare Business in San Marcos

Well-established home healthcare agency with a strong reputation for quality care. Fully licensed and accredited.

Experienced staff of healthcare professionals and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the healthcare industry or looking to expand their portfolio.

", + "type": "11", + "state": "TX", + "city": "San Marcos", + "id": "9a862f71-5dec-4522-9def-e96b090a2fc9", + "price": 2800000, + "salesRevenue": 4000000, + "leasedLocation": true, + "established": 2008, + "employees": 55, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run agency with a loyal client base. Solid investment opportunity.", + "created": "2022-12-12T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Craft Beer Bar", + "description": "

Thriving Craft Beer Bar in New Braunfels

Well-established craft beer bar with a loyal customer base. Known for its rotating selection of unique brews and lively atmosphere.

Fully equipped bar and kitchen area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "New Braunfels", + "id": "b5fcab89-9057-48af-a96d-93acf320d405", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-18T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company", + "description": "

Profitable Plumbing Business in Wichita Falls

Well-established plumbing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Wichita Falls", + "id": "a3ce0880-d291-4d1f-835a-932af136e2cd", + "price": 3500000, + "salesRevenue": 5000000, + "leasedLocation": false, + "established": 2002, + "employees": 45, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 1200000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-25T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Pizza Restaurant", + "description": "

Profitable Franchise Pizza Restaurant in Temple

Well-established franchise pizza restaurant with a prime location in Temple. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Temple", + "id": "8919e198-5909-4d15-a50b-a0f9e061a648", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2018, + "employees": 30, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-08T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dry Cleaning Business", + "description": "

Successful Dry Cleaning Company in Lufkin

Well-established dry cleaning business with a strong reputation for quality service. Fully equipped with modern cleaning equipment and machinery.

Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the dry cleaning industry or looking for a profitable investment.

", + "type": "7", + "state": "TX", + "city": "Lufkin", + "id": "d1f5ccc8-3a2c-4d25-ac89-0a4a75d02491", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-08-22T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Landscaping Company", + "description": "

Profitable Landscaping Business in Sherman

Well-established landscaping company with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Excellent opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Sherman", + "id": "99bb5d81-ce8d-462f-a193-2f752dcd0582", + "price": 2200000, + "salesRevenue": 3200000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-15T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Sushi Restaurant", + "description": "

Thriving Sushi Restaurant in Longview

Well-established sushi restaurant with a loyal customer base. Known for its fresh ingredients and creative rolls.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Longview", + "id": "73e2ef04-37ab-4b28-b738-9801f108de18", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Gym", + "description": "

Profitable Franchise Gym in Texarkana

Well-established franchise gym with a prime location in Texarkana. Consistently high membership and revenue.

Fully equipped with modern cardio and strength training equipment. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for fitness enthusiasts or investors looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Texarkana", + "id": "50928a2b-9e4f-44a0-8230-352230ce7e87", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2020, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal member base. Poised for continued growth.", + "created": "2022-10-15T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dance Studio", + "description": "

Successful Dance Studio in Victoria

Well-established dance studio with a strong reputation for quality instruction. Fully equipped with sprung floors and mirrored walls.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the dance industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Victoria", + "id": "d963b091-1469-4c8c-8f7d-b553d8affa34", + "price": 900000, + "salesRevenue": 1300000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Coffee Shop and Cafe", + "description": "

Thriving Coffee Shop and Cafe in Huntsville

Well-established coffee shop and cafe with a loyal customer base. Known for its artisan coffee and delicious pastries.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Huntsville", + "id": "ab5726dc-1036-4c9a-ab7e-97cf6bc03515", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2018, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-05T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Printing Company", + "description": "

Profitable Printing Business in Conroe

Well-established printing company with a diverse client base. Fully equipped with modern printing presses and equipment.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the printing industry or looking to expand their portfolio.

", + "type": "12", + "state": "TX", + "city": "Conroe", + "id": "46ff0c39-53c3-4a73-b81e-9c044cfae285", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2000, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-10T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Burger Restaurant", + "description": "

Profitable Franchise Burger Restaurant in Nacogdoches

Well-established franchise burger restaurant with a prime location in Nacogdoches. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Nacogdoches", + "id": "d82d6d16-e3cc-4040-88e5-e9aa22d464fa", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 35, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Yoga Studio", + "description": "

Successful Yoga Studio in Kerrville

Well-established yoga studio with a strong reputation for quality instruction. Fully equipped with mats, props, and a peaceful atmosphere.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the wellness industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Kerrville", + "id": "4817709e-320f-457e-bb40-8dcc6f3c5c50", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2018, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Poised for continued growth.", + "created": "2022-08-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Greek Restaurant", + "description": "

Thriving Greek Restaurant in Denton

Well-established Greek restaurant with a loyal customer base. Known for its authentic cuisine and lively atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Denton", + "id": "088dd4ae-c0a2-4391-a523-3cb51550fafe", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-20T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company", + "description": "

Profitable HVAC Business in Greenville

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced HVAC technicians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Greenville", + "id": "ed72d148-74db-4bd7-896e-dd446dcba318", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 40, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop", + "description": "

Profitable Franchise Ice Cream Shop in Humble

Well-established franchise ice cream shop with a prime location in Humble. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Humble", + "id": "b08b7d7a-85f1-4ff7-abd4-ff06efdb378b", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2018, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-25T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pilates Studio", + "description": "

Successful Pilates Studio in Georgetown

Well-established Pilates studio with a strong reputation for quality instruction. Fully equipped with reformers and other apparatus.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the fitness industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Georgetown", + "id": "17674ced-b4e8-4d34-b9ef-992a5d21bd24", + "price": 700000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-10T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Vietnamese Restaurant", + "description": "

Thriving Vietnamese Restaurant in Harlingen

Well-established Vietnamese restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Harlingen", + "id": "64e0d8c3-f4d1-45e3-8092-8712cdf16f5b", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-18T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company", + "description": "

Profitable Roofing Business in Coppell

Well-established roofing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Coppell", + "id": "190cc90c-37b0-43e7-8e7e-27fb699bc828", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-02T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Donut Shop", + "description": "

Profitable Franchise Donut Shop in Bay City

Well-established franchise donut shop with a prime location in Bay City. Consistently high customer traffic and revenue.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Bay City", + "id": "073e47a3-d910-445d-acec-601a2df7dcd0", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2020, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-20T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Juice Bar in Miami", + "description": "

Successful Juice Bar in the Heart of Miami

Well-established juice bar with a loyal customer base. Known for its fresh, organic ingredients and unique blends.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the health food industry or looking for a profitable investment.

", + "type": "13", + "state": "FL", + "city": "Miami", + "id": "0a6277c6-e30c-4ba4-b978-3a6998b2ca3a", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "FL 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Repair Shop in Chicago", + "description": "

Profitable Auto Repair Shop in Chicago

Well-established auto repair shop with a diverse client base. Fully equipped with modern diagnostic tools and equipment.

Experienced mechanics and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the automotive industry or looking to expand their portfolio.

", + "type": "1", + "state": "IL", + "city": "Chicago", + "id": "d5d980d1-a99a-4129-b1df-15495fbe312b", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "IL 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Yoga Studio in Denver", + "description": "

Thriving Yoga Studio in the Heart of Denver

Well-established yoga studio with a strong reputation for quality instruction. Fully equipped with mats, props, and a peaceful atmosphere.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the wellness industry or looking to expand their portfolio.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "64825501-484a-42af-9ce4-b3c5b78e4a5c", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2018, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "CO 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Owner is motivated to sell quickly.", + "created": "2022-09-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Coffee Shop in Seattle", + "description": "

Profitable Franchise Coffee Shop in the Heart of Seattle

Well-established franchise coffee shop with a prime location in Seattle. Consistently high customer traffic and revenue.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "WA", + "city": "Seattle", + "id": "c0f2fcea-6b12-412e-b90d-a99028165eaa", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "WA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-11-05T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Business in Los Angeles", + "description": "

Successful Pet Grooming Salon in Los Angeles

Well-established pet grooming business with a strong reputation for quality care. Fully equipped with modern grooming tools and equipment.

Experienced staff of pet groomers and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the pet care industry or looking to expand their portfolio.

", + "type": "7", + "state": "CA", + "city": "Los Angeles", + "id": "dc358d21-940e-4879-a575-8fa4de3ff445", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2010, + "employees": 18, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "CA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal client base. Solid investment opportunity.", + "created": "2022-08-28T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Italian Restaurant in Boston", + "description": "

Thriving Italian Restaurant in the Heart of Boston

Well-established Italian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "MA", + "city": "Boston", + "id": "1f26a856-6ab3-4f23-86fe-a20e8e6af4a8", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "MA 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-15T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Atlanta", + "description": "

Profitable Plumbing Business in Atlanta

Well-established plumbing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "GA", + "city": "Atlanta", + "id": "c5e528d3-abbd-402a-9d8a-7a229d1cff12", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "GA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center in Phoenix", + "description": "

Profitable Franchise Fitness Center in Phoenix

Well-established franchise fitness center with a prime location in Phoenix. Consistently high membership and revenue.

Fully equipped with modern cardio and strength training equipment. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for fitness enthusiasts or investors looking for a proven business model.

", + "type": "10", + "state": "AZ", + "city": "Phoenix", + "id": "fc76815f-9e42-47dc-9ab6-a70945162458", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "AZ 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal member base. Solid investment opportunity.", + "created": "2022-09-18T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dance Studio in Las Vegas", + "description": "

Successful Dance Studio in the Heart of Las Vegas

Well-established dance studio with a strong reputation for quality instruction. Fully equipped with sprung floors and mirrored walls.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the dance industry or looking to expand their portfolio.

", + "type": "7", + "state": "NV", + "city": "Las Vegas", + "id": "33dc7727-d8a9-4ee5-8ac1-0197cfc9494b", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "NV 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Poised for continued growth.", + "created": "2022-07-05T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Sushi Restaurant in Honolulu", + "description": "

Thriving Sushi Restaurant in the Heart of Honolulu

Well-established sushi restaurant with a loyal customer base. Known for its fresh ingredients and creative rolls.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "HI", + "city": "Honolulu", + "id": "ce200a4c-7861-4edb-afb6-1f7f2d37fdd2", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "HI 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-11-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company in Portland", + "description": "

Profitable Roofing Business in Portland

Well-established roofing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "OR", + "city": "Portland", + "id": "93398adc-d91e-4492-b5e4-f8ad356b7cd1", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "OR 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Sandwich Shop in Minneapolis", + "description": "

Profitable Franchise Sandwich Shop in Minneapolis

Well-established franchise sandwich shop with a prime location in Minneapolis. Consistently high customer traffic and revenue.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "MN", + "city": "Minneapolis", + "id": "14aea0b3-a26a-41d4-9f81-86d515846c2d", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2018, + "employees": 18, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "MN 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-10-22T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pilates Studio in Nashville", + "description": "

Successful Pilates Studio in the Heart of Nashville

Well-established Pilates studio with a strong reputation for quality instruction. Fully equipped with reformers and other apparatus.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the fitness industry or looking to expand their portfolio.

", + "type": "7", + "state": "TN", + "city": "Nashville", + "id": "1b197b53-e475-4fae-aa0e-6c376f1b8768", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "TN 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Owner is motivated to sell quickly.", + "created": "2022-08-08T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Korean Restaurant in New York City", + "description": "

Thriving Korean Restaurant in the Heart of New York City

Well-established Korean restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "NY", + "city": "New York City", + "id": "cd626e1b-acb8-4581-adb0-f99115b5bf39", + "price": 2000000, + "salesRevenue": 2800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 700000, + "brokerLicencing": "NY 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-28T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company in Charlotte", + "description": "

Profitable HVAC Business in Charlotte

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced HVAC technicians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "NC", + "city": "Charlotte", + "id": "a89402d2-b673-4e01-9040-df876b2bc36d", + "price": 3000000, + "salesRevenue": 4500000, + "leasedLocation": false, + "established": 2005, + "employees": 40, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "NC 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Hair Salon in Columbus", + "description": "

Profitable Franchise Hair Salon in Columbus

Well-established franchise hair salon with a prime location in Columbus. Consistently high customer traffic and revenue.

Fully equipped with modern styling stations and equipment. Experienced staff of licensed stylists in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the beauty industry or looking for a proven business model.

", + "type": "10", + "state": "OH", + "city": "Columbus", + "id": "05f22244-e510-4d3c-a31b-532703916f41", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2018, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "OH 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-15T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Martial Arts Studio in Philadelphia", + "description": "

Successful Martial Arts Studio in the Heart of Philadelphia

Well-established martial arts studio with a strong reputation for quality instruction. Fully equipped with modern training equipment and mats.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the martial arts industry or looking to expand their portfolio.

", + "type": "7", + "state": "PA", + "city": "Philadelphia", + "id": "8e7c7333-4c17-49c3-b2cd-2c174d7858c3", + "price": 700000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "PA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-22T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Caribbean Restaurant in Washington, D.C.", + "description": "

Thriving Caribbean Restaurant in the Heart of Washington, D.C.

Well-established Caribbean restaurant with a loyal customer base. Known for its authentic cuisine and lively atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "DC", + "city": "Washington", + "id": "b148ad7f-7f4a-4319-bc8c-df23cf85be3b", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "DC 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Landscaping Company in St. Louis", + "description": "

Profitable Landscaping Business in St. Louis

Well-established landscaping company with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Excellent opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "MO", + "city": "St. Louis", + "id": "d4ad4cc8-f38d-4eb7-8fd5-48fa7dd3fa34", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "MO 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop in Milwaukee", + "description": "

Profitable Franchise Ice Cream Shop in Milwaukee

Well-established franchise ice cream shop with a prime location in Milwaukee. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "WI", + "city": "Milwaukee", + "id": "1126637a-17e2-4097-a7be-d16bf4cde6a7", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2020, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "WI 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Bakery and Cafe in San Francisco", + "description": "

Successful Bakery and Cafe in the Heart of San Francisco

Well-established bakery and cafe with a loyal customer base. Known for its artisan bread and delicious pastries.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "CA", + "city": "San Francisco", + "id": "f4028b57-257c-4f13-ab65-9c020cb4460d", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "CA 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Boston", + "description": "

Profitable Dry Cleaning Business in Boston

Well-established dry cleaning business with a diverse client base. Fully equipped with modern cleaning equipment and machinery.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the dry cleaning industry or looking to expand their portfolio.

", + "type": "7", + "state": "MA", + "city": "Boston", + "id": "336cab37-5476-4fe2-8371-145a4d31f268", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "MA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-22T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Craft Beer Bar in Portland", + "description": "

Thriving Craft Beer Bar in the Heart of Portland

Well-established craft beer bar with a loyal customer base. Known for its rotating selection of unique brews and lively atmosphere.

Fully equipped bar and kitchen area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "OR", + "city": "Portland", + "id": "221cc0fd-e915-40bd-90de-d7ae705404fd", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "OR 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-08T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Burger Restaurant in Miami", + "description": "

Profitable Franchise Burger Restaurant in Miami

Well-established franchise burger restaurant with a prime location in Miami. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "FL", + "city": "Miami", + "id": "08fc10d5-0406-47ba-83b3-5998402deef5", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2015, + "employees": 30, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 600000, + "brokerLicencing": "FL 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-11-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Boarding Business in Seattle", + "description": "

Successful Pet Boarding Facility in Seattle

Well-established pet boarding business with a strong reputation for quality care. Fully equipped with modern kennels and play areas.

Experienced staff of pet care professionals and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the pet care industry or looking to expand their portfolio.

", + "type": "7", + "state": "WA", + "city": "Seattle", + "id": "aa56a294-c3a0-4b61-ad8a-251b11f75097", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "WA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal client base. Solid investment opportunity.", + "created": "2022-08-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Thai Restaurant in Chicago", + "description": "

Thriving Thai Restaurant in the Heart of Chicago

Well-established Thai restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "IL", + "city": "Chicago", + "id": "abff3871-6a62-4da8-aca4-bdf86c280c68", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2018, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "IL 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Contracting Business in Denver", + "description": "

Profitable Electrical Contracting Company in Denver

Well-established electrical contracting business with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced electricians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the electrical industry or looking to expand their portfolio.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "1dff946c-170b-444a-aa96-f4e5d43cd3ae", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "CO 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Pizza Restaurant in Phoenix", + "description": "

Profitable Franchise Pizza Restaurant in Phoenix

Well-established franchise pizza restaurant with a prime location in Phoenix. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "AZ", + "city": "Phoenix", + "id": "0c69092c-438f-4aa3-9883-baff123245c2", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "AZ 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Solid investment opportunity.", + "created": "2022-09-05T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Music School in Nashville", + "description": "

Successful Music School in the Heart of Nashville

Well-established music school with a strong reputation for quality instruction. Fully equipped with instruments and teaching rooms.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the music education industry or looking to expand their portfolio.

", + "type": "7", + "state": "TN", + "city": "Nashville", + "id": "0eaf0b61-637c-4549-944a-dd3bbbf00f78", + "price": 900000, + "salesRevenue": 1300000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TN 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run school with a loyal student base. Poised for continued growth.", + "created": "2022-07-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Vietnamese Restaurant in Houston", + "description": "

Thriving Vietnamese Restaurant in the Heart of Houston

Well-established Vietnamese restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Houston", + "id": "4d2db33c-bfcc-4d52-b8be-7477adb71d4e", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-11-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Las Vegas", + "description": "

Profitable Plumbing Business in Las Vegas

Well-established plumbing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "NV", + "city": "Las Vegas", + "id": "bf4b5be3-54bb-4f2b-af44-bc73cbea534f", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "NV 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-15T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Salon in Atlanta", + "description": "

Profitable Franchise Salon in Atlanta

Well-established franchise salon with a prime location in Atlanta. Consistently high customer traffic and revenue.

Fully equipped with modern styling stations and equipment. Experienced staff of licensed stylists in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the beauty industry or looking for a proven business model.

", + "type": "10", + "state": "GA", + "city": "Atlanta", + "id": "fd46bbe5-2a6d-48ac-92d0-5379335943ef", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2018, + "employees": 18, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "GA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-10-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Yoga Studio in Honolulu", + "description": "

Successful Yoga Studio in the Heart of Honolulu

Well-established yoga studio with a strong reputation for quality instruction. Fully equipped with mats, props, and a peaceful atmosphere.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the wellness industry or looking to expand their portfolio.

", + "type": "7", + "state": "HI", + "city": "Honolulu", + "id": "30388d15-cfeb-478f-92e9-bce829d6e2b1", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "HI 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Owner is motivated to sell quickly.", + "created": "2022-08-28T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Indian Restaurant in Washington, D.C.", + "description": "

Thriving Indian Restaurant in the Heart of Washington, D.C.

Well-established Indian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "DC", + "city": "Washington", + "id": "d8d0f4e3-fdbf-4c4b-b2bd-d8847f0d248f", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "DC 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-18T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company in Minneapolis", + "description": "

Profitable Roofing Business in Minneapolis

Well-established roofing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "MN", + "city": "Minneapolis", + "id": "b4a18ab1-4a78-4f19-a7f7-34096bf6e390", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "MN 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Frozen Yogurt Shop in Charlotte", + "description": "

Profitable Franchise Frozen Yogurt Shop in Charlotte

Well-established franchise frozen yogurt shop with a prime location in Charlotte. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "NC", + "city": "Charlotte", + "id": "1bce3a49-aee0-4143-a42f-74657a7403ad", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2020, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "NC 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-22T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pilates Studio in Columbus", + "description": "

Successful Pilates Studio in the Heart of Columbus

Well-established Pilates studio with a strong reputation for quality instruction. Fully equipped with reformers and other apparatus.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the fitness industry or looking to expand their portfolio.

", + "type": "7", + "state": "OH", + "city": "Columbus", + "id": "007164c3-b55b-4ffc-ad74-78834d1f8f5f", + "price": 700000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "OH 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Peruvian Restaurant in Philadelphia", + "description": "

Thriving Peruvian Restaurant in the Heart of Philadelphia

Well-established Peruvian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "PA", + "city": "Philadelphia", + "id": "ac1d58bf-6ec8-4fa9-bece-c038e4ea5777", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "PA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-28T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Landscaping Company in Baltimore", + "description": "

Profitable Landscaping Business in Baltimore

Well-established landscaping company with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Excellent opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "MD", + "city": "Baltimore", + "id": "b222f48d-9b63-49d7-9908-0afe72534506", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "MD 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Bubble Tea Shop in San Diego", + "description": "

Profitable Franchise Bubble Tea Shop in San Diego

Well-established franchise bubble tea shop with a prime location in San Diego. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "CA", + "city": "San Diego", + "id": "7f197b7f-c3ca-4ae9-bb0c-68acdd9371eb", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2020, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "CA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-08T16:45:00.000Z" } ] \ No newline at end of file diff --git a/crawler/data/businesses_.json b/crawler/data/businesses_.json index fe51488..8aca327 100644 --- a/crawler/data/businesses_.json +++ b/crawler/data/businesses_.json @@ -1 +1,12493 @@ -[] +[ + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Local Bakery for Sale", + "description": "

Established Neighborhood Bakery

This beloved local bakery has been serving the community for over a decade, offering a wide variety of fresh-baked goods, including artisan breads, pastries, and custom cakes.

With a loyal customer base and a prime location in a bustling shopping district, this bakery is poised for continued success. The current owner is retiring and seeking a passionate entrepreneur to take the reins and continue the bakery's legacy.

", + "type": "13", + "state": "CA", + "city": "San Francisco", + "id": "5e99af54-40df-4157-a116-b89a4e39d266", + "price": 300000, + "salesRevenue": 450000, + "temporary": false, + "leasedLocation": true, + "established": 2008, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 120000, + "brokerLicencing": "CA 123456", + "internalListingNumber": 31201, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a solid, well-established business with good financials. Need to highlight the prime location and loyal customer base in the listing.", + "created": "2023-11-11T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Local Bakery for Sale", + "description": "

Established Neighborhood Bakery

This beloved local bakery has been serving the community for over a decade, offering a wide variety of fresh-baked goods, including artisan breads, pastries, and custom cakes.

With a loyal customer base and a prime location in a bustling shopping district, this bakery is poised for continued success. The current owner is retiring and seeking a passionate entrepreneur to take the reins and continue the bakery's legacy.

", + "type": "13", + "state": "CA", + "city": "San Francisco", + "id": "c995561c-0251-4f43-a721-6f366a2eb41f", + "price": 300000, + "salesRevenue": 450000, + "temporary": false, + "leasedLocation": true, + "established": 2008, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 120000, + "brokerLicencing": "CA 123456", + "internalListingNumber": 31201, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a solid, well-established business with good financials. Need to highlight the prime location and loyal customer base in the listing.", + "created": "2023-10-10T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Auto Repair Shop", + "description": "

Profitable Auto Repair Business for Sale

This highly successful auto repair shop has been serving the local community for over 20 years, offering a full range of services for all makes and models of vehicles.

With a skilled team of mechanics, state-of-the-art equipment, and a strong reputation for quality work, this shop has a steady stream of loyal customers. The owner is relocating and seeking a motivated buyer to take over this turnkey operation.

", + "type": "1", + "state": "FL", + "city": "Miami", + "id": "03ecd9db-ad0f-43a7-bb53-f697941793c8", + "price": 500000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": false, + "established": 2001, + "employees": 6, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "FL 321255", + "internalListingNumber": 31202, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a very profitable business with a great reputation. The fact that real estate is included makes it an even more attractive opportunity.", + "created": "2024-01-13T12:11:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Retail Boutique in Prime Location", + "description": "

Upscale Women's Clothing Boutique for Sale

This chic women's clothing boutique is located in the heart of the city's trendy shopping district, offering a curated selection of designer and contemporary fashion.

With a loyal customer base and strong social media presence, this boutique has consistently generated impressive sales. The owner is pursuing other business ventures and seeks a fashion-savvy entrepreneur to take over this stylish and profitable boutique.

", + "type": "5", + "state": "NY", + "city": "New York City", + "id": "86935fc5-8998-46eb-b381-de0fcfff6d27", + "price": 250000, + "salesRevenue": 500000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 4, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 3 weeks of training and support during transition.", + "cashFlow": 150000, + "brokerLicencing": "NY 974577", + "internalListingNumber": 31203, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a very stylish and profitable boutique in a prime location. The strong social media presence is a big plus.", + "created": "2024-02-02T09:33:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Well-Established Manufacturing Company", + "description": "

Profitable Manufacturing Business for Sale

This long-standing manufacturing company has been producing high-quality industrial components for over 30 years, serving a diverse range of industries nationwide.

With a skilled workforce, efficient production processes, and a solid reputation for reliability, this company has a strong base of long-term clients. The owner is retiring and seeks a strategic buyer to continue the company's growth and success.

", + "type": "12", + "state": "OH", + "city": "Cleveland", + "id": "68123b40-5ca8-416d-83cf-2092eacb9e45", + "price": 2000000, + "salesRevenue": 5000000, + "temporary": false, + "leasedLocation": false, + "established": 1990, + "employees": 50, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 800000, + "brokerLicencing": "OH 439221", + "internalListingNumber": 31204, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid manufacturing business with a long history of success. The fact that it comes with real estate makes it an even more valuable opportunity.", + "created": "2024-03-01T11:22:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Service-Based Franchise", + "description": "

Successful Home Cleaning Franchise for Sale

This well-established home cleaning franchise has been serving the local community for 5 years, offering top-notch residential cleaning services.

With a team of trained and reliable cleaners, a loyal customer base, and the support of a nationally recognized franchise brand, this business offers a proven model for success. The owner is relocating and seeks an entrepreneurial buyer to take over this turnkey operation.

", + "type": "10", + "state": "CO", + "city": "Denver", + "id": "ea233fce-9d45-4f05-8965-c5841896a974", + "price": 150000, + "salesRevenue": 300000, + "temporary": false, + "leasedLocation": false, + "established": 2018, + "employees": 10, + "reasonForSale": "Relocation", + "supportAndTraining": "Franchise will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "CO 328866", + "internalListingNumber": 31205, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "This is a great opportunity to buy into a proven franchise system. The established customer base and trained staff make it a turnkey operation.", + "created": "2024-04-02T08:32:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Online Retail Business", + "description": "

Profitable E-commerce Store for Sale

This successful online retail store specializes in eco-friendly home goods, offering a wide range of sustainable products to a growing customer base.

With a user-friendly website, efficient order fulfillment process, and strong social media presence, this business has seen consistent year-over-year growth. The owner is pursuing other opportunities and seeks a motivated entrepreneur to take this online store to the next level.

", + "type": "5", + "state": "Remote", + "city": "N/A", + "id": "c8c35d0d-9786-4c8f-bc3d-a01ec1202d4f", + "price": 200000, + "salesRevenue": 500000, + "temporary": false, + "leasedLocation": false, + "established": 2017, + "employees": 3, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 223428", + "internalListingNumber": 31206, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a thriving online business with a strong niche and growth potential.", + "created": "2023-08-12T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Service Company", + "description": "

Profitable HVAC Business for Sale

This well-established HVAC service company has been providing top-quality heating, ventilation, and air conditioning services to residential and commercial clients for over 15 years.

With a team of licensed technicians, a fleet of well-maintained service vehicles, and a strong reputation in the community, this business offers a solid foundation for continued success. The owner is retiring and seeks a buyer with industry experience to take the helm.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "1d60b7d2-e641-436f-9959-bc6602ce4142", + "price": 750000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "TX 335578", + "internalListingNumber": 31207, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid HVAC business with a great reputation and a strong team in place.", + "created": "2023-11-02T09:15:30.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Local Coffee Shop Chain", + "description": "

Profitable Coffee Shop Business for Sale

This beloved local coffee shop chain has been serving high-quality coffee and delicious pastries to a loyal customer base across multiple locations.

With a strong brand identity, efficient operations, and prime locations in high-traffic areas, this business offers a proven model for success. The owner is relocating and seeks a passionate entrepreneur to continue growing this thriving coffee shop chain.

", + "type": "13", + "state": "WA", + "city": "Seattle", + "id": "7d0c32a2-4fbb-4db2-aba8-a74d158dea45", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 30, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "WA 785321", + "internalListingNumber": 31208, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and highly profitable coffee shop chain in a prime market.", + "created": "2023-05-28T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Business", + "description": "

Successful Landscaping Company for Sale

This well-established landscaping company has been providing top-quality lawn care, garden maintenance, and landscape design services to residential and commercial clients for over a decade.

With a loyal customer base, a team of skilled professionals, and a fleet of well-maintained equipment, this business offers a solid foundation for continued growth. The owner is retiring and seeks a buyer with industry experience to take over this thriving operation.

", + "type": "7", + "state": "FL", + "city": "Orlando", + "id": "4c73608d-ef13-4572-9d18-7f20d5240229", + "price": 500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": false, + "established": 2008, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "FL 829451", + "internalListingNumber": 31209, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid landscaping business with a great reputation and a strong team in place.", + "created": "2023-09-05T13:20:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Body Shop", + "description": "

Profitable Auto Body Repair Business for Sale

This well-known auto body shop has been providing top-quality collision repair and paint services to vehicle owners for over 20 years.

With a skilled team of technicians, state-of-the-art equipment, and a strong reputation for excellence, this business offers a proven model for success. The owner is retiring and seeks a motivated buyer to continue the shop's legacy of quality craftsmanship.

", + "type": "1", + "state": "CA", + "city": "Los Angeles", + "id": "355ce340-17ea-4fd9-9ed4-fb84a21068ca", + "price": 1500000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 600000, + "brokerLicencing": "CA 463728", + "internalListingNumber": 31210, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable auto body shop in a prime market.", + "created": "2023-07-18T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Fitness Center Franchise", + "description": "

Successful Gym Franchise for Sale

This well-established fitness center franchise has been helping members achieve their health and wellness goals for over 7 years.

With a spacious facility, top-of-the-line equipment, and a variety of popular classes, this gym has a loyal member base and a proven business model. The owner is pursuing other ventures and seeks a fitness-minded entrepreneur to take over this thriving operation.

", + "type": "10", + "state": "GA", + "city": "Atlanta", + "id": "d15b3f85-9da0-4414-b4f5-91e9a1c1cadb", + "price": 800000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Franchise will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "GA 592184", + "internalListingNumber": 31211, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "This is a great opportunity to buy into a successful fitness franchise with a strong member base and growth potential.", + "created": "2023-06-10T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Machine Shop for Sale", + "description": "

Profitable Precision Machining Business

This well-respected machine shop has been providing top-quality precision machining services to a diverse range of industries for over 25 years.

With a team of skilled machinists, a fully equipped facility, and a reputation for excellence, this business offers a solid foundation for continued success. The owner is retiring and seeks a buyer with machining experience to take over this established operation.

", + "type": "12", + "state": "MI", + "city": "Detroit", + "id": "6568b482-b100-4b8f-9208-90436099345c", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": false, + "established": 1995, + "employees": 18, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "MI 741963", + "internalListingNumber": 31212, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable machine shop with a long history of success.", + "created": "2023-10-22T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Salon", + "description": "

Successful Pet Grooming Business for Sale

This popular pet grooming salon has been providing top-notch grooming services to a loyal clientele of furry friends for over a decade.

With a convenient location, a team of experienced groomers, and a reputation for exceptional care, this business offers a rewarding opportunity for a pet-loving entrepreneur. The owner is relocating and seeks a dedicated buyer to continue the salon's legacy of quality service.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "cbdf541a-d1ca-4297-9b60-b2857a666f3a", + "price": 250000, + "salesRevenue": 500000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 100000, + "brokerLicencing": "CO 386517", + "internalListingNumber": 31213, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable pet grooming business with a loyal customer base.", + "created": "2023-03-08T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Catering Business for Sale", + "description": "

Successful Full-Service Catering Company

This well-established catering business has been providing exceptional food and service for corporate events, weddings, and private parties for over 15 years.

With a talented culinary team, a diverse menu, and a reputation for excellence, this business has a loyal customer base and a strong network of referrals. The owner is retiring and seeks a buyer with a passion for food and hospitality to take over this thriving operation.

", + "type": "13", + "state": "NY", + "city": "New York City", + "id": "e9857442-1a9f-4830-a6e9-45e8844315e1", + "price": 1000000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "NY 639752", + "internalListingNumber": 31214, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable catering business in a prime market.", + "created": "2023-08-30T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Services Company", + "description": "

Profitable Plumbing Business for Sale

This well-respected plumbing services company has been providing top-quality residential and commercial plumbing solutions for over two decades.

With a team of licensed plumbers, a fleet of fully equipped service vehicles, and a solid reputation for reliability, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with plumbing experience to take over this established operation.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "778e453f-6346-4f6f-9e7b-9feab4878fc6", + "price": 750000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "TX 481369", + "internalListingNumber": 31215, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid plumbing business with a great reputation and a strong team in place.", + "created": "2023-11-12T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dry Cleaning Business", + "description": "

Profitable Dry Cleaner for Sale

This well-established dry cleaning business has been serving the local community for over 30 years, offering top-quality cleaning services for garments, linens, and specialty items.

With a convenient location, a loyal customer base, and a reputation for excellence, this business offers a stable opportunity for a hands-on owner. The current owner is retiring and seeks a buyer committed to maintaining the business's high standards of quality and service.

", + "type": "7", + "state": "IL", + "city": "Chicago", + "id": "d7d686e2-e95e-4bd1-bc97-97056969c859", + "price": 400000, + "salesRevenue": 750000, + "temporary": false, + "leasedLocation": true, + "established": 1990, + "employees": 10, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 150000, + "brokerLicencing": "IL 927536", + "internalListingNumber": 31216, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a long-standing and profitable dry cleaning business with a loyal customer base.", + "created": "2023-05-02T15:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop in Dallas", + "description": "

Established Auto Repair Business for Sale

This well-respected auto repair shop has been serving the Dallas community for over 15 years, offering a full range of services for all makes and models of vehicles.

With a team of certified mechanics, a fully equipped facility, and a loyal customer base, this business offers a solid opportunity for growth. The owner is retiring and seeks a buyer with auto industry experience to take over this thriving operation.

", + "type": "1", + "state": "TX", + "city": "Dallas", + "id": "bd7bfb74-d9ea-4ee1-bf1d-ab07ab769396", + "price": 600000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 240000, + "brokerLicencing": "TX 753159", + "internalListingNumber": 31217, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable auto repair business in a prime Dallas location.", + "created": "2023-09-18T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Coffee Shop in Austin", + "description": "

Popular Neighborhood Coffee Shop for Sale

This beloved coffee shop has been a fixture in its Austin neighborhood for over a decade, offering a cozy atmosphere, exceptional coffee, and delicious pastries.

With a loyal customer base, a prime location, and a strong brand identity, this business offers a rewarding opportunity for a coffee-loving entrepreneur. The owner is relocating and seeks a passionate buyer to continue the shop's legacy of quality and community.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "9612a81a-2b97-4199-bdc3-3360b0a452da", + "price": 350000, + "salesRevenue": 750000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 624837", + "internalListingNumber": 31218, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-loved and profitable coffee shop in a prime Austin location.", + "created": "2023-07-05T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Services Company in Houston", + "description": "

Profitable HVAC Business for Sale

This reputable HVAC services company has been providing top-quality heating, ventilation, and air conditioning solutions to residential and commercial clients in the Houston area for over 20 years.

With a team of experienced technicians, a fleet of well-maintained service vehicles, and a solid reputation for reliability, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with HVAC experience to take over this established operation.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "1a9579dd-5e69-41a3-a816-4dbd1e5a1248", + "price": 1000000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "TX 831564", + "internalListingNumber": 31219, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-respected and profitable HVAC business in the Houston market.", + "created": "2023-10-28T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Business in San Antonio", + "description": "

Successful Landscaping Company for Sale

This well-established landscaping company has been providing top-quality lawn care, garden maintenance, and landscape design services to residential and commercial clients in the San Antonio area for over 12 years.

With a loyal customer base, a team of skilled professionals, and a fleet of well-maintained equipment, this business offers a solid opportunity for growth. The owner is retiring and seeks a buyer with industry experience to take over this thriving operation.

", + "type": "7", + "state": "TX", + "city": "San Antonio", + "id": "47c3bb08-7f9a-43e6-9078-a0000fe2f2a8", + "price": 500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 492618", + "internalListingNumber": 31220, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid landscaping business with a great reputation and a strong team in place, serving the San Antonio market.", + "created": "2023-06-12T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Fitness Center in Fort Worth", + "description": "

Profitable Gym Business for Sale

This popular fitness center has been helping members in the Fort Worth area achieve their health and wellness goals for over 8 years.

With a spacious facility, top-of-the-line equipment, and a variety of classes, this gym has a loyal member base and a proven business model. The owner is relocating and seeks a fitness-minded entrepreneur to take over this successful operation.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "6f054f48-e6d6-42b7-a5be-ed2e54c19ad6", + "price": 800000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "TX 357942", + "internalListingNumber": 31221, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a thriving fitness center with a strong member base in the Fort Worth area.", + "created": "2023-08-22T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Services Company in El Paso", + "description": "

Profitable Plumbing Business for Sale

This reputable plumbing services company has been providing top-quality residential and commercial plumbing solutions in the El Paso area for over 18 years.

With a team of licensed plumbers, a fleet of fully equipped service vehicles, and a solid reputation for reliability, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with plumbing experience to take over this established operation.

", + "type": "7", + "state": "TX", + "city": "El Paso", + "id": "56a3d421-bf6e-400e-91e2-e5a6c4ddfa90", + "price": 650000, + "salesRevenue": 1300000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 12, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 260000, + "brokerLicencing": "TX 819375", + "internalListingNumber": 31222, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid plumbing business with a great reputation and a strong team in place, serving the El Paso market.", + "created": "2023-11-08T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Body Shop in Arlington", + "description": "

Established Auto Body Repair Business for Sale

This well-respected auto body shop has been providing top-quality collision repair and paint services to vehicle owners in the Arlington area for over 25 years.

With a skilled team of technicians, state-of-the-art equipment, and a strong reputation for excellence, this business offers a proven model for success. The owner is retiring and seeks a motivated buyer to continue the shop's legacy of quality craftsmanship.

", + "type": "1", + "state": "TX", + "city": "Arlington", + "id": "4dc71338-294f-477d-8002-ca1d5149c9d1", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": true, + "established": 1998, + "employees": 18, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 10 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "TX 672143", + "internalListingNumber": 31223, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable auto body shop in the Arlington area.", + "created": "2023-09-02T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Salon in Plano", + "description": "

Successful Pet Grooming Business for Sale

This popular pet grooming salon has been providing top-notch grooming services to a loyal clientele of furry friends in the Plano area for over 12 years.

With a convenient location, a team of experienced groomers, and a reputation for exceptional care, this business offers a rewarding opportunity for a pet-loving entrepreneur. The owner is retiring and seeks a dedicated buyer to continue the salon's legacy of quality service.

", + "type": "7", + "state": "TX", + "city": "Plano", + "id": "1f8b9a18-1945-4bde-9e66-f81f1e6c8a79", + "price": 300000, + "salesRevenue": 600000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 120000, + "brokerLicencing": "TX 538716", + "internalListingNumber": 31224, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable pet grooming business with a loyal customer base in the Plano area.", + "created": "2023-07-14T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Machine Shop in Houston", + "description": "

Profitable Precision Machining Business for Sale

This well-respected machine shop has been providing top-quality precision machining services to a diverse range of industries in the Houston area for over 30 years.

With a team of skilled machinists, a fully equipped facility, and a reputation for excellence, this business offers a solid foundation for continued success. The owner is retiring and seeks a buyer with machining experience to take over this established operation.

", + "type": "12", + "state": "TX", + "city": "Houston", + "id": "aaec725b-1a1b-48c6-a987-8e5b60e2f004", + "price": 1500000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": false, + "established": 1992, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 600000, + "brokerLicencing": "TX 485937", + "internalListingNumber": 31225, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable machine shop with a long history of success in the Houston area.", + "created": "2023-10-18T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Catering Business in Austin", + "description": "

Successful Full-Service Catering Company for Sale

This well-established catering business has been providing exceptional food and service for corporate events, weddings, and private parties in the Austin area for over 18 years.

With a talented culinary team, a diverse menu, and a reputation for excellence, this business has a loyal customer base and a strong network of referrals. The owner is retiring and seeks a buyer with a passion for food and hospitality to take over this thriving operation.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "6a6b502d-421b-4696-a1d6-345e9d7bacfe", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 30, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 10 weeks of training and support during transition.", + "cashFlow": 730000, + "brokerLicencing": "TX 485937", + "internalListingNumber": 31226, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "", + "created": "2023-11-18T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Chic Boutique Retail Store in the Heart of Dallas", + "description": "

Exclusive Fashion Destination

Step into the world of high fashion with this boutique retail store. Specializing in designer wear for women, this store offers a curated selection of clothing and accessories from renowned international designers. The prime location in a busy shopping district ensures a steady flow of fashion-forward customers.

The store boasts a beautifully designed interior that reflects the luxury and exclusivity of the brands it carries. With an established social media presence and loyal customer base, this business is a turnkey opportunity for anyone passionate about fashion.

", + "type": "5", + "state": "TX", + "city": "Dallas", + "id": "ec0c59ea-30a4-4d13-ae85-ff87c6ad29db", + "price": 220000, + "salesRevenue": 540000, + "temporary": false, + "leasedLocation": true, + "established": 2017, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "2 weeks of training provided.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31201, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established with a strong brand identity.", + "created": "2023-08-05T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "High-Tech Industrial Services Firm in Houston", + "description": "

Innovative Solutions Provider

A leader in industrial services, this Houston-based firm specializes in providing high-tech solutions to the oil, gas, and chemical sectors. With a focus on sustainability and innovation, the company offers services that include advanced monitoring, diagnostics, and maintenance operations.

The firm's commitment to quality and customer service has resulted in long-term contracts with several major industry players. Its team of skilled professionals is known for their expertise in tackling complex challenges and delivering efficient, cost-effective solutions.

", + "type": "2", + "state": "TX", + "city": "Houston", + "id": "9ff86d11-a900-4ed1-ad44-0209dcd11a5b", + "price": 350000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2014, + "employees": 15, + "reasonForSale": "Expansion funding", + "supportAndTraining": "Owner will provide comprehensive support during transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 654321", + "internalListingNumber": 31202, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "A market leader with significant growth potential.", + "created": "2023-09-21T15:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Modern Real Estate Agency in San Antonio", + "description": "

Leading Property Experts

Own a leading real estate agency in San Antonio with a strong reputation for excellence. Specializing in residential properties, this agency employs a team of experienced agents dedicated to providing personalized service and achieving outstanding results for their clients.

With a robust online platform and innovative marketing strategies, the agency has a significant presence in the local market. This is an ideal opportunity for an ambitious entrepreneur to take the business to new heights.

", + "type": "3", + "state": "TX", + "city": "San Antonio", + "id": "96cfbee3-f0ed-47c7-ac6b-c0fac53fb269", + "price": 150000, + "salesRevenue": 300000, + "temporary": false, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner pursuing other interests", + "supportAndTraining": "Full support and training will be provided for 4 weeks.", + "cashFlow": 90000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31203, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Excellent growth potential with a strong brand.", + "created": "2023-07-14T11:20:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Oilfield Services Company in Midland", + "description": "

Industry Leader in Oilfield Services

This company has established itself as a leader in the oilfield services industry in Midland, TX. Offering a wide range of services including SVE and manufacturing to the oil and gas sector, it has built a reputation for reliability and excellence.

With a highly skilled team and cutting-edge technology, the company is well-positioned for growth in a booming market. This is a rare opportunity to acquire a profitable business with a solid foundation and a bright future.

", + "type": "6", + "state": "TX", + "city": "Midland", + "id": "efb8b05b-e2c5-44b9-b05d-34ee79efc9c1", + "price": 500000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner transitioning to retirement", + "supportAndTraining": "30 days of training and support included.", + "cashFlow": 250000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31204, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Strong client relationships with potential for expansion.", + "created": "2023-06-30T09:40:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Innovative Advertising Agency in Austin", + "description": "

Creative Powerhouse

An innovative advertising agency located in Austin, specializing in digital marketing, brand strategy, and creative design. This agency has built a portfolio of successful campaigns for a diverse clientele, ranging from startups to established brands.

With a talented team of creatives and strategists, the agency prides itself on delivering impactful marketing solutions that drive growth. The business comes with a fully equipped office and a suite of digital tools.

", + "type": "8", + "state": "TX", + "city": "Austin", + "id": "915fa470-2efa-462f-8685-ad10241d9a6d", + "price": 300000, + "salesRevenue": 650000, + "temporary": false, + "leasedLocation": true, + "established": 2016, + "employees": 12, + "reasonForSale": "Focusing on new ventures", + "supportAndTraining": "Comprehensive support for 1 month.", + "cashFlow": 180000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31205, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Excellent reputation with significant growth opportunities.", + "created": "2023-05-17T12:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Modern Agriculture Tech Company in Houston", + "description": "

Revolutionizing Farming with Tech

A forefront player in the agriculture technology sector, this Houston-based company specializes in innovative solutions that enhance crop yield and farm efficiency. Utilizing IoT, AI, and big data analytics, it offers products that empower farmers to make data-driven decisions.

The company boasts a robust R&D department and has secured several patents for its cutting-edge technology. With a strong customer base and scalable business model, it's positioned for substantial growth.

", + "type": "9", + "state": "TX", + "city": "Houston", + "id": "5c48de3b-60da-4f0a-826e-a5e1c9ac5d6e", + "price": 600000, + "salesRevenue": 1100000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 18, + "reasonForSale": "Scaling up operations", + "supportAndTraining": "Comprehensive transition plan in place.", + "cashFlow": 220000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31206, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Innovative product line with global market appeal.", + "created": "2023-04-12T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Premium Coffee Shop Chain in Fort Worth", + "description": "

Aromatic Excellence

Experience the finest coffee in Fort Worth with this premium coffee shop chain. Known for its artisanal blends and cozy ambiance, each location is a haven for coffee lovers. The business thrives on high-quality beans sourced from around the world, expertly roasted to create unique flavors.

With a loyal customer base, excellent reviews, and a strong brand identity, this chain is perfectly positioned for expansion. The sale includes all equipment and the proprietary blend recipes that have delighted customers for years.

", + "type": "13", + "state": "TX", + "city": "Fort Worth", + "id": "ffb78c11-0a50-452e-a266-309303d5828c", + "price": 280000, + "salesRevenue": 500000, + "temporary": false, + "leasedLocation": true, + "established": 2016, + "employees": 10, + "reasonForSale": "Owner moving abroad", + "supportAndTraining": "Training and support available for 3 weeks.", + "cashFlow": 160000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31207, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Strong potential for growth with a beloved local brand.", + "created": "2023-03-09T14:10:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Comprehensive Digital Marketing Firm in El Paso", + "description": "

Next-Level Marketing Strategies

This digital marketing firm in El Paso offers a full suite of services including SEO, PPC, social media management, and web design. With a client-centric approach, the firm has established a strong reputation for driving measurable results and increasing ROI for its clients.

Equipped with a talented team and cutting-edge technology, the firm is ready for a new owner to capitalize on the booming demand for digital marketing services. This is an ideal acquisition for someone looking to enter the industry or expand their existing portfolio.

", + "type": "8", + "state": "TX", + "city": "El Paso", + "id": "be53b26b-0de9-4521-b6be-a6ae72d14e7c", + "price": 200000, + "salesRevenue": 400000, + "temporary": false, + "leasedLocation": true, + "established": 2017, + "employees": 7, + "reasonForSale": "Owner focusing on new venture", + "supportAndTraining": "1 month of comprehensive support and training.", + "cashFlow": 110000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31208, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "High client retention rate with significant scaling potential.", + "created": "2023-02-28T15:20:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Manufacturing Company in Corpus Christi", + "description": "

Innovative Product Lines

Own a thriving manufacturing business in Corpus Christi, specializing in the production of high-quality, innovative products. With a focus on efficiency and sustainability, the company has established itself as a leader in its field.

This business comes with a fully equipped manufacturing facility, experienced staff, and a solid customer base. The current owner is willing to ensure a smooth transition, making this a fantastic opportunity for an entrepreneur looking to enter the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Corpus Christi", + "id": "f20086fc-baf4-48e4-a8c0-013df0b06e2d", + "price": 450000, + "salesRevenue": 900000, + "temporary": false, + "leasedLocation": true, + "established": 2013, + "employees": 22, + "reasonForSale": "Exploring new opportunities", + "supportAndTraining": "4 weeks of training and transition support.", + "cashFlow": 200000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31209, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "A well-established business with a strong export market.", + "created": "2023-01-18T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Specialty Services Business in Laredo", + "description": "

Unique Market Niche

This unique specialty service business in Laredo offers a niche service to both residential and commercial clients. With a focus on quality and customer satisfaction, the business has built a loyal client base and a strong brand within the community.

The company benefits from low overhead, a streamlined operational model, and significant growth potential. The sale includes all necessary equipment and a detailed training period to ensure a seamless transition to the new owner.

", + "type": "7", + "state": "TX", + "city": "Laredo", + "id": "40fedee3-5663-4148-be3c-0836147f654b", + "price": 175000, + "salesRevenue": 350000, + "temporary": false, + "leasedLocation": true, + "established": 2019, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "3 weeks of hands-on training.", + "cashFlow": 95000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31210, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Significant untapped market potential.", + "created": "2023-12-05T17:40:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dental Practice in Dallas", + "description": "

Profitable Dental Clinic for Sale

This well-established dental practice has been serving the Dallas community for over 20 years, offering a full range of dental services in a modern and welcoming environment.

With a loyal patient base, a team of skilled dental professionals, and a prime location, this practice offers a solid opportunity for growth. The owner is retiring and seeks a qualified buyer to continue providing exceptional dental care to the community.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "6ed4eb91-5506-484a-bf61-9c5a1f17f9e4", + "price": 1200000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "TX 539127", + "internalListingNumber": 31227, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable dental practice in a prime Dallas location.", + "created": "2023-09-20T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bakery in Houston", + "description": "

Profitable Bakery Business for Sale

This beloved neighborhood bakery has been serving the Houston community for over 15 years, offering a wide variety of fresh-baked goods, including artisan breads, pastries, and custom cakes.

With a loyal customer base, a prime location, and a reputation for quality, this bakery offers a rewarding opportunity for a passionate baker or entrepreneur. The owner is relocating and seeks a dedicated buyer to continue the bakery's legacy of delicious treats and exceptional service.

", + "type": "13", + "state": "TX", + "city": "Houston", + "id": "491f756e-f6c5-4343-b271-8d7e2ae54094", + "price": 500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 842613", + "internalListingNumber": 31228, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-loved and profitable bakery in a prime Houston location.", + "created": "2023-07-08T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Print Shop in San Antonio", + "description": "

Established Printing Business for Sale

This successful print shop has been providing top-quality printing services to businesses and individuals in the San Antonio area for over 25 years.

With a fully equipped facility, a team of experienced staff, and a diverse range of clients, this business offers a solid foundation for continued growth. The owner is retiring and seeks a buyer with printing industry experience to take over this thriving operation.

", + "type": "7", + "state": "TX", + "city": "San Antonio", + "id": "0ca6f114-607d-43c3-9c06-3987bd8701cc", + "price": 800000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": false, + "established": 1995, + "employees": 18, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 10 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "TX 671524", + "internalListingNumber": 31229, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable print shop in the San Antonio market.", + "created": "2023-10-25T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dance Studio in Austin", + "description": "

Successful Dance School for Sale

This popular dance studio has been providing top-quality dance education to students of all ages in the Austin area for over 10 years.

With a spacious facility, a team of talented instructors, and a diverse range of classes, this studio has a loyal student base and a strong reputation in the community. The owner is relocating and seeks a passionate buyer to continue the studio's legacy of excellence in dance education.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "d5dd481e-6df6-4eda-875a-2d59462ccc4f", + "price": 400000, + "salesRevenue": 750000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 492815", + "internalListingNumber": 31230, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a thriving dance studio with a strong reputation in the vibrant Austin market.", + "created": "2023-06-18T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company in Dallas", + "description": "

Profitable Roofing Business for Sale

This reputable roofing company has been providing top-quality residential and commercial roofing services in the Dallas area for over 20 years.

With a team of skilled roofers, a fleet of well-maintained equipment, and a solid reputation for reliability, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with roofing industry experience to take over this established operation.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "db37d70b-e293-4ce3-a74d-fe63f6dac542", + "price": 1000000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "TX 713859", + "internalListingNumber": 31231, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-respected and profitable roofing business in the Dallas market.", + "created": "2023-09-05T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Houston", + "description": "

Successful Childcare Business for Sale

This well-established daycare center has been providing exceptional childcare services to families in the Houston area for over 15 years.

With a spacious facility, a team of experienced caregivers, and a reputation for quality care, this business offers a rewarding opportunity for an entrepreneur passionate about early childhood education. The owner is retiring and seeks a dedicated buyer to continue the center's legacy of nurturing young minds.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "c3e48ef2-50c2-4caa-822c-767dcb9f1901", + "price": 800000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "TX 621473", + "internalListingNumber": 31232, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable daycare center in the growing Houston market.", + "created": "2023-07-22T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Yoga Studio in Austin", + "description": "

Profitable Yoga Business for Sale

This popular yoga studio has been providing top-quality yoga classes and workshops to the Austin community for over 8 years.

With a beautiful facility, a team of experienced instructors, and a loyal client base, this studio offers a rewarding opportunity for a yoga enthusiast or entrepreneur. The owner is relocating and seeks a passionate buyer to continue the studio's mission of promoting health and wellness.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "3751b37c-fa99-423b-91d2-d2ece09cfaf3", + "price": 300000, + "salesRevenue": 600000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 120000, + "brokerLicencing": "TX 598314", + "internalListingNumber": 31233, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a thriving yoga studio in the health-conscious Austin market.", + "created": "2023-10-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Carpet Cleaning Business in San Antonio", + "description": "

Profitable Carpet Cleaning Company for Sale

This successful carpet cleaning business has been serving residential and commercial clients in the San Antonio area for over 12 years.

With a team of trained technicians, state-of-the-art equipment, and a reputation for excellent service, this business offers a solid foundation for growth. The owner is retiring and seeks a motivated buyer to continue providing top-quality carpet cleaning services to the community.

", + "type": "7", + "state": "TX", + "city": "San Antonio", + "id": "8d9a069e-97f4-476c-be81-6ae18554ea36", + "price": 400000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": false, + "established": 2010, + "employees": 12, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 160000, + "brokerLicencing": "TX 475821", + "internalListingNumber": 31234, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable carpet cleaning business in the San Antonio market.", + "created": "2023-06-28T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Boutique Hotel in Austin", + "description": "

Charming Boutique Hotel for Sale

This delightful boutique hotel has been providing a unique and memorable lodging experience to visitors in the heart of Austin for over 10 years.

With beautifully appointed rooms, a cozy lounge, and a prime location near popular attractions, this hotel has a loyal guest base and a strong online presence. The owner is pursuing other ventures and seeks a buyer passionate about hospitality to continue the hotel's success.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "30d0c76c-0aa3-4ed9-a987-58f5b6c8bd25", + "price": 2500000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": false, + "established": 2012, + "employees": 20, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "TX 836159", + "internalListingNumber": 31235, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a charming and profitable boutique hotel in the thriving Austin market.", + "created": "2023-09-10T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Window Cleaning Business in Dallas", + "description": "

Profitable Window Cleaning Company for Sale

This successful window cleaning business has been providing top-quality services to residential and commercial clients in the Dallas area for over 15 years.

With a team of experienced technicians, a fleet of well-maintained vehicles, and a reputation for reliability, this business offers a solid foundation for growth. The owner is retiring and seeks a motivated buyer to continue providing exceptional window cleaning services to the community.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "9f0f59f7-3e77-456e-b9f5-b63a667db1bf", + "price": 500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 749213", + "internalListingNumber": 31236, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable window cleaning business in the Dallas market.", + "created": "2023-07-18T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Supply Store in Houston", + "description": "

Successful Pet Supply Retail Business for Sale

This thriving pet supply store has been serving the Houston community for over 12 years, offering a wide range of high-quality pet food, supplies, and accessories.

With a prime location, a loyal customer base, and a knowledgeable staff, this business offers a rewarding opportunity for a pet-loving entrepreneur. The owner is relocating and seeks a passionate buyer to continue providing exceptional products and service to local pet owners.

", + "type": "5", + "state": "TX", + "city": "Houston", + "id": "9a2914cf-ab17-40ad-a5a1-6eeefe9a7715", + "price": 600000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 240000, + "brokerLicencing": "TX 581426", + "internalListingNumber": 31237, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a profitable pet supply store with a strong reputation in the Houston market.", + "created": "2023-10-02T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Services Company in San Antonio", + "description": "

Profitable Electrical Contracting Business for Sale

This reputable electrical services company has been providing top-quality residential and commercial electrical solutions in the San Antonio area for over 20 years.

With a team of licensed electricians, a fleet of well-equipped service vehicles, and a solid reputation for quality workmanship, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with electrical industry experience to take over this established operation.

", + "type": "7", + "state": "TX", + "city": "San Antonio", + "id": "dc3a937b-7bf3-47c2-8435-32e25435581e", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "TX 694837", + "internalListingNumber": 31238, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-respected and profitable electrical services company in the San Antonio market.", + "created": "2023-06-15T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Yoga and Pilates Studio in Austin", + "description": "

Successful Yoga and Pilates Business for Sale

This thriving yoga and Pilates studio has been promoting health and wellness in the Austin community for over 7 years.

With a beautiful facility, a team of certified instructors, and a diverse range of classes, this studio has a loyal client base and a strong reputation. The owner is pursuing other ventures and seeks a passionate buyer to continue the studio's mission of empowering people through movement and mindfulness.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "a5c26bb6-77d8-4f81-bab3-74b4060188be", + "price": 350000, + "salesRevenue": 700000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 140000, + "brokerLicencing": "TX 857492", + "internalListingNumber": 31239, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a successful yoga and Pilates studio in the health-conscious Austin market.", + "created": "2023-09-25T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Dallas", + "description": "

Profitable Dry Cleaning Company for Sale

This well-established dry cleaning business has been serving the Dallas community for over 25 years, offering top-quality cleaning services for garments, linens, and specialty items.

With a convenient location, a loyal customer base, and a reputation for excellence, this business offers a stable opportunity for a hands-on owner. The current owner is retiring and seeks a buyer committed to maintaining the business's high standards of quality and service.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "942169b5-9fd0-4375-81a9-f6903a54835d", + "price": 600000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 1995, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 240000, + "brokerLicencing": "TX 913568", + "internalListingNumber": 31240, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a long-standing and profitable dry cleaning business with a loyal customer base in Dallas.", + "created": "2023-07-10T16:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Home Healthcare Agency in Houston", + "description": "

Profitable Home Healthcare Business for Sale

This successful home healthcare agency has been providing compassionate and professional care to patients in the Houston area for over 10 years.

With a team of skilled nurses and caregivers, a strong referral network, and a reputation for exceptional service, this business offers a rewarding opportunity in the growing healthcare industry. The owner is retiring and seeks a buyer passionate about making a difference in patients' lives.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "1b0d5ff5-6ca8-451d-9ec3-d65c58f2a074", + "price": 1500000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": false, + "established": 2012, + "employees": 30, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 600000, + "brokerLicencing": "TX 726139", + "internalListingNumber": 31241, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a thriving home healthcare agency with a strong reputation in the Houston market.", + "created": "2023-10-08T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Massage Therapy Spa in Austin", + "description": "

Successful Massage Therapy Business for Sale

This luxurious massage therapy spa has been promoting relaxation and wellness in the Austin community for over 8 years.

With a beautifully appointed facility, a team of skilled therapists, and a menu of rejuvenating treatments, this spa has a loyal client base and a strong online presence. The owner is relocating and seeks a passionate buyer to continue the spa's mission of helping people unwind and recharge.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "17de616a-1597-489d-b61a-68b22f3ce82a", + "price": 400000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 160000, + "brokerLicencing": "TX 649752", + "internalListingNumber": 31242, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a profitable massage therapy spa with a strong reputation in the wellness-focused Austin market.", + "created": "2023-06-22T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pest Control Business in San Antonio", + "description": "

Profitable Pest Control Company for Sale

This successful pest control business has been providing reliable and effective pest management solutions to residential and commercial clients in the San Antonio area for over 15 years.

With a team of certified technicians, a fleet of well-equipped service vehicles, and a solid reputation for customer satisfaction, this business offers a strong foundation for growth. The owner is retiring and seeks a motivated buyer to continue providing top-quality pest control services to the community.

", + "type": "7", + "state": "TX", + "city": "San Antonio", + "id": "8d273a3c-a4e0-4038-8063-ed3b50ee7432", + "price": 800000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 10 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "TX 518364", + "internalListingNumber": 31243, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable pest control business in the San Antonio market.", + "created": "2023-09-15T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Art Gallery in Dallas", + "description": "

Prestigious Art Gallery for Sale

This renowned art gallery has been showcasing the works of established and emerging artists in the heart of Dallas for over 20 years.

With a spacious and elegantly designed exhibition space, a loyal collector base, and a reputation for curating exceptional shows, this gallery offers a unique opportunity for an art enthusiast or entrepreneur. The owner is retiring and seeks a passionate buyer to continue the gallery's legacy of promoting and celebrating the arts.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "644fc16e-b65a-4f0b-ab05-40f7bfd0768f", + "price": 1000000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 10, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "TX 835716", + "internalListingNumber": 31244, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a prestigious and profitable art gallery in the vibrant Dallas arts scene.", + "created": "2023-07-28T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Music School in Austin", + "description": "

Successful Music Education Business for Sale

This popular music school has been nurturing the talents of aspiring musicians in the Austin community for over 10 years.

With a dedicated team of instructors, a wide range of classes and programs, and a state-of-the-art facility, this school has a strong reputation and a loyal student base. The owner is relocating and seeks a passionate buyer to continue the school's mission of providing top-quality music education.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "fc7b68ab-4844-4e5e-8118-29eec5c6de6c", + "price": 500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 679231", + "internalListingNumber": 31245, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a thriving music school with a strong reputation in the vibrant Austin music scene.", + "created": "2023-10-20T12:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Limousine Service in Houston", + "description": "

Profitable Transportation Business for Sale

This well-established limousine service has been providing luxury transportation to clients in the Houston area for over 15 years.

With a fleet of well-maintained vehicles, a team of professional drivers, and a reputation for reliability and exceptional service, this business offers a solid foundation for growth. The owner is retiring and seeks a motivated buyer to continue providing top-quality transportation services to the community.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "ac3c7e6e-1f7d-4054-ae0d-6cdab59263c0", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "TX 742856", + "internalListingNumber": 31246, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable limousine service in the Houston market.", + "created": "2023-06-05T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Coffee Shop in Seattle, WA", + "description": "

Popular Neighborhood Coffee Shop for Sale

This beloved coffee shop has been serving the Seattle community for over a decade, offering a cozy atmosphere, exceptional coffee, and delicious pastries.

With a loyal customer base, a prime location, and a strong brand identity, this business offers a rewarding opportunity for a coffee-loving entrepreneur. The owner is relocating and seeks a passionate buyer to continue the shop's legacy of quality and community.

", + "type": "13", + "state": "WA", + "city": "Seattle", + "id": "cc3352ac-dd63-486b-9e1c-19804411eba5", + "price": 400000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 12, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 160000, + "brokerLicencing": "WA 582719", + "internalListingNumber": 31247, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-loved and profitable coffee shop in a prime Seattle location.", + "created": "2023-09-12T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop in Miami, FL", + "description": "

Established Auto Repair Business for Sale

This well-respected auto repair shop has been serving the Miami community for over 20 years, offering a full range of services for all makes and models of vehicles.

With a team of certified mechanics, a fully equipped facility, and a loyal customer base, this business offers a solid opportunity for growth. The owner is retiring and seeks a buyer with auto industry experience to take over this thriving operation.

", + "type": "1", + "state": "FL", + "city": "Miami", + "id": "a787e513-66ed-46fb-8660-84af628f50de", + "price": 750000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "FL 847625", + "internalListingNumber": 31248, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable auto repair business in a prime Miami location.", + "created": "2023-07-25T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Yoga Studio in Denver, CO", + "description": "

Thriving Yoga Business for Sale

This popular yoga studio has been promoting health and wellness in the Denver community for over 8 years.

With a beautiful facility, a team of experienced instructors, and a loyal client base, this studio offers a rewarding opportunity for a yoga enthusiast or entrepreneur. The owner is relocating and seeks a passionate buyer to continue the studio's mission of empowering people through yoga and mindfulness.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "58173ec8-76ed-49d6-a676-0ad6de2b6b06", + "price": 300000, + "salesRevenue": 600000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 120000, + "brokerLicencing": "CO 693814", + "internalListingNumber": 31249, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a thriving yoga studio in the health-conscious Denver market.", + "created": "2023-10-05T16:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dental Practice in Chicago, IL", + "description": "

Profitable Dental Clinic for Sale

This well-established dental practice has been serving the Chicago community for over 25 years, offering a full range of dental services in a modern and welcoming environment.

With a loyal patient base, a team of skilled dental professionals, and a prime location, this practice offers a solid opportunity for growth. The owner is retiring and seeks a qualified buyer to continue providing exceptional dental care to the community.

", + "type": "7", + "state": "IL", + "city": "Chicago", + "id": "6142b0fb-89f8-4be9-a10c-858981cd8bb3", + "price": 1500000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": true, + "established": 1995, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "IL 726395", + "internalListingNumber": 31250, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable dental practice in a prime Chicago location.", + "created": "2023-06-18T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Boutique Hotel in New Orleans, LA", + "description": "

Charming Boutique Hotel for Sale

This delightful boutique hotel has been providing a unique and memorable lodging experience to visitors in the heart of New Orleans for over 12 years.

With beautifully appointed rooms, a cozy lounge, and a prime location near popular attractions, this hotel has a loyal guest base and a strong online presence. The owner is pursuing other ventures and seeks a buyer passionate about hospitality to continue the hotel's success.

", + "type": "7", + "state": "LA", + "city": "New Orleans", + "id": "88f01008-f9e0-47d0-870a-de77ded38e15", + "price": 2000000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": false, + "established": 2010, + "employees": 18, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "LA 584736", + "internalListingNumber": 31251, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a charming and profitable boutique hotel in the vibrant New Orleans market.", + "created": "2023-08-30T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Salon in Portland, OR", + "description": "

Successful Pet Grooming Business for Sale

This popular pet grooming salon has been providing top-notch grooming services to a loyal clientele of furry friends in the Portland area for over 10 years.

With a convenient location, a team of experienced groomers, and a reputation for exceptional care, this business offers a rewarding opportunity for a pet-loving entrepreneur. The owner is retiring and seeks a dedicated buyer to continue the salon's legacy of quality service.

", + "type": "7", + "state": "OR", + "city": "Portland", + "id": "dcb1d189-29d5-449f-a6dd-ec21421ca11a", + "price": 250000, + "salesRevenue": 500000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 100000, + "brokerLicencing": "OR 639812", + "internalListingNumber": 31252, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable pet grooming business with a loyal customer base in the Portland area.", + "created": "2023-11-12T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Art Gallery in Santa Fe, NM", + "description": "

Prestigious Art Gallery for Sale

This renowned art gallery has been showcasing the works of established and emerging artists in the heart of Santa Fe for over 18 years.

With a spacious and elegantly designed exhibition space, a loyal collector base, and a reputation for curating exceptional shows, this gallery offers a unique opportunity for an art enthusiast or entrepreneur. The owner is retiring and seeks a passionate buyer to continue the gallery's legacy of promoting and celebrating the arts.

", + "type": "7", + "state": "NM", + "city": "Santa Fe", + "id": "7cfc0821-6292-4ef0-8ea7-d24b51309c0c", + "price": 800000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "NM 751463", + "internalListingNumber": 31253, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a prestigious and profitable art gallery in the vibrant Santa Fe arts scene.", + "created": "2023-07-08T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Services Company in Atlanta, GA", + "description": "

Profitable HVAC Business for Sale

This reputable HVAC services company has been providing top-quality heating, ventilation, and air conditioning solutions to residential and commercial clients in the Atlanta area for over 25 years.

With a team of experienced technicians, a fleet of well-maintained service vehicles, and a solid reputation for quality workmanship, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with HVAC industry experience to take over this established operation.

", + "type": "7", + "state": "GA", + "city": "Atlanta", + "id": "19cd17a6-e271-4fe1-9011-237faede709f", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": false, + "established": 1995, + "employees": 30, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "GA 628514", + "internalListingNumber": 31254, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-respected and profitable HVAC business in the Atlanta market.", + "created": "2023-09-25T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Catering Business in Boston, MA", + "description": "

Successful Full-Service Catering Company for Sale

This well-established catering business has been providing exceptional food and service for corporate events, weddings, and private parties in the Boston area for over 20 years.

With a talented culinary team, a diverse menu, and a reputation for excellence, this business has a loyal customer base and a strong network of referrals. The owner is retiring and seeks a buyer with a passion for food and hospitality to take over this thriving operation.

", + "type": "13", + "state": "MA", + "city": "Boston", + "id": "667e68f6-ed43-443d-bc1b-a53c10ff327d", + "price": 1000000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 10 weeks of training and support during transition.", + "cashFlow": 400000, + "brokerLicencing": "MA 836259", + "internalListingNumber": 31255, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable catering business in the thriving Boston market.", + "created": "2023-06-10T12:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dance Studio in Los Angeles, CA", + "description": "

Successful Dance School for Sale

This popular dance studio has been providing top-quality dance education to students of all ages in the Los Angeles area for over 15 years.

With a spacious facility, a team of talented instructors, and a diverse range of classes, this studio has a loyal student base and a strong reputation in the community. The owner is relocating and seeks a passionate buyer to continue the studio's legacy of excellence in dance education.

", + "type": "7", + "state": "CA", + "city": "Los Angeles", + "id": "ce01895f-1cc9-46e6-9c7d-52010180eab2", + "price": 600000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 20, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 240000, + "brokerLicencing": "CA 741936", + "internalListingNumber": 31256, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a thriving dance studio with a strong reputation in the vibrant Los Angeles market.", + "created": "2023-08-18T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Services Company in Philadelphia, PA", + "description": "

Profitable Plumbing Business for Sale

This reputable plumbing services company has been providing top-quality residential and commercial plumbing solutions in the Philadelphia area for over 30 years.

With a team of licensed plumbers, a fleet of fully equipped service vehicles, and a solid reputation for reliability, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with plumbing experience to take over this established operation.

", + "type": "7", + "state": "PA", + "city": "Philadelphia", + "id": "8a7d3137-b411-4b59-b2c0-666a6beee066", + "price": 1500000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": false, + "established": 1990, + "employees": 35, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 600000, + "brokerLicencing": "PA 629713", + "internalListingNumber": 31257, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-respected and profitable plumbing business in the Philadelphia market.", + "created": "2023-10-02T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Print Shop in Phoenix, AZ", + "description": "

Established Printing Business for Sale

This successful print shop has been providing top-quality printing services to businesses and individuals in the Phoenix area for over 20 years.

With a fully equipped facility, a team of experienced staff, and a diverse range of clients, this business offers a solid foundation for continued growth. The owner is retiring and seeks a buyer with printing industry experience to take over this thriving operation.

", + "type": "7", + "state": "AZ", + "city": "Phoenix", + "id": "0d47ecd7-50d8-46bf-ba51-5d1b16409f0e", + "price": 750000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 300000, + "brokerLicencing": "AZ 573821", + "internalListingNumber": 31258, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-established and profitable print shop in the Phoenix market.", + "created": "2023-07-15T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Landscaping Business in Charlotte, NC", + "description": "

Profitable Landscaping Company for Sale

This well-established landscaping company has been providing top-quality lawn care, garden maintenance, and landscape design services to residential and commercial clients in the Charlotte area for over 15 years.

With a loyal customer base, a team of skilled professionals, and a fleet of well-maintained equipment, this business offers a solid opportunity for growth. The owner is retiring and seeks a buyer with industry experience to take over this thriving operation.

", + "type": "7", + "state": "NC", + "city": "Charlotte", + "id": "464eecb0-8fba-4408-9f77-088bdb82dca1", + "price": 500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 200000, + "brokerLicencing": "NC 685429", + "internalListingNumber": 31259, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is a very solid landscaping business with a great reputation and a strong team in place, serving the Charlotte market.", + "created": "2023-09-28T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Columbus, OH", + "description": "

Successful Childcare Business for Sale

This well-established daycare center has been providing exceptional childcare services to families in the Columbus area for over 12 years.

With a spacious facility, a team of experienced caregivers, and a reputation for quality care, this business offers a rewarding opportunity for an entrepreneur passionate about early childhood education. The owner is retiring and seeks a dedicated buyer to continue the center's legacy of nurturing young minds.

", + "type": "7", + "state": "OH", + "city": "Columbus", + "id": "5d9c9185-c790-4751-8cd9-ab7f5c61c95c", + "price": 600000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 6 weeks of training and support during transition.", + "cashFlow": 240000, + "brokerLicencing": "OH 792538", + "internalListingNumber": 31260, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a great opportunity to acquire a well-established and profitable daycare center in the growing Columbus market.", + "created": "2023-06-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Fitness Center in Las Vegas, NV", + "description": "

Profitable Gym Business for Sale

This popular fitness center has been helping members in the Las Vegas area achieve their health and wellness goals for over 10 years.

With a spacious facility, top-of-the-line equipment, and a variety of classes, this gym has a loyal member base and a proven business model. The owner is relocating and seeks a fitness-minded entrepreneur to take over this successful operation.

", + "type": "7", + "state": "NV", + "city": "Las Vegas", + "id": "542302f8-16e5-4162-8be0-f28b26bf2e91", + "price": 900000, + "salesRevenue": 1800000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 360000, + "brokerLicencing": "NV 614827", + "internalListingNumber": 31261, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a thriving fitness center with a strong member base in the Las Vegas area.", + "created": "2023-08-05T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Machine Shop in Detroit, MI", + "description": "

Profitable Precision Machining Business for Sale

This well-respected machine shop has been providing top-quality precision machining services to a diverse range of industries in the Detroit area for over 35 years.

With a team of skilled machinists, a fully equipped facility, and a reputation for excellence, this business offers a solid foundation for continued success. The owner is retiring and seeks a buyer with machining experience to take over this established operation.

", + "type": "12", + "state": "MI", + "city": "Detroit", + "id": "6ffd274b-0cf2-4a2e-a699-f773ddb8c1a8", + "price": 1800000, + "salesRevenue": 3500000, + "temporary": false, + "leasedLocation": false, + "established": 1985, + "employees": 40, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 16 weeks of training and support during transition.", + "cashFlow": 700000, + "brokerLicencing": "MI 539716", + "internalListingNumber": 31262, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a highly respected and profitable machine shop with a long history of success in the Detroit area.", + "created": "2023-10-20T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Boutique in San Francisco, CA", + "description": "

Upscale Women's Clothing Boutique for Sale

This chic women's clothing boutique is located in the heart of San Francisco's trendy shopping district, offering a curated selection of designer and contemporary fashion.

With a loyal customer base and strong social media presence, this boutique has consistently generated impressive sales. The owner is pursuing other business ventures and seeks a fashion-savvy entrepreneur to take over this stylish and profitable boutique.

", + "type": "5", + "state": "CA", + "city": "San Francisco", + "id": "db42433c-efd6-40b7-89bf-bce2a0cb55a6", + "price": 400000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 6, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 4 weeks of training and support during transition.", + "cashFlow": 160000, + "brokerLicencing": "CA 682419", + "internalListingNumber": 31263, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is a very stylish and profitable boutique in a prime San Francisco location. The strong social media presence is a big plus.", + "created": "2023-07-02T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Home Healthcare Agency in Miami, FL", + "description": "

Profitable Home Healthcare Business for Sale

This successful home healthcare agency has been providing compassionate and professional care to patients in the Miami area for over 12 years.

With a team of skilled nurses and caregivers, a strong referral network, and a reputation for exceptional service, this business offers a rewarding opportunity in the growing healthcare industry. The owner is retiring and seeks a buyer passionate about making a difference in patients' lives.

", + "type": "7", + "state": "FL", + "city": "Miami", + "id": "c4bf6c70-b2b4-4626-a773-82e3c1fac634", + "price": 1200000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": false, + "established": 2010, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 10 weeks of training and support during transition.", + "cashFlow": 500000, + "brokerLicencing": "FL 759326", + "internalListingNumber": 31264, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a thriving home healthcare agency with a strong reputation in the Miami market.", + "created": "2023-09-18T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Supply Store in Denver, CO", + "description": "

Successful Pet Supply Retail Business for Sale

This thriving pet supply store has been serving the Denver community for over 15 years, offering a wide range of high-quality pet food, supplies, and accessories.

With a prime location, a loyal customer base, and a knowledgeable staff, this business offers a rewarding opportunity for a pet-loving entrepreneur. The owner is relocating and seeks a passionate buyer to continue providing exceptional products and service to local pet owners.

", + "type": "5", + "state": "CO", + "city": "Denver", + "id": "6709e264-25fc-41fc-adaf-0fba4cba802d", + "price": 800000, + "salesRevenue": 1600000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 8 weeks of training and support during transition.", + "cashFlow": 320000, + "brokerLicencing": "CO 631748", + "internalListingNumber": 31265, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a profitable pet supply store with a strong reputation in the Denver market.", + "created": "2023-06-25T15:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Services Company in Seattle, WA", + "description": "

Profitable Electrical Contracting Business for Sale

This reputable electrical services company has been providing top-quality residential and commercial electrical solutions in the Seattle area for over 28 years.

With a team of licensed electricians, a fleet of well-equipped service vehicles, and a solid reputation for quality workmanship, this business offers a strong foundation for continued success. The owner is retiring and seeks a buyer with electrical industry experience to take over this established operation.

", + "type": "7", + "state": "WA", + "city": "Seattle", + "id": "6e9edbc6-a8de-4bb3-a542-d893648d0694", + "price": 1500000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": false, + "established": 1995, + "employees": 35, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and support during transition.", + "cashFlow": 600000, + "brokerLicencing": "WA 716529", + "internalListingNumber": 31266, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "This is an excellent opportunity to acquire a well-respected and profitable electrical services company in the Seattle market.", + "created": "2023-08-10T12:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Coffee Shop in Downtown Area", + "description": "

Prime Location Coffee Shop for Sale

Take advantage of this opportunity to own a well-established coffee shop in the heart of the city. With a loyal customer base and steady foot traffic, this business is poised for continued success.

The cozy atmosphere and quality coffee offerings have made this shop a local favorite. Fully equipped kitchen and experienced staff included in the sale.

", + "type": "13", + "state": "CA", + "city": "San Francisco", + "id": "4f509d57-c86a-4026-ae51-46c3313d3d1c", + "price": 350000, + "salesRevenue": 500000, + "temporary": false, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide training and support during transition.", + "cashFlow": 150000, + "brokerLicencing": "CA 123456", + "internalListingNumber": 31201, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with room for growth.", + "created": "2023-05-18T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop", + "description": "

Turn-key Auto Repair Business

Acquire this well-established auto repair shop with a solid reputation and a steady stream of customers. The business is located in a high-traffic area and has been serving the community for over a decade.

The sale includes all equipment, tools, and inventory. The experienced team of mechanics is willing to stay on under new ownership.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "0204edea-12ca-4f12-87bd-3b008d124575", + "price": 500000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2008, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support for a smooth transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31202, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Solid business with loyal customer base.", + "created": "2023-08-10T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Marketing Agency", + "description": "

Acquire this thriving marketing agency specializing in digital marketing services for small to medium-sized businesses. The agency has a proven track record of delivering results and has a diverse portfolio of clients across various industries.

The sale includes all assets, client contracts, and a talented team of marketing professionals. The current owner is willing to provide training and support to ensure a smooth transition.

", + "type": "8", + "state": "NY", + "city": "New York City", + "id": "d9c86b12-0607-44d4-9c9f-7c2578a8cf20", + "price": 1200000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Pursuing new ventures", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 500000, + "brokerLicencing": "NY 345678", + "internalListingNumber": 31203, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "High-growth potential with a solid reputation in the industry.", + "created": "2023-03-22T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Organic Farm", + "description": "

Established Organic Farm for Sale

Take advantage of the growing demand for organic produce by acquiring this well-established organic farm. The farm has been in operation for over a decade and has a loyal customer base, including local restaurants and farmers markets.

The sale includes 50 acres of fertile land, all equipment, and infrastructure. The current owner is willing to provide training and support to ensure a smooth transition.

", + "type": "9", + "state": "OR", + "city": "Portland", + "id": "709d1db9-44a4-4479-842f-ab806bc0d216", + "price": 1500000, + "salesRevenue": 750000, + "temporary": false, + "leasedLocation": false, + "established": 2010, + "employees": 10, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "OR 456789", + "internalListingNumber": 31204, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Strong growth potential in the organic food market.", + "created": "2023-07-05T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Premiere Fitness Franchise", + "description": "

Join a rapidly growing fitness franchise with a proven business model and strong brand recognition. This franchise location is situated in a prime area with a large potential customer base.

The sale includes all state-of-the-art fitness equipment, a fully trained staff, and ongoing support from the franchisor. Take advantage of the growing fitness industry and be part of a successful franchise network.

", + "type": "10", + "state": "FL", + "city": "Miami", + "id": "1d1be25b-b6a4-48e1-8892-dc71c2524a40", + "price": 400000, + "salesRevenue": 600000, + "temporary": false, + "leasedLocation": true, + "established": 2018, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "FL 567890", + "internalListingNumber": 31205, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Strong brand recognition and proven business model.", + "created": "2023-09-12T08:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Law Firm", + "description": "

Reputable Law Firm for Sale

Acquire this well-established law firm with a strong reputation and a diverse client base. The firm specializes in corporate law, real estate, and litigation, and has been serving the community for over 20 years.

The sale includes all assets, client files, and a team of experienced attorneys and support staff. The current owner is retiring but willing to provide guidance during the transition period.

", + "type": "11", + "state": "IL", + "city": "Chicago", + "id": "18ead709-bb53-4def-a5d9-db55f1e46d4e", + "price": 2000000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide guidance during the transition period.", + "cashFlow": 800000, + "brokerLicencing": "IL 678901", + "internalListingNumber": 31206, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Reputable firm with a strong client base and experienced staff.", + "created": "2023-02-28T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Business", + "description": "

Take advantage of this opportunity to acquire a profitable manufacturing business specializing in custom-made furniture. The business has a well-equipped production facility and a skilled team of craftsmen.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With a strong reputation for quality and a loyal customer base, this business is poised for continued success.

", + "type": "12", + "state": "NC", + "city": "Charlotte", + "id": "26a6c052-448d-4ced-9d84-5d11f55289e2", + "price": 1800000, + "salesRevenue": 2500000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 600000, + "brokerLicencing": "NC 789012", + "internalListingNumber": 31207, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established business with a strong reputation and skilled workforce.", + "created": "2023-06-08T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Local Restaurant", + "description": "

Iconic Restaurant in Prime Location

Acquire this popular local restaurant known for its unique cuisine and loyal customer base. Located in a prime area with high foot traffic, this restaurant has been a staple in the community for over 15 years.

The sale includes all assets, equipment, and furnishings. The experienced staff is willing to stay on under new ownership. Take advantage of this turnkey opportunity to own a thriving restaurant business.

", + "type": "13", + "state": "GA", + "city": "Atlanta", + "id": "9e2182db-1b06-44b5-bbff-74a85ba40c33", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2006, + "employees": 18, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 300000, + "brokerLicencing": "GA 890123", + "internalListingNumber": 31208, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Iconic restaurant with a loyal customer base and prime location.", + "created": "2023-04-15T17:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Detailing Shop", + "description": "

Take over this well-established auto detailing shop with a loyal customer base and a reputation for excellence. The business is located in a high-traffic area and has been serving the community for over a decade.

The sale includes all equipment, supplies, and a trained staff. The current owner is willing to provide training and support to ensure a smooth transition. With a strong brand and a steady stream of customers, this business is poised for continued success.

", + "type": "1", + "state": "AZ", + "city": "Phoenix", + "id": "4a250ba3-33d0-4a8c-a62e-b1deca4fdf32", + "price": 250000, + "salesRevenue": 400000, + "temporary": false, + "leasedLocation": true, + "established": 2009, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "AZ 901234", + "internalListingNumber": 31209, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established business with a loyal customer base and trained staff.", + "created": "2023-11-02T12:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable HVAC Company", + "description": "

Established HVAC Business for Sale

Acquire this profitable HVAC company with a strong reputation and a loyal customer base. The business has been serving the community for over 20 years and has a team of experienced technicians.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With a steady stream of residential and commercial clients, this business offers a great opportunity for growth.

", + "type": "2", + "state": "CO", + "city": "Denver", + "id": "40590f2d-8696-41cc-917a-2fd95abd54d7", + "price": 1200000, + "salesRevenue": 1800000, + "temporary": false, + "leasedLocation": false, + "established": 2001, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "CO 012345", + "internalListingNumber": 31210, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a strong reputation and experienced staff.", + "created": "2023-08-20T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Real Estate Brokerage", + "description": "

Take advantage of this opportunity to acquire a successful real estate brokerage with a proven track record and a team of experienced agents. The brokerage specializes in luxury residential properties and has a strong presence in the local market.

The sale includes all assets, client database, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a strong brand and a loyal client base, this business offers excellent growth potential.

", + "type": "3", + "state": "WA", + "city": "Seattle", + "id": "5fcb39c6-ae9e-4355-82eb-a5312b10cc43", + "price": 1500000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "WA 123456", + "internalListingNumber": 31211, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful brokerage with a strong brand and experienced team.", + "created": "2023-05-12T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Landscaping Business", + "description": "

Take over this well-established landscaping business with a loyal customer base and a reputation for quality work. The business serves both residential and commercial clients and has a team of experienced landscapers.

The sale includes all equipment, vehicles, and contracts. The current owner is willing to provide training and support to ensure a smooth transition. With a strong brand and steady revenue, this business offers excellent growth potential.

", + "type": "7", + "state": "FL", + "city": "Orlando", + "id": "8e53d650-0862-43a8-9a8e-a6574b2a1548", + "price": 500000, + "salesRevenue": 750000, + "temporary": false, + "leasedLocation": false, + "established": 2008, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 200000, + "brokerLicencing": "FL 234567", + "internalListingNumber": 31212, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established business with a loyal customer base and experienced staff.", + "created": "2023-07-18T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Digital Marketing Agency", + "description": "

Profitable Digital Marketing Agency for Sale

Acquire this successful digital marketing agency with a diverse client base and a talented team of marketing professionals. The agency specializes in SEO, PPC, social media marketing, and content creation.

The sale includes all assets, client contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a proven track record and strong growth potential, this business is a great opportunity for anyone looking to enter the digital marketing industry.

", + "type": "8", + "state": "TX", + "city": "Austin", + "id": "84b59db9-e51a-401b-ab96-ce4a23f44b78", + "price": 1000000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31213, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful agency with a talented team and strong growth potential.", + "created": "2023-03-05T16:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Winery and Vineyard", + "description": "

Take advantage of this rare opportunity to acquire a profitable winery and vineyard in a prime location. The property includes a state-of-the-art production facility, tasting room, and 50 acres of premium vineyards.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With a strong brand and a loyal customer base, this business offers excellent growth potential in the thriving wine industry.

", + "type": "9", + "state": "CA", + "city": "Napa", + "id": "177540c5-6165-47aa-8295-80dd98938d39", + "price": 5000000, + "salesRevenue": 3000000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "CA 456789", + "internalListingNumber": 31214, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable winery with a strong brand and prime location.", + "created": "2023-09-28T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Franchise Restaurant", + "description": "

Profitable Franchise Restaurant for Sale

Acquire this established franchise restaurant with a proven business model and strong brand recognition. Located in a high-traffic area, the restaurant has a loyal customer base and consistent revenue.

The sale includes all assets, equipment, and inventory. The franchisor provides comprehensive training and ongoing support. With a turnkey operation and strong growth potential, this business is a great opportunity for anyone looking to enter the restaurant industry.

", + "type": "10", + "state": "GA", + "city": "Atlanta", + "id": "63cef11a-634b-487f-b265-b9d86dc2ba50", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "GA 567890", + "internalListingNumber": 31215, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Established franchise with a proven business model and strong brand recognition.", + "created": "2023-06-10T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Accounting Firm", + "description": "

Take over this well-established accounting firm with a diverse client base and a team of experienced professionals. The firm provides a full range of accounting, tax, and bookkeeping services to small and medium-sized businesses.

The sale includes all assets, client files, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a strong reputation and steady revenue, this business offers excellent growth potential.

", + "type": "11", + "state": "IL", + "city": "Chicago", + "id": "af77458d-8d7b-42d7-bddd-8ae583f62610", + "price": 1200000, + "salesRevenue": 1800000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 500000, + "brokerLicencing": "IL 678901", + "internalListingNumber": 31216, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established firm with a diverse client base and experienced staff.", + "created": "2023-04-22T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Manufacturing Company", + "description": "

Profitable Manufacturing Business for Sale

Acquire this successful manufacturing company specializing in precision metal fabrication. The company has a well-equipped facility, skilled workforce, and a diverse customer base.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With a strong reputation for quality and on-time delivery, this business offers excellent growth potential in the manufacturing industry.

", + "type": "12", + "state": "OH", + "city": "Cleveland", + "id": "440381c8-fb38-467b-8bcb-73c952555bd5", + "price": 3000000, + "salesRevenue": 5000000, + "temporary": false, + "leasedLocation": false, + "established": 1998, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "OH 789012", + "internalListingNumber": 31217, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful manufacturing company with a strong reputation and skilled workforce.", + "created": "2023-11-08T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bar and Grill", + "description": "

Take advantage of this opportunity to acquire a popular bar and grill in a prime location. The business has a loyal customer base, great food and drinks, and a lively atmosphere.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven concept, this business offers excellent growth potential in the hospitality industry.

", + "type": "13", + "state": "NY", + "city": "New York City", + "id": "fae3c3c0-04e6-4bc0-88c6-a16fb0ad82ee", + "price": 1500000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2008, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 500000, + "brokerLicencing": "NY 890123", + "internalListingNumber": 31218, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular bar and grill with a loyal customer base and prime location.", + "created": "2023-08-15T17:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Body Shop", + "description": "

Profitable Auto Body Shop for Sale

Acquire this well-established auto body shop with a loyal customer base and a reputation for quality work. The shop specializes in collision repair, paint, and detailing services.

The sale includes all equipment, tools, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With a skilled team and steady revenue, this business offers excellent growth potential in the automotive industry.

", + "type": "1", + "state": "CA", + "city": "Los Angeles", + "id": "2ca1962a-d3e9-4fdb-9348-01e9f92d0f3c", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "CA 901234", + "internalListingNumber": 31219, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established auto body shop with a loyal customer base and skilled team.", + "created": "2023-05-30T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Plumbing Company", + "description": "

Take over this successful plumbing company with a strong reputation and a loyal customer base. The company provides a full range of plumbing services to residential and commercial clients.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With a team of experienced plumbers and steady revenue, this business offers excellent growth potential in the service industry.

", + "type": "2", + "state": "TX", + "city": "Dallas", + "id": "57dba8a6-de2d-494e-996f-51bc86d2bb5f", + "price": 1000000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": false, + "established": 2000, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31220, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful plumbing company with a strong reputation and experienced team.", + "created": "2023-07-10T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Property Management Company", + "description": "

Profitable Property Management Business for Sale

Acquire this well-established property management company with a diverse portfolio of residential and commercial properties. The company has a proven track record of providing excellent service to property owners and tenants.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the real estate industry.

", + "type": "3", + "state": "FL", + "city": "Miami", + "id": "e5a2c41f-d49d-42ec-80ee-2b5c265605fc", + "price": 1500000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "FL 123456", + "internalListingNumber": 31221, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established property management company with a diverse portfolio and steady revenue.", + "created": "2023-03-18T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Grooming Business", + "description": "

Take advantage of this opportunity to acquire a profitable pet grooming business with a loyal customer base and a reputation for providing excellent care. The business is located in a high-traffic area and has a well-equipped facility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this business offers excellent growth potential in the pet care industry.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "6b97da33-5cc5-4dab-a03e-6714b4ec1bdf", + "price": 250000, + "salesRevenue": 400000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "CO 234567", + "internalListingNumber": 31222, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable pet grooming business with a loyal customer base and well-equipped facility.", + "created": "2023-09-05T16:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Event Planning Company", + "description": "

Established Event Planning Business for Sale

Acquire this successful event planning company with a diverse client base and a reputation for creating memorable events. The company specializes in weddings, corporate events, and social gatherings.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a talented team and strong growth potential, this business is a great opportunity in the event industry.

", + "type": "7", + "state": "NY", + "city": "New York City", + "id": "d3e2bf85-b7b8-464a-8fe8-72c463d607a9", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2008, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "NY 345678", + "internalListingNumber": 31223, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful event planning company with a diverse client base and talented team.", + "created": "2023-06-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Organic Farm and CSA", + "description": "

Take over this successful organic farm and CSA (Community Supported Agriculture) with a loyal customer base and a reputation for providing fresh, high-quality produce. The farm has 20 acres of fertile land and a well-established infrastructure.

The sale includes all assets, equipment, and contracts. The current owner is willing to provide training and support to ensure a smooth transition. With strong demand for organic produce and a proven business model, this farm offers excellent growth potential in the agriculture industry.

", + "type": "9", + "state": "CA", + "city": "Sacramento", + "id": "7449f97e-3c3c-4b79-a39b-04df39ed677d", + "price": 1500000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "CA 456789", + "internalListingNumber": 31224, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful organic farm and CSA with a loyal customer base and strong demand.", + "created": "2023-04-10T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Franchise Fitness Center", + "description": "

Profitable Franchise Fitness Center for Sale

Acquire this established franchise fitness center with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With a prime location and steady revenue, this business offers excellent growth potential in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Houston", + "id": "821d2ae1-4662-4c01-a7db-994c56e1e688", + "price": 500000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31225, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Established franchise fitness center with a proven business model and strong brand recognition.", + "created": "2023-11-03T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dental Practice", + "description": "

Take advantage of this opportunity to acquire a profitable dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "IL", + "city": "Chicago", + "id": "d4330cee-578a-4418-a7d5-497c9c7e24c2", + "price": 1200000, + "salesRevenue": 1800000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "IL 678901", + "internalListingNumber": 31226, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-08-28T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Machine Shop", + "description": "

Established Machine Shop for Sale

Acquire this successful machine shop with a diverse customer base and a reputation for providing high-quality machining services. The shop has a well-equipped facility and a skilled team of machinists.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "OH", + "city": "Columbus", + "id": "1d77f23f-e45a-4af2-8e8b-84887c47b0d4", + "price": 1000000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 1998, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "OH 789012", + "internalListingNumber": 31227, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful machine shop with a diverse customer base and skilled team.", + "created": "2023-05-15T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Family-Owned Restaurant", + "description": "

Take over this popular family-owned restaurant with a loyal customer base and a reputation for serving delicious, home-style meals. The restaurant is located in a high-traffic area and has a cozy, welcoming atmosphere.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven concept, this restaurant offers excellent growth potential in the food service industry.

", + "type": "13", + "state": "PA", + "city": "Philadelphia", + "id": "50b46fc8-a830-4d89-af7b-c74eec50d993", + "price": 500000, + "salesRevenue": 750000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 200000, + "brokerLicencing": "PA 890123", + "internalListingNumber": 31228, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular family-owned restaurant with a loyal customer base and proven concept.", + "created": "2023-07-08T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Repair and Tire Shop", + "description": "

Profitable Auto Repair and Tire Shop for Sale

Acquire this well-established auto repair and tire shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced mechanics.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "AZ", + "city": "Phoenix", + "id": "a975e9bd-2858-4713-a498-0fc6af8aee3c", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "AZ 901234", + "internalListingNumber": 31229, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established auto repair and tire shop with a loyal customer base and experienced team.", + "created": "2023-03-25T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Electrical Contracting Company", + "description": "

Take advantage of this opportunity to acquire a profitable electrical contracting company with a diverse client base and a reputation for providing quality services. The company has a team of licensed electricians and a well-equipped fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "WA", + "city": "Seattle", + "id": "c3c0e40d-c1d1-4e3e-bbca-4c36d2eb37d3", + "price": 1200000, + "salesRevenue": 1800000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 500000, + "brokerLicencing": "WA 012345", + "internalListingNumber": 31230, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable electrical contracting company with a diverse client base and licensed team.", + "created": "2023-09-18T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Commercial Cleaning Company", + "description": "

Established Commercial Cleaning Business for Sale

Acquire this successful commercial cleaning company with a loyal client base and a reputation for providing quality services. The company serves a diverse range of businesses, including offices, medical facilities, and retail stores.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "NC", + "city": "Charlotte", + "id": "2609c48b-5e38-46c2-95df-a54d10238dd9", + "price": 500000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": false, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "NC 123456", + "internalListingNumber": 31231, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful commercial cleaning company with a loyal client base and diverse range of businesses served.", + "created": "2023-06-05T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Social Media Marketing Agency", + "description": "

Take over this successful social media marketing agency with a diverse client base and a talented team of marketing professionals. The agency specializes in creating and managing social media campaigns for businesses across various industries.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With strong demand for social media marketing services and a proven business model, this agency offers excellent growth potential.

", + "type": "8", + "state": "CA", + "city": "San Diego", + "id": "e2d8e3bb-1962-4a97-b470-fc29096b90de", + "price": 1000000, + "salesRevenue": 1500000, + "temporary": false, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "CA 234567", + "internalListingNumber": 31232, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable social media marketing agency with a diverse client base and talented team.", + "created": "2023-04-20T15:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Flower Shop and Nursery", + "description": "

Profitable Flower Shop and Nursery for Sale

Acquire this well-established flower shop and nursery with a loyal customer base and a reputation for providing high-quality plants and floral arrangements. The business is located in a prime area with high visibility and foot traffic.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the retail and agriculture industries.

", + "type": "9", + "state": "OR", + "city": "Portland", + "id": "ca5f80f5-574f-4f8d-af71-81ae166315f3", + "price": 400000, + "salesRevenue": 600000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "OR 345678", + "internalListingNumber": 31233, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established flower shop and nursery with a loyal customer base and prime location.", + "created": "2023-11-12T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Fast Food Franchise", + "description": "

Take advantage of this opportunity to acquire a successful fast food franchise with a proven business model and strong brand recognition. The franchise is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "FL", + "city": "Orlando", + "id": "6732f641-66c8-4551-85ce-b624dd0efd51", + "price": 500000, + "salesRevenue": 800000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "FL 456789", + "internalListingNumber": 31234, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fast food franchise with a proven business model and strong brand recognition.", + "created": "2023-08-07T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Veterinary Practice", + "description": "

Established Veterinary Practice for Sale

Acquire this profitable veterinary practice with a loyal client base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced veterinarians and support staff.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the veterinary industry.

", + "type": "11", + "state": "CO", + "city": "Denver", + "id": "aae3a511-1698-4baa-b324-1aa433b7ea3b", + "price": 1500000, + "salesRevenue": 2000000, + "temporary": false, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "CO 567890", + "internalListingNumber": 31235, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable veterinary practice with a loyal client base and well-equipped facility.", + "created": "2023-05-25T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Custom Furniture Manufacturer", + "description": "

Take over this successful custom furniture manufacturing business with a reputation for crafting high-quality, unique pieces. The business has a well-equipped workshop and a skilled team of artisans.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong demand for custom furniture and a proven business model, this manufacturer offers excellent growth potential in the woodworking industry.

", + "type": "12", + "state": "PA", + "city": "Philadelphia", + "id": "f73a91a6-a1ed-4b88-a8a9-feee0075d22e", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": true, + "established": 2000, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "PA 678901", + "internalListingNumber": 31236, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful custom furniture manufacturer with a reputation for crafting high-quality, unique pieces.", + "created": "2023-07-12T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Catering Company", + "description": "

Profitable Catering Company for Sale

Acquire this well-established catering company with a loyal client base and a reputation for providing exceptional food and service. The company serves a diverse range of events, including weddings, corporate functions, and social gatherings.

The sale includes all assets, equipment, and contracts. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "GA", + "city": "Atlanta", + "id": "f755028f-7e8b-4c1f-ae13-d2f6ee52790c", + "price": 600000, + "salesRevenue": 1000000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "GA 789012", + "internalListingNumber": 31237, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-established catering company with a loyal client base and reputation for exceptional food and service.", + "created": "2023-03-30T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Glass Repair and Replacement Shop", + "description": "

Take advantage of this opportunity to acquire a profitable auto glass repair and replacement shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "San Antonio", + "id": "66d0798c-ae1c-4ad7-9928-3447a5ae1261", + "price": 400000, + "salesRevenue": 600000, + "temporary": false, + "leasedLocation": true, + "established": 2010, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31238, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable auto glass repair and replacement shop with a loyal customer base and experienced technicians.", + "created": "2023-09-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Pool Maintenance and Repair Company", + "description": "

Established Pool Maintenance and Repair Business for Sale

Acquire this successful pool maintenance and repair company with a loyal customer base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "AZ", + "city": "Phoenix", + "id": "b6a1ae3f-0c91-49b0-8ab7-806017398355", + "price": 800000, + "salesRevenue": 1200000, + "temporary": false, + "leasedLocation": false, + "established": 2005, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "AZ 901234", + "internalListingNumber": 31239, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful pool maintenance and repair company with a loyal customer base and well-maintained fleet.", + "created": "2023-06-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Restaurant in Downtown Dallas", + "description": "

Established Restaurant for Sale in Prime Location

Take advantage of this opportunity to acquire a thriving restaurant in the heart of Dallas. With a loyal customer base and a reputation for serving delicious food, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Don't miss this chance to own a profitable restaurant in a prime location.

", + "type": "13", + "state": "TX", + "city": "Dallas", + "id": "e653a6bf-8505-47dd-b668-5f923826b96c", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31240, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable restaurant in a prime location with a loyal customer base.", + "created": "2023-06-25T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Repair Shop in Houston", + "description": "

Acquire this well-established auto repair shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced mechanics.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "376ad9af-4b8d-41e8-9ed4-d96c54cc206c", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31241, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto repair shop with a loyal customer base and experienced mechanics.", + "created": "2023-08-10T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company in Austin", + "description": "

Established Landscaping Business for Sale

Take over this successful landscaping company with a loyal client base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of vehicles and equipment.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "ef80fd55-6178-4aa6-b99f-59641485940d", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": false, + "established": 2008, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31242, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable landscaping company with a loyal client base and well-maintained fleet.", + "created": "2023-05-18T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center in San Antonio", + "description": "

Acquire this successful franchise fitness center with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "San Antonio", + "id": "63e6461a-936b-4e91-af70-59d8d22e2c64", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31243, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful franchise fitness center with a proven business model and strong brand recognition.", + "created": "2023-07-05T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dental Practice in El Paso", + "description": "

Profitable Dental Practice for Sale

Take advantage of this opportunity to acquire a profitable dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "El Paso", + "id": "12329e7f-bbfc-4545-9672-d111a38a96ef", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2000, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31244, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-03-28T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Business in Fort Worth", + "description": "

Acquire this successful manufacturing business specializing in custom metal fabrication. The company has a well-equipped facility, skilled workforce, and a diverse customer base.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Fort Worth", + "id": "f89c1ef6-62b9-409f-8cc2-258eb4eeb62c", + "price": 2500000, + "salesRevenue": 4000000, + "leasedLocation": false, + "established": 1995, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 800000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31245, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable manufacturing business with a well-equipped facility and skilled workforce.", + "created": "2023-09-15T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Catering Company in Plano", + "description": "

Profitable Catering Company for Sale

Acquire this well-established catering company with a loyal client base and a reputation for providing exceptional food and service. The company serves a diverse range of events, including weddings, corporate functions, and social gatherings.

The sale includes all assets, equipment, and contracts. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Plano", + "id": "87bc64d8-b16e-4f89-9dab-2801c414e941", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31246, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful catering company with a loyal client base and reputation for exceptional food and service.", + "created": "2023-06-02T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Detailing Shop in Lubbock", + "description": "

Take over this well-established auto detailing shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced detailers.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Lubbock", + "id": "36683cdb-d33d-4fb8-93a5-631982dcff1d", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2010, + "employees": 5, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31247, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established auto detailing shop with a loyal customer base and experienced detailers.", + "created": "2023-04-20T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable HVAC Company in Corpus Christi", + "description": "

Successful HVAC Business for Sale

Acquire this profitable HVAC company with a strong reputation and a loyal customer base. The business has been serving the community for over 20 years and has a team of experienced technicians.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "Corpus Christi", + "id": "df92b91b-3ca1-45c7-bcf8-e087c0e38aa6", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2000, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31248, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable HVAC company with a strong reputation and experienced technicians.", + "created": "2023-08-08T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Real Estate Brokerage in Irving", + "description": "

Take advantage of this opportunity to acquire a successful real estate brokerage with a proven track record and a team of experienced agents. The brokerage specializes in residential properties and has a strong presence in the local market.

The sale includes all assets, client database, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With strong brand recognition and a loyal client base, this business offers excellent growth potential.

", + "type": "3", + "state": "TX", + "city": "Irving", + "id": "adb0a778-51e1-4747-92c8-d729b0bc19a8", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31249, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful real estate brokerage with a strong brand and experienced agents.", + "created": "2023-05-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Grooming Business in Arlington", + "description": "

Established Pet Grooming Shop for Sale

Acquire this profitable pet grooming business with a loyal customer base and a reputation for providing excellent care. The business is located in a high-traffic area and has a well-equipped facility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this business offers excellent growth potential in the pet care industry.

", + "type": "7", + "state": "TX", + "city": "Arlington", + "id": "887c0d5f-0bbd-45ea-95a9-2db1f94f7411", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2012, + "employees": 4, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 80000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31250, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable pet grooming business with a loyal customer base and well-equipped facility.", + "created": "2023-07-12T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Event Planning Company in Frisco", + "description": "

Acquire this successful event planning company with a diverse client base and a reputation for creating memorable events. The company specializes in weddings, corporate events, and social gatherings.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a talented team and strong growth potential, this business is a great opportunity in the event industry.

", + "type": "7", + "state": "TX", + "city": "Frisco", + "id": "3e442b6c-9f8d-45cf-8710-a830d86dac51", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31251, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful event planning company with a diverse client base and talented team.", + "created": "2023-03-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Flower Shop in Amarillo", + "description": "

Established Flower Shop for Sale

Take over this well-established flower shop with a loyal customer base and a reputation for providing high-quality floral arrangements. The business is located in a prime area with high visibility and foot traffic.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Amarillo", + "id": "7682e952-adab-420c-b704-c0f0eeb07e72", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2005, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31252, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established flower shop with a loyal customer base and prime location.", + "created": "2023-09-05T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant in Beaumont", + "description": "

Acquire this successful franchise restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Beaumont", + "id": "5a1403c0-8581-4573-8aa9-81f742be1b3b", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31253, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful franchise restaurant with a proven business model and strong brand recognition.", + "created": "2023-06-22T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Veterinary Practice in Waco", + "description": "

Established Veterinary Practice for Sale

Take advantage of this opportunity to acquire a profitable veterinary practice with a loyal client base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced veterinarians and support staff.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the veterinary industry.

", + "type": "11", + "state": "TX", + "city": "Waco", + "id": "5eb8427a-b9d4-4ff7-9161-b44084f14ef7", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2000, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31254, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable veterinary practice with a loyal client base and well-equipped facility.", + "created": "2023-04-10T15:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Machine Shop in Midland", + "description": "

Acquire this successful machine shop with a diverse customer base and a reputation for providing high-quality machining services. The shop has a well-equipped facility and a skilled team of machinists.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Midland", + "id": "5f767b1d-9abd-46c8-90c5-40c29c2987da", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 1998, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31255, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful machine shop with a diverse customer base and skilled team.", + "created": "2023-08-28T12:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Family-Owned Restaurant in Odessa", + "description": "

Established Restaurant for Sale

Take over this popular family-owned restaurant with a loyal customer base and a reputation for serving delicious, home-style meals. The restaurant is located in a high-traffic area and has a cozy, welcoming atmosphere.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven concept, this restaurant offers excellent growth potential in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Odessa", + "id": "7d53049a-97cc-483d-b194-438c6f44d289", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2000, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31256, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular family-owned restaurant with a loyal customer base and proven concept.", + "created": "2023-05-15T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Retail Store in Abilene", + "description": "

Acquire this profitable retail store specializing in unique home decor and gifts. Located in a prime shopping district, the store has a loyal customer base and a reputation for offering high-quality, one-of-a-kind items.

The sale includes all inventory, fixtures, and equipment. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this store offers excellent growth potential in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Abilene", + "id": "c0907b46-6b5d-404c-977b-091bd3334e36", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2010, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31257, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable retail store with a loyal customer base and prime location.", + "created": "2023-07-03T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Franchise Fitness Center in Round Rock", + "description": "

Successful Fitness Franchise for Sale

Take advantage of this opportunity to acquire an established franchise fitness center with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With a prime location and steady revenue, this business offers excellent growth potential in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Round Rock", + "id": "8032daa0-69b4-41a1-a294-fb030c31a9d0", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31258, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Established franchise fitness center with a proven business model and strong brand recognition.", + "created": "2023-03-20T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dental Practice in McAllen", + "description": "

Acquire this profitable dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "McAllen", + "id": "d3bafab2-6a4a-4c3e-931d-8b9bafe15c9f", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31259, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-09-08T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Glass Repair Shop in Tyler", + "description": "

Profitable Auto Glass Business for Sale

Take advantage of this opportunity to acquire a successful auto glass repair and replacement shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Tyler", + "id": "fff2b116-3972-4c9f-80a2-0174d76d25f3", + "price": 350000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2010, + "employees": 6, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31260, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto glass repair shop with a loyal customer base and experienced technicians.", + "created": "2023-06-18T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pool Maintenance Company in College Station", + "description": "

Acquire this successful pool maintenance and repair company with a loyal customer base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "College Station", + "id": "83b0ba4e-edcc-466c-b94f-d84bdaff69e3", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": false, + "established": 2008, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31261, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful pool maintenance company with a loyal customer base and well-maintained fleet.", + "created": "2023-04-25T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Wichita Falls", + "description": "

Established Daycare Business for Sale

Take over this profitable daycare center with a great reputation and a loyal customer base. The center is licensed for 50 children and has a well-maintained facility with a spacious outdoor play area.

The sale includes all assets, equipment, and fixtures. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong demand for quality childcare, this business offers excellent growth potential in the education industry.

", + "type": "7", + "state": "TX", + "city": "Wichita Falls", + "id": "6ab9fbe8-1323-407a-aa83-0d51c6df9565", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31262, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable daycare center with a great reputation and loyal customer base.", + "created": "2023-08-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in San Marcos", + "description": "

Acquire this popular coffee shop located in the heart of San Marcos. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "San Marcos", + "id": "6808026a-c33a-4954-b6c0-e9e94153b0f1", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31263, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-05-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Temple", + "description": "

Profitable Plumbing Business for Sale

Take over this successful plumbing company with a strong reputation and a loyal customer base. The company provides a full range of plumbing services to residential and commercial clients.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With a team of experienced plumbers and steady revenue, this business offers excellent growth potential in the service industry.

", + "type": "2", + "state": "TX", + "city": "Temple", + "id": "734f0c4f-fffe-45c4-bff9-a50d9995db5e", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2000, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31264, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful plumbing company with a strong reputation and experienced team.", + "created": "2023-07-20T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Electrical Contracting Business in New Braunfels", + "description": "

Acquire this profitable electrical contracting company with a diverse client base and a reputation for providing quality services. The company has a team of licensed electricians and a well-equipped fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "New Braunfels", + "id": "dbd73122-08c3-428d-83f1-3bd5610b9ca0", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31265, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable electrical contracting company with a diverse client base and licensed team.", + "created": "2023-03-10T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fast Food Restaurant in Lewisville", + "description": "

Profitable Fast Food Franchise for Sale

Take advantage of this opportunity to acquire a successful fast food franchise with a proven business model and strong brand recognition. The franchise is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Lewisville", + "id": "1c55bc74-d130-41eb-94a7-4a08a949111e", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31266, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fast food franchise with a proven business model and strong brand recognition.", + "created": "2023-09-25T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bakery in Flower Mound", + "description": "

Acquire this popular bakery known for its delicious pastries, cakes, and breads. Located in a charming neighborhood, the bakery has a loyal customer base and a reputation for quality.

The sale includes all assets, equipment, and recipes. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food industry.

", + "type": "13", + "state": "TX", + "city": "Flower Mound", + "id": "6743a498-ddef-4349-a9dd-072fc6e04478", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2010, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 80000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31267, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established bakery with a loyal customer base and reputation for quality.", + "created": "2023-06-12T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Hair Salon in Georgetown", + "description": "

Successful Hair Salon Franchise for Sale

Take over this profitable hair salon franchise with a proven business model and strong brand recognition. The salon is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "10", + "state": "TX", + "city": "Georgetown", + "id": "1fd1427b-240b-4548-aa69-3f5819c96617", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31268, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable hair salon franchise with a proven business model and strong brand recognition.", + "created": "2023-04-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Detailing Shop in Mansfield", + "description": "

Acquire this well-established auto detailing shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced detailers.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Mansfield", + "id": "004f4eee-baf0-4334-906b-1d558544c364", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31269, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto detailing shop with a loyal customer base and experienced detailers.", + "created": "2023-08-05T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pizza Restaurant in Cedar Park", + "description": "

Established Pizza Franchise for Sale

Take advantage of this opportunity to acquire a profitable pizza franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Cedar Park", + "id": "5ad7f9ab-55b0-44a3-b57d-6e01a5bf9cb4", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31270, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable pizza franchise with a proven business model and strong brand recognition.", + "created": "2023-05-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop in Pflugerville", + "description": "

Acquire this successful ice cream franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Pflugerville", + "id": "1215df93-2bc7-41fc-8e46-47f76b6cf67c", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31271, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful ice cream franchise with a proven business model and strong brand recognition.", + "created": "2023-07-10T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Euless", + "description": "

Profitable Dry Cleaning Shop for Sale

Take over this well-established dry cleaning business with a loyal customer base and a reputation for providing quality services. The shop is located in a convenient area with high visibility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Euless", + "id": "2cfa20eb-da23-4bb6-b12f-568c9e1a5184", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2000, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31272, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dry cleaning business with a loyal customer base and convenient location.", + "created": "2023-03-25T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Sandwich Shop in Grapevine", + "description": "

Acquire this successful sandwich franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Grapevine", + "id": "d26b7fdb-b858-4775-8cd5-8e410f9d050f", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31273, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable sandwich franchise with a proven business model and strong brand recognition.", + "created": "2023-09-18T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center in Coppell", + "description": "

Established Fitness Franchise for Sale

Take advantage of this opportunity to acquire a successful fitness franchise with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Coppell", + "id": "5f524489-09f1-4a89-9758-29110dded3e2", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31274, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fitness franchise with a proven business model and strong brand recognition.", + "created": "2023-06-05T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Juice Bar in Katy", + "description": "

Acquire this successful juice bar franchise with a proven business model and strong brand recognition. The bar is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Katy", + "id": "0b096c23-dcbb-48e1-a23a-c9adc462f6df", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31275, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable juice bar franchise with a proven business model and strong brand recognition.", + "created": "2023-04-12T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dance Studio in Friendswood", + "description": "

Successful Dance Studio for Sale

Take over this well-established dance studio with a loyal client base and a reputation for providing quality instruction. The studio offers classes in various dance styles for all ages and skill levels.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the education and fitness industries.

", + "type": "7", + "state": "TX", + "city": "Friendswood", + "id": "782e3012-0500-4be5-a7a3-bab70599c6e6", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31276, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dance studio with a loyal client base and quality instruction.", + "created": "2023-08-28T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Frozen Yogurt Shop in Little Elm", + "description": "

Acquire this successful frozen yogurt franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Little Elm", + "id": "6a0c6b3b-a39d-483e-8f6e-61c3929bd33d", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31277, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable frozen yogurt franchise with a proven business model and strong brand recognition.", + "created": "2023-05-15T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Coffee Shop in The Colony", + "description": "

Established Coffee Shop Franchise for Sale

Take advantage of this opportunity to acquire a successful coffee shop franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "The Colony", + "id": "292b3a0d-8b41-4699-9844-792be7dd6979", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31278, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful coffee shop franchise with a proven business model and strong brand recognition.", + "created": "2023-07-02T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Burger Restaurant in Schertz", + "description": "

Acquire this successful burger franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Schertz", + "id": "652c23b7-70b1-4ff3-b6fe-a400474f74b8", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31279, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable burger franchise with a proven business model and strong brand recognition.", + "created": "2023-03-20T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop in Houston", + "description": "

Established Auto Repair Business for Sale

Take over this well-established auto repair shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced mechanics.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "34b66661-eab3-4a9c-a6e1-eab6b0c837df", + "price": 750000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2005, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31280, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable auto repair shop with a loyal customer base and experienced mechanics.", + "created": "2023-06-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in Austin", + "description": "

Acquire this popular coffee shop located in the heart of Austin. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "642f4e5f-39e8-4212-8ad5-13d088735991", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31281, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-08-05T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Fitness Center in Dallas", + "description": "

Established Fitness Franchise for Sale

Take advantage of this opportunity to acquire a successful fitness franchise with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Dallas", + "id": "5ea9babb-8b80-443b-9990-1fd681d1c915", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31282, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fitness franchise with a proven business model and strong brand recognition.", + "created": "2023-05-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dental Practice in San Antonio", + "description": "

Take over this well-established dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "San Antonio", + "id": "af055e79-1ef9-4964-b463-79d581288cd1", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2000, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31283, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-07-10T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Business in Fort Worth", + "description": "

Successful Manufacturing Company for Sale

Acquire this profitable manufacturing company specializing in custom metal fabrication. The company has a well-equipped facility, skilled workforce, and a diverse customer base.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Fort Worth", + "id": "03d88af6-cfa5-4f3e-aeed-f8095368ab8b", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 1998, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 700000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31284, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable manufacturing business with a well-equipped facility and skilled workforce.", + "created": "2023-03-28T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant in El Paso", + "description": "

Acquire this successful franchise restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "El Paso", + "id": "84442dd2-1e4d-459c-bbc0-7acef2e66c0d", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31285, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful franchise restaurant with a proven business model and strong brand recognition.", + "created": "2023-09-15T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company in Plano", + "description": "

Established Landscaping Business for Sale

Take over this successful landscaping company with a loyal client base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of vehicles and equipment.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Plano", + "id": "5c1bd042-eebe-4ff6-b52f-27a451bd1eb2", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31286, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable landscaping company with a loyal client base and well-maintained fleet.", + "created": "2023-06-02T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Body Shop in Lubbock", + "description": "

Acquire this well-established auto body shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Lubbock", + "id": "80085300-642f-4285-b801-68f765c2afec", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2010, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31287, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established auto body shop with a loyal customer base and experienced technicians.", + "created": "2023-04-20T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable HVAC Company in Corpus Christi", + "description": "

Successful HVAC Business for Sale

Acquire this profitable HVAC company with a strong reputation and a loyal customer base. The business has been serving the community for over 20 years and has a team of experienced technicians.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "Corpus Christi", + "id": "9f2d82c9-d707-4b22-ac54-00367795b91f", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 2000, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31288, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable HVAC company with a strong reputation and experienced technicians.", + "created": "2023-08-08T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Real Estate Brokerage in Irving", + "description": "

Take advantage of this opportunity to acquire a successful real estate brokerage with a proven track record and a team of experienced agents. The brokerage specializes in residential properties and has a strong presence in the local market.

The sale includes all assets, client database, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With strong brand recognition and a loyal client base, this business offers excellent growth potential.

", + "type": "3", + "state": "TX", + "city": "Irving", + "id": "d1d572ac-682c-4a3c-89bb-761577fa5c99", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2008, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31289, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful real estate brokerage with a strong brand and experienced agents.", + "created": "2023-05-25T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Grooming Business in Arlington", + "description": "

Established Pet Grooming Shop for Sale

Acquire this profitable pet grooming business with a loyal customer base and a reputation for providing excellent care. The business is located in a high-traffic area and has a well-equipped facility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this business offers excellent growth potential in the pet care industry.

", + "type": "7", + "state": "TX", + "city": "Arlington", + "id": "0fa93702-5c14-4ca1-813b-467dd99359a6", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31290, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable pet grooming business with a loyal customer base and well-equipped facility.", + "created": "2023-07-12T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Event Planning Company in Frisco", + "description": "

Acquire this successful event planning company with a diverse client base and a reputation for creating memorable events. The company specializes in weddings, corporate events, and social gatherings.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a talented team and strong growth potential, this business is a great opportunity in the event industry.

", + "type": "7", + "state": "TX", + "city": "Frisco", + "id": "32e1c5d2-f64c-46a1-a8bb-4de67788b265", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31291, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful event planning company with a diverse client base and talented team.", + "created": "2023-03-18T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Flower Shop in Amarillo", + "description": "

Established Flower Shop for Sale

Take over this well-established flower shop with a loyal customer base and a reputation for providing high-quality floral arrangements. The business is located in a prime area with high visibility and foot traffic.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Amarillo", + "id": "f2e6ef3e-589d-47a7-8ecd-4f27576fc42d", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2008, + "employees": 4, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31292, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established flower shop with a loyal customer base and prime location.", + "created": "2023-09-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant in Beaumont", + "description": "

Acquire this successful franchise restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Beaumont", + "id": "913f0540-8c5d-44a9-8951-0a258b360222", + "price": 450000, + "salesRevenue": 700000, + "leasedLocation": true, + "established": 2015, + "employees": 18, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31293, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful franchise restaurant with a proven business model and strong brand recognition.", + "created": "2023-06-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Veterinary Practice in Waco", + "description": "

Established Veterinary Practice for Sale

Take advantage of this opportunity to acquire a profitable veterinary practice with a loyal client base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced veterinarians and support staff.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the veterinary industry.

", + "type": "11", + "state": "TX", + "city": "Waco", + "id": "7909ccfc-bdad-459c-895d-1319d52d5148", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 600000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31294, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable veterinary practice with a loyal client base and well-equipped facility.", + "created": "2023-04-10T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Machine Shop in Midland", + "description": "

Acquire this successful machine shop with a diverse customer base and a reputation for providing high-quality machining services. The shop has a well-equipped facility and a skilled team of machinists.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Midland", + "id": "9cc31b41-7f56-46e2-b421-a077efed8b34", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2000, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31295, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful machine shop with a diverse customer base and skilled team.", + "created": "2023-08-28T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Family-Owned Restaurant in Odessa", + "description": "

Established Restaurant for Sale

Take over this popular family-owned restaurant with a loyal customer base and a reputation for serving delicious, home-style meals. The restaurant is located in a high-traffic area and has a cozy, welcoming atmosphere.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven concept, this restaurant offers excellent growth potential in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Odessa", + "id": "541500d9-2038-4d15-9434-15944a9043a5", + "price": 350000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 120000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31296, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular family-owned restaurant with a loyal customer base and proven concept.", + "created": "2023-05-15T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Retail Store in Abilene", + "description": "

Acquire this profitable retail store specializing in unique home decor and gifts. Located in a prime shopping district, the store has a loyal customer base and a reputation for offering high-quality, one-of-a-kind items.

The sale includes all inventory, fixtures, and equipment. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this store offers excellent growth potential in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Abilene", + "id": "9949b302-32b4-46ff-b5e7-e2ab9530e655", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 4, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31297, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable retail store with a loyal customer base and prime location.", + "created": "2023-07-03T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Franchise Fitness Center in Round Rock", + "description": "

Successful Fitness Franchise for Sale

Take advantage of this opportunity to acquire an established franchise fitness center with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With a prime location and steady revenue, this business offers excellent growth potential in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Round Rock", + "id": "afa4f939-bdbe-49d0-90e2-ec32836098f5", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31298, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Established franchise fitness center with a proven business model and strong brand recognition.", + "created": "2023-03-20T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dental Practice in McAllen", + "description": "

Acquire this profitable dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "McAllen", + "id": "db13bf21-aa78-4cef-b3a7-c8e83de807e5", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2008, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31299, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-09-08T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Glass Repair Shop in Tyler", + "description": "

Profitable Auto Glass Business for Sale

Take advantage of this opportunity to acquire a successful auto glass repair and replacement shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Tyler", + "id": "c9ecc95f-b492-41dd-91a5-1de615f25c67", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31300, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto glass repair shop with a loyal customer base and experienced technicians.", + "created": "2023-06-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pool Maintenance Company in College Station", + "description": "

Acquire this successful pool maintenance and repair company with a loyal customer base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "College Station", + "id": "d94ee5cc-890a-4ec6-9428-38d0daec63cc", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": false, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31301, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful pool maintenance company with a loyal customer base and well-maintained fleet.", + "created": "2023-04-25T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Wichita Falls", + "description": "

Established Daycare Business for Sale

Take over this profitable daycare center with a great reputation and a loyal customer base. The center is licensed for 50 children and has awell-maintained facility with a spacious outdoor play area.

The sale includes all assets, equipment, and fixtures. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong demand for quality childcare, this business offers excellent growth potential in the education industry.

", + "type": "7", + "state": "TX", + "city": "Wichita Falls", + "id": "c946eec3-ee57-4650-b744-592a015f4f9b", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2008, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31302, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable daycare center with a great reputation and loyal customer base.", + "created": "2023-08-12T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in San Marcos", + "description": "

Acquire this popular coffee shop located in the heart of San Marcos. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "San Marcos", + "id": "5b62e9be-f69c-4cc1-9c69-34cff2ed153e", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31303, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-05-28T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Temple", + "description": "

Profitable Plumbing Business for Sale

Take over this successful plumbing company with a strong reputation and a loyal customer base. The company provides a full range of plumbing services to residential and commercial clients.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With a team of experienced plumbers and steady revenue, this business offers excellent growth potential in the service industry.

", + "type": "2", + "state": "TX", + "city": "Temple", + "id": "58672910-a29c-4208-8ce6-0fea4265be2c", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": false, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31304, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful plumbing company with a strong reputation and experienced team.", + "created": "2023-07-20T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Electrical Contracting Business in New Braunfels", + "description": "

Acquire this profitable electrical contracting company with a diverse client base and a reputation for providing quality services. The company has a team of licensed electricians and a well-equipped fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "New Braunfels", + "id": "c4fd440c-2589-4372-a4ca-e6697dcdc4ae", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2010, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31305, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable electrical contracting company with a diverse client base and licensed team.", + "created": "2023-03-10T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fast Food Restaurant in Lewisville", + "description": "

Profitable Fast Food Franchise for Sale

Take advantage of this opportunity to acquire a successful fast food franchise with a proven business model and strong brand recognition. The franchise is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Lewisville", + "id": "16f244dd-eb6f-46c7-81cd-009905305102", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31306, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fast food franchise with a proven business model and strong brand recognition.", + "created": "2023-09-25T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bakery in Flower Mound", + "description": "

Acquire this popular bakery known for its delicious pastries, cakes, and breads. Located in a charming neighborhood, the bakery has a loyal customer base and a reputation for quality.

The sale includes all assets, equipment, and recipes. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food industry.

", + "type": "13", + "state": "TX", + "city": "Flower Mound", + "id": "9867be81-f7db-4662-be14-d3d02753e53d", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 60000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31307, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established bakery with a loyal customer base and reputation for quality.", + "created": "2023-06-12T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Hair Salon in Georgetown", + "description": "

Successful Hair Salon Franchise for Sale

Take over this profitable hair salon franchise with a proven business model and strong brand recognition. The salon is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "10", + "state": "TX", + "city": "Georgetown", + "id": "d40b690e-f69c-4cf5-abde-d577f12cb2ff", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31308, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable hair salon franchise with a proven business model and strong brand recognition.", + "created": "2023-04-18T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Detailing Shop in Mansfield", + "description": "

Acquire this well-established auto detailing shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced detailers.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Mansfield", + "id": "fe3b3f34-d28f-4e6f-a5f7-219f84d8f3c3", + "price": 220000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 4, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31309, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto detailing shop with a loyal customer base and experienced detailers.", + "created": "2023-08-05T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pizza Restaurant in Cedar Park", + "description": "

Established Pizza Franchise for Sale

Take advantage of this opportunity to acquire a profitable pizza franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Cedar Park", + "id": "e5209c80-e5aa-4163-9f00-d1bfb2d05856", + "price": 350000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2012, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31310, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable pizza franchise with a proven business model and strong brand recognition.", + "created": "2023-05-22T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop in Pflugerville", + "description": "

Acquire this successful ice cream franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Pflugerville", + "id": "6fa772e2-3eb7-4578-8943-456df42dba42", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31311, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful ice cream franchise with a proven business model and strong brand recognition.", + "created": "2023-07-10T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Euless", + "description": "

Profitable Dry Cleaning Shop for Sale

Take over this well-established dry cleaning business with a loyal customer base and a reputation for providing quality services. The shop is located in a convenient area with high visibility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Euless", + "id": "0e7417ec-bf8f-46b3-92e3-e32781647e10", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2005, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31312, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dry cleaning business with a loyal customer base and convenient location.", + "created": "2023-03-25T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Sandwich Shop in Grapevine", + "description": "

Acquire this successful sandwich franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Grapevine", + "id": "673e5c7a-f0a0-4ea7-a805-7a8597d40530", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31313, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable sandwich franchise with a proven business model and strong brand recognition.", + "created": "2023-09-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center in Coppell", + "description": "

Established Fitness Franchise for Sale

Take advantage of this opportunity to acquire a successful fitness franchise with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Coppell", + "id": "4f32341a-2525-4c2b-b5b6-43f7a5f36dd3", + "price": 450000, + "salesRevenue": 700000, + "leasedLocation": true, + "established": 2012, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31314, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fitness franchise with a proven business model and strong brand recognition.", + "created": "2023-06-05T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Juice Bar in Katy", + "description": "

Acquire this successful juice bar franchise with a proven business model and strong brand recognition. The bar is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Katy", + "id": "a9041810-3792-476b-b00e-04f9fcfb18a3", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31315, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable juice bar franchise with a proven business model and strong brand recognition.", + "created": "2023-04-12T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dance Studio in Friendswood", + "description": "

Successful Dance Studio for Sale

Take over this well-established dance studio with a loyal client base and a reputation for providing quality instruction. The studio offers classes in various dance styles for all ages and skill levels.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the education and fitness industries.

", + "type": "7", + "state": "TX", + "city": "Friendswood", + "id": "7e95759b-b580-47a3-bad7-9b19cdf23667", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31316, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dance studio with a loyal client base and quality instruction.", + "created": "2023-08-28T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Frozen Yogurt Shop in Little Elm", + "description": "

Acquire this successful frozen yogurt franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Little Elm", + "id": "c811616b-fc48-41e7-b219-27900744a5d1", + "price": 120000, + "salesRevenue": 250000, + "leasedLocation": true, + "established": 2020, + "employees": 4, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 40000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31317, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable frozen yogurt franchise with a proven business model and strong brand recognition.", + "created": "2023-05-15T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Coffee Shop in The Colony", + "description": "

Established Coffee Shop Franchise for Sale

Take advantage of this opportunity to acquire a successful coffee shop franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "The Colony", + "id": "b98e8195-af29-4df0-9b2d-69315629ce88", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31318, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful coffee shop franchise with a proven business model and strong brand recognition.", + "created": "2023-07-02T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Burger Restaurant in Schertz", + "description": "

Acquire this successful burger franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Schertz", + "id": "76b40a5a-cad7-4fee-b887-3409daa11f22", + "price": 350000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31319, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable burger franchise with a proven business model and strong brand recognition.", + "created": "2023-03-20T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop in Houston", + "description": "

Established Auto Repair Business for Sale

Take over this well-established auto repair shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced mechanics.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "b10a4398-7edd-4a6b-a83a-9e167dcf0286", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31320, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable auto repair shop with a loyal customer base and experienced mechanics.", + "created": "2023-06-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in Austin", + "description": "

Acquire this popular coffee shop located in the heart of Austin. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "89ee0490-6531-442b-804c-3c8132e16841", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2010, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31321, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-08-05T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Fitness Center in Dallas", + "description": "

Established Fitness Franchise for Sale

Take advantage of this opportunity to acquire a successful fitness franchise with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Dallas", + "id": "d7df1691-a8aa-4867-84eb-fbc7d32a548f", + "price": 700000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2008, + "employees": 18, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31322, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fitness franchise with a proven business model and strong brand recognition.", + "created": "2023-05-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dental Practice in San Antonio", + "description": "

Take over this well-established dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "San Antonio", + "id": "c3eec2b7-bee0-4aeb-8b21-c7810ef2efc7", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 2000, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31323, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-07-10T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Business in Fort Worth", + "description": "

Successful Manufacturing Company for Sale

Acquire this profitable manufacturing company specializing in custom metal fabrication. The company has a well-equipped facility, skilled workforce, and a diverse customer base.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Fort Worth", + "id": "eac4b8b7-f062-49da-a7f1-c1e5944ae5fe", + "price": 2500000, + "salesRevenue": 4000000, + "leasedLocation": false, + "established": 1995, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 800000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31324, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable manufacturing business with a well-equipped facility and skilled workforce.", + "created": "2023-03-28T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant in El Paso", + "description": "

Acquire this successful franchise restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "El Paso", + "id": "1d1e451e-ef22-4b0d-8e78-a668d19de88b", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31325, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful franchise restaurant with a proven business model and strong brand recognition.", + "created": "2023-09-15T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company in Plano", + "description": "

Established Landscaping Business for Sale

Take over this successful landscaping company with a loyal client base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of vehicles and equipment.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Plano", + "id": "c0a98019-883a-406b-a6ad-048a2e229a4c", + "price": 900000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2005, + "employees": 25, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31326, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable landscaping company with a loyal client base and well-maintained fleet.", + "created": "2023-06-02T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Body Shop in Lubbock", + "description": "

Acquire this well-established auto body shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Lubbock", + "id": "f28b8b3a-d052-400f-b21c-bac82226403c", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31327, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established auto body shop with a loyal customer base and experienced technicians.", + "created": "2023-04-20T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable HVAC Company in Corpus Christi", + "description": "

Successful HVAC Business for Sale

Acquire this profitable HVAC company with a strong reputation and a loyal customer base. The business has been serving the community for over 20 years and has a team of experienced technicians.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "Corpus Christi", + "id": "f706ae58-43f4-43d4-846e-120a76cd11c9", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": false, + "established": 2000, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31328, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable HVAC company with a strong reputation and experienced technicians.", + "created": "2023-08-08T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Real Estate Brokerage in Irving", + "description": "

Take advantage of this opportunity to acquire a successful real estate brokerage with a proven track record and a team of experienced agents. The brokerage specializes in residential properties and has a strong presence in the local market.

The sale includes all assets, client database, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With strong brand recognition and a loyal client base, this business offers excellent growth potential.

", + "type": "3", + "state": "TX", + "city": "Irving", + "id": "0b96efc7-4d75-42b7-a91e-e241046a4ca1", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31329, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful real estate brokerage with a strong brand and experienced agents.", + "created": "2023-05-25T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Grooming Business in Arlington", + "description": "

Established Pet Grooming Shop for Sale

Acquire this profitable pet grooming business with a loyal customer base and a reputation for providing excellent care. The business is located in a high-traffic area and has a well-equipped facility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this business offers excellent growth potential in the pet care industry.

", + "type": "7", + "state": "TX", + "city": "Arlington", + "id": "3b99b88c-7715-4b3b-998f-bd2df1b8855c", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training", + "cashFlow": 100000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31330, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable pet grooming business with a loyal customer base and well-equipped facility.", + "created": "2023-07-12T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Event Planning Company in Frisco", + "description": "

Acquire this successful event planning company with a diverse client base and a reputation for creating memorable events. The company specializes in weddings, corporate events, and social gatherings.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a talented team and strong growth potential, this business is a great opportunity in the event industry.

", + "type": "7", + "state": "TX", + "city": "Frisco", + "id": "a134feb2-4a91-43bd-8760-7ad759e2867d", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31331, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful event planning company with a diverse client base and talented team.", + "created": "2023-03-18T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Flower Shop in Amarillo", + "description": "

Established Flower Shop for Sale

Take over this well-established flower shop with a loyal customer base and a reputation for providing high-quality floral arrangements. The business is located in a prime area with high visibility and foot traffic.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Amarillo", + "id": "032b3da4-8ebd-4c43-a216-460e807deddc", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2008, + "employees": 5, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31332, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established flower shop with a loyal customer base and prime location.", + "created": "2023-09-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant in Beaumont", + "description": "

Acquire this successful franchise restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Beaumont", + "id": "836d52ab-1a73-4fd1-87da-d24c884f0649", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31333, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful franchise restaurant with a proven business model and strong brand recognition.", + "created": "2023-06-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Veterinary Practice in Waco", + "description": "

Established Veterinary Practice for Sale

Take advantage of this opportunity to acquire a profitable veterinary practice with a loyal client base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced veterinarians and support staff.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the veterinary industry.

", + "type": "11", + "state": "TX", + "city": "Waco", + "id": "98fd18a8-7794-4fbe-b7cd-a09d26251916", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2005, + "employees": 18, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 600000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31334, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable veterinary practice with a loyal client base and well-equipped facility.", + "created": "2023-04-10T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Machine Shop in Midland", + "description": "

Acquire this successful machine shop with a diverse customer base and a reputation for providing high-quality machining services. The shop has a well-equipped facility and a skilled team of machinists.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Midland", + "id": "3e23bde7-a2bb-4782-ba6d-9bd75a2c3760", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2000, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31335, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful machine shop with a diverse customer base and skilled team.", + "created": "2023-08-28T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Family-Owned Restaurant in Odessa", + "description": "

Established Restaurant for Sale

Take over this popular family-owned restaurant with a loyal customer base and a reputation for serving delicious, home-style meals. The restaurant is located in a high-traffic area and has a cozy, welcoming atmosphere.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven concept, this restaurant offers excellent growth potential in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Odessa", + "id": "9c82ce32-8ee0-4b5e-bceb-9c2d5521013e", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 120000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31336, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular family-owned restaurant with a loyal customer base and proven concept.", + "created": "2023-05-15T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Retail Store in Abilene", + "description": "

Acquire this profitable retail store specializing in unique home decor and gifts. Located in a prime shopping district, the store has a loyal customer base and a reputation for offering high-quality, one-of-a-kind items.

The sale includes all inventory, fixtures, and equipment. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this store offers excellent growth potential in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Abilene", + "id": "a90a2937-8e9e-40f2-a5f9-de0bb021fdc3", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31337, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable retail store with a loyal customer base and prime location.", + "created": "2023-07-03T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Franchise Fitness Center in Round Rock", + "description": "

Successful Fitness Franchise for Sale

Take advantage of this opportunity to acquire an established franchise fitness center with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With a prime location and steady revenue, this business offers excellent growth potential in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Round Rock", + "id": "fd410443-da58-4429-a02f-a076a8611e67", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 18, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31338, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Established franchise fitness center with a proven business model and strong brand recognition.", + "created": "2023-03-20T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dental Practice in McAllen", + "description": "

Acquire this profitable dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "McAllen", + "id": "259cd998-298f-4067-ae47-051739e51734", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2008, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31339, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-09-08T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Glass Repair Shop in Tyler", + "description": "

Profitable Auto Glass Business for Sale

Take advantage of this opportunity to acquire a successful auto glass repair and replacement shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Tyler", + "id": "557039b6-16e6-4e7a-82eb-956fbb249837", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31340, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto glass repair shop with a loyal customer base and experienced technicians.", + "created": "2023-06-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pool Maintenance Company in College Station", + "description": "

Acquire this successful pool maintenance and repair company with a loyal customer base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "College Station", + "id": "8c4ccd00-10dc-424d-8dac-3d71c0dc31f1", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": false, + "established": 2010, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31341, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful pool maintenance company with a loyal customer base and well-maintained fleet.", + "created": "2023-04-25T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Wichita Falls", + "description": "

Established Daycare Business for Sale

Take over this profitable daycare center with a great reputation and a loyal customer base. The center is licensed for 50 children and has a well-maintained facility with a spacious outdoor play area.

The sale includes all assets, equipment, and fixtures. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong demand for quality childcare, this business offers excellent growth potential in the education industry.

", + "type": "7", + "state": "TX", + "city": "Wichita Falls", + "id": "b7f0ea2d-d72e-4a65-a0e6-f601b1d6fbb1", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31342, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable daycare center with a great reputation and loyal customer base.", + "created": "2023-08-12T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in San Marcos", + "description": "

Acquire this popular coffee shop located in the heart of San Marcos. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "San Marcos", + "id": "7f3080d5-a91a-4871-8f73-a3d079fc3615", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31343, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-05-28T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Temple", + "description": "

Profitable Plumbing Business for Sale

Take over this successful plumbing company with a strong reputation and a loyal customer base. The company provides a full range of plumbing services to residential and commercial clients.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With a team of experienced plumbers and steady revenue, this business offers excellent growth potential in the service industry.

", + "type": "2", + "state": "TX", + "city": "Temple", + "id": "1f590eb7-592b-4d92-849e-593291edb857", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2005, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31344, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful plumbing company with a strong reputation and experienced team.", + "created": "2023-07-20T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Electrical Contracting Business in New Braunfels", + "description": "

Acquire this profitable electrical contracting company with a diverse client base and a reputation for providing quality services. The company has a team of licensed electricians and a well-equipped fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "New Braunfels", + "id": "ee869623-687a-4709-b5b6-799eea060ae5", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31345, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable electrical contracting company with a diverse client base and licensed team.", + "created": "2023-03-10T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fast Food Restaurant in Lewisville", + "description": "

Profitable Fast Food Franchise for Sale

Take advantage of this opportunity to acquire a successful fast food franchise with a proven business model and strong brand recognition. The franchise is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Lewisville", + "id": "37ba8ee5-3cee-4d4a-8835-690db17d08c1", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31346, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fast food franchise with a proven business model and strong brand recognition.", + "created": "2023-09-25T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bakery in Flower Mound", + "description": "

Acquire this popular bakery known for its delicious pastries, cakes, and breads. Located in a charming neighborhood, the bakery has a loyal customer base and a reputation for quality.

The sale includes all assets, equipment, and recipes. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food industry.

", + "type": "13", + "state": "TX", + "city": "Flower Mound", + "id": "c497f880-38bf-4b17-9721-1c39884c1c8e", + "price": 220000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2012, + "employees": 6, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 60000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31347, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established bakery with a loyal customer base and reputation for quality.", + "created": "2023-06-12T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Hair Salon in Georgetown", + "description": "

Successful Hair Salon Franchise for Sale

Take over this profitable hair salon franchise with a proven business model and strong brand recognition. The salon is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "10", + "state": "TX", + "city": "Georgetown", + "id": "02f81bd5-9248-428a-8593-18b6f39cdadc", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2018, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31348, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable hair salon franchise with a proven business model and strong brand recognition.", + "created": "2023-04-18T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Detailing Shop in Mansfield", + "description": "

Acquire this well-established auto detailing shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced detailers.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Mansfield", + "id": "9aa2126b-f627-4d13-8b9e-07f94d3c68d5", + "price": 280000, + "salesRevenue": 450000, + "leasedLocation": true, + "established": 2015, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31349, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto detailing shop with a loyal customer base and experienced detailers.", + "created": "2023-08-05T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pizza Restaurant in Cedar Park", + "description": "

Established Pizza Franchise for Sale

Take advantage of this opportunity to acquire a profitable pizza franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Cedar Park", + "id": "0920ce5f-4912-4788-955b-82814c2d00a3", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31350, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable pizza franchise with a proven business model and strong brand recognition.", + "created": "2023-05-22T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop in Pflugerville", + "description": "

Acquire this successful ice cream franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Pflugerville", + "id": "c9b94652-6c0f-4097-b754-96003b9ad481", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31351, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful ice cream franchise with a proven business model and strong brand recognition.", + "created": "2023-07-10T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Euless", + "description": "

Profitable Dry Cleaning Shop for Sale

Take over this well-established dry cleaning business with a loyal customer base and a reputation for providing quality services. The shop is located in a convenient area with high visibility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Euless", + "id": "d10b945c-fc17-412d-95f1-2d1968dc7058", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2005, + "employees": 6, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31352, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dry cleaning business with a loyal customer base and convenient location.", + "created": "2023-03-25T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Sandwich Shop in Grapevine", + "description": "

Acquire this successful sandwich franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Grapevine", + "id": "a11ee975-e02e-4f42-93c8-5533d8692f81", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31353, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable sandwich franchise with a proven business model and strong brand recognition.", + "created": "2023-09-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center in Coppell", + "description": "

Established Fitness Franchise for Sale

Take advantage of this opportunity to acquire a successful fitness franchise with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Coppell", + "id": "4e43245d-fae2-4078-8acf-ee4c0d8127c9", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31354, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful fitness franchise with a proven business model and strong brand recognition.", + "created": "2023-06-05T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Juice Bar in Katy", + "description": "

Acquire this successful juice bar franchise with a proven business model and strong brand recognition. The bar is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Katy", + "id": "16eaddcf-f05f-415c-b75f-c54d52fd29b0", + "price": 220000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31355, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable juice bar franchise with a proven business model and strong brand recognition.", + "created": "2023-04-12T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dance Studio in Friendswood", + "description": "

Successful Dance Studio for Sale

Take over this well-established dance studio with a loyal client base and a reputation for providing quality instruction. The studio offers classes in various dance styles for all ages and skill levels.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the education and fitness industries.

", + "type": "7", + "state": "TX", + "city": "Friendswood", + "id": "bf7fdcba-f40f-4790-806c-b8a907927ec0", + "price": 280000, + "salesRevenue": 450000, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31356, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dance studio with a loyal client base and quality instruction.", + "created": "2023-08-28T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Frozen Yogurt Shop in Little Elm", + "description": "

Acquire this successful frozen yogurt franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Little Elm", + "id": "78029bd0-b998-4e22-bdd4-60269e10b90a", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2020, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 40000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31357, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable frozen yogurt franchise with a proven business model and strong brand recognition.", + "created": "2023-05-15T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Coffee Shop in The Colony", + "description": "

Established Coffee Shop Franchise for Sale

Take advantage of this opportunity to acquire a successful coffee shop franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "The Colony", + "id": "477cd339-e02b-4877-a6a2-a67ef83f6ea5", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2018, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31358, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful coffee shop franchise with a proven business model and strong brand recognition.", + "created": "2023-07-02T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Burger Restaurant in Schertz", + "description": "

Acquire this successful burger franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Schertz", + "id": "314aedba-bac0-449a-ba93-34c5998d8e1b", + "price": 450000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2015, + "employees": 18, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31359, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable burger franchise with a proven business model and strong brand recognition.", + "created": "2023-03-20T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Nail Salon in Houston", + "description": "

Established Nail Salon for Sale

Take over this well-established nail salon with a loyal customer base and a reputation for providing quality services. The salon is located in a high-traffic area and has a well-equipped facility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "7", + "state": "TX", + "city": "Houston", + "id": "b971c773-5a23-4e0e-b2c4-21fbccf01369", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2015, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 60000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31360, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable nail salon with a loyal customer base and well-equipped facility.", + "created": "2023-06-10T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Smoothie Shop in Austin", + "description": "

Acquire this successful smoothie franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Austin", + "id": "993523be-a2b0-43eb-91af-c02d753f565e", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31361, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful smoothie franchise with a proven business model and strong brand recognition.", + "created": "2023-08-22T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Sports Bar in Dallas", + "description": "

Profitable Sports Bar for Sale

Take over this well-established sports bar with a loyal customer base and a reputation for providing great food, drinks, and entertainment. The bar is located in a high-traffic area and has a spacious interior with multiple TVs and a large outdoor patio.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food and beverage industry.

", + "type": "13", + "state": "TX", + "city": "Dallas", + "id": "dad6dfbb-cb08-4e66-b8b8-af415a65cd11", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31362, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established sports bar with a loyal customer base and great location.", + "created": "2023-05-05T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Car Wash in San Antonio", + "description": "

Acquire this profitable car wash with a prime location and a reputation for providing quality services. The car wash has a well-maintained facility with modern equipment and a loyal customer base.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "San Antonio", + "id": "0bbebb09-28b7-4273-bf9e-853ad7aa2fcb", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 2005, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31363, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable car wash with a prime location and well-maintained facility.", + "created": "2023-07-18T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Tutoring Center in Fort Worth", + "description": "

Established Tutoring Franchise for Sale

Take advantage of this opportunity to acquire a successful tutoring franchise with a proven business model and strong brand recognition. The center has a diverse student base and offers tutoring services for various subjects and age groups.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the education industry.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "2cd8a1ee-74bf-4fd6-8bf9-42274be25a1f", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31364, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful tutoring franchise with a proven business model and strong brand recognition.", + "created": "2023-03-12T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Juice Bar in El Paso", + "description": "

Acquire this successful juice bar franchise with a proven business model and strong brand recognition. The bar is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "El Paso", + "id": "c30c742a-0bc7-4999-abda-7b28e0f70cf9", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31365, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable juice bar franchise with a proven business model and strong brand recognition.", + "created": "2023-09-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Clothing Boutique in Plano", + "description": "

Profitable Clothing Boutique for Sale

Take over this well-established clothing boutique with a loyal customer base and a reputation for providing unique and stylish clothing options. The boutique is located in a high-traffic shopping district and has a beautifully designed interior.

The sale includes all assets, inventory, and fixtures. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Plano", + "id": "71b08b3d-1c95-49a5-a8d1-c1c392194b04", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2012, + "employees": 4, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 50000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31366, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established clothing boutique with a loyal customer base and prime location.", + "created": "2023-06-25T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Gym in Lubbock", + "description": "

Acquire this successful gym franchise with a proven business model and strong brand recognition. The gym has a diverse membership base and offers a wide range of fitness equipment and classes.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "10", + "state": "TX", + "city": "Lubbock", + "id": "c0381d5a-2408-4aa3-a0c5-7c31f913105f", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31367, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable gym franchise with a proven business model and strong brand recognition.", + "created": "2023-04-08T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Pizza Restaurant in Corpus Christi", + "description": "

Established Pizza Franchise for Sale

Take advantage of this opportunity to acquire a successful pizza franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Corpus Christi", + "id": "85c7a557-7753-4346-913b-8a4fe34b19de", + "price": 450000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31368, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Successful pizza franchise with a proven business model and strong brand recognition.", + "created": "2023-08-15T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Bakery in Irving", + "description": "

Acquire this successful bakery franchise with a proven business model and strong brand recognition. The bakery is known for its delicious baked goods, cakes, and pastries, and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Irving", + "id": "91c76eb4-a32d-4708-8bc7-55f142a219f7", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31369, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable bakery franchise with a proven business model and strong brand recognition.", + "created": "2023-05-30T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Sandwich Shop in Arlington", + "description": "

Profitable Sandwich Franchise for Sale

Take over this successful sandwich franchise with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Arlington", + "id": "5a9dd14a-f489-410c-8847-f4c921496b3a", + "price": 280000, + "salesRevenue": 450000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31370, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-established sandwich franchise in a prime location with steady revenue.", + "created": "2023-07-22T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop in Frisco", + "description": "

Acquire this successful auto repair shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced mechanics.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Frisco", + "id": "0b7f3d88-7e9f-4562-8810-c4b62cc20deb", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2008, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31371, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable auto repair shop with experienced staff and modern equipment.", + "created": "2023-03-05T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Flower Shop in Amarillo", + "description": "

Profitable Flower Shop for Sale

Take over this well-established flower shop with a loyal customer base and a reputation for providing high-quality floral arrangements. The business is located in a prime area with high visibility and foot traffic.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Amarillo", + "id": "126130a6-5f5e-4ac4-9355-46918466f92f", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2010, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31372, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established flower shop in a prime location with a solid reputation.", + "created": "2023-09-15T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Hair Salon in Beaumont", + "description": "

Acquire this successful hair salon franchise with a proven business model and strong brand recognition. The salon is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "10", + "state": "TX", + "city": "Beaumont", + "id": "6e9d9501-e732-4b6a-937f-e053749e8517", + "price": 320000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2012, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31373, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable hair salon franchise in a high-traffic area with a dedicated customer base.", + "created": "2023-06-28T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pet Store in Waco", + "description": "

Established Pet Store Franchise for Sale

Take advantage of this opportunity to acquire a successful pet store franchise with a proven business model and strong brand recognition. The store has a diverse product offering and a loyal customer base.

The sale includes all assets, inventory, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the pet industry.

", + "type": "10", + "state": "TX", + "city": "Waco", + "id": "2fe2667c-2bde-469c-871c-9f8f35301ddd", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31374, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-established pet store franchise with a wide product selection and loyal customers.", + "created": "2023-04-02T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dance Studio in Midland", + "description": "

Acquire this well-established dance studio with a loyal client base and a reputation for providing quality instruction. The studio offers classes in various dance styles for all ages and skill levels.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the education and fitness industries.

", + "type": "7", + "state": "TX", + "city": "Midland", + "id": "52ad3fcd-3efa-474e-9774-d5d40791f11d", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2008, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31375, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular dance studio with experienced instructors and a strong reputation in the community.", + "created": "2023-08-20T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Ice Cream Shop in Odessa", + "description": "

Successful Ice Cream Franchise for Sale

Take over this successful ice cream franchise with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Odessa", + "id": "68da8a56-52e3-4b98-9b5d-7bacb30e50a8", + "price": 220000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31376, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving ice cream franchise in a high-traffic location with strong brand recognition.", + "created": "2023-05-12T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Massage Spa in Abilene", + "description": "

Acquire this successful massage spa franchise with a proven business model and strong brand recognition. The spa is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Abilene", + "id": "0112bf81-3b1c-467e-a37c-5716f351eab9", + "price": 380000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31377, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Popular massage spa franchise with a dedicated client base and prime location.", + "created": "2023-07-05T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Mexican Restaurant in Round Rock", + "description": "

Established Mexican Restaurant Franchise for Sale

Take advantage of this opportunity to acquire a successful Mexican restaurant franchise with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Round Rock", + "id": "8824b0ff-5289-4351-9118-9d21ad0bd2ae", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31378, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Highly successful Mexican restaurant franchise with a prime location and consistent revenue.", + "created": "2023-03-18T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bed and Breakfast in McAllen", + "description": "

Acquire this charming bed and breakfast with a loyal customer base and a reputation for providing exceptional service. The property features beautifully decorated guest rooms, a spacious dining area, and a lovely outdoor garden.

The sale includes all assets, furniture, and a well-maintained property. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the hospitality industry.

", + "type": "3", + "state": "TX", + "city": "McAllen", + "id": "5c7f8300-90fe-4f41-b83e-930e17d8f6fd", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2000, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31379, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Charming bed and breakfast with a strong reputation and loyal customer base.", + "created": "2023-09-10T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Dessert Shop in Tyler", + "description": "

Successful Dessert Franchise for Sale

Take over this successful dessert franchise with a proven business model and strong brand recognition. The shop is known for its delicious desserts, cakes, and pastries, and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "Tyler", + "id": "467245a3-e426-4955-983e-67203ac18024", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31380, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Popular dessert franchise with a prime location and consistent revenue stream.", + "created": "2023-06-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Car Dealership in College Station", + "description": "

Acquire this well-established car dealership with a loyal customer base and a reputation for providing quality vehicles and excellent service. The dealership features a wide selection of new and used cars, a well-equipped service center, and a professional sales team.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "College Station", + "id": "69007748-bde4-472c-95b6-9154779c2364", + "price": 2500000, + "salesRevenue": 4000000, + "leasedLocation": false, + "established": 1998, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 800000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31381, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable car dealership with a wide selection of vehicles and excellent service reputation.", + "created": "2023-04-28T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Yoga Studio in Wichita Falls", + "description": "

Established Yoga Studio Franchise for Sale

Take advantage of this opportunity to acquire a successful yoga studio franchise with a proven business model and strong brand recognition. The studio has a diverse client base and offers a variety of yoga classes for all skill levels.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and fitness industry.

", + "type": "10", + "state": "TX", + "city": "Wichita Falls", + "id": "669f5649-8734-4f14-9947-f7cbe60fe90d", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31382, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving yoga studio franchise with a loyal client base and prime location.", + "created": "2023-08-08T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Donut Shop in San Marcos", + "description": "

Acquire this successful donut franchise with a proven business model and strong brand recognition. The shop is known for its delicious donuts, pastries, and coffee, and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "10", + "state": "TX", + "city": "San Marcos", + "id": "151ae894-7d05-476c-a282-217c01c99bf7", + "price": 280000, + "salesRevenue": 450000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31383, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Popular donut franchise with a prime location and consistent revenue stream.", + "created": "2023-05-20T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Smoothie Bar in Temple", + "description": "

Successful Smoothie Bar Franchise for Sale

Take over this successful smoothie bar franchise with a proven business model and strong brand recognition. The bar is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Temple", + "id": "cba82043-bbed-45cc-9898-d5c9a8076ad1", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31384, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving smoothie bar franchise with a dedicated customer base and strong brand recognition.", + "created": "2023-07-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bridal Boutique in New Braunfels", + "description": "

Acquire this well-established bridal boutique with a loyal customer base and a reputation for providing high-quality wedding dresses and exceptional service. The boutique features a wide selection of designer gowns, accessories, and a beautifully decorated showroom.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "New Braunfels", + "id": "8edae844-0cd2-4d46-87f7-2d12e48a42be", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2010, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31385, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Charming bridal boutique with a wide selection of designer gowns and a loyal customer base.", + "created": "2023-03-02T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Tanning Salon in Lewisville", + "description": "

Established Tanning Salon Franchise for Sale

Take advantage of this opportunity to acquire a successful tanning salon franchise with a proven business model and strong brand recognition. The salon has a diverse client base and offers a variety of tanning services and products.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the beauty and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Lewisville", + "id": "226ed553-9a8d-44cb-9b4c-5a4aabfcc80d", + "price": 220000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31386, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving tanning salon franchise with a loyal customer base and prime location.", + "created": "2023-09-28T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Waxing Studio in Flower Mound", + "description": "

Acquire this successful waxing studio franchise with a proven business model and strong brand recognition. The studio is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "10", + "state": "TX", + "city": "Flower Mound", + "id": "2ca4cca6-96b7-4a11-be12-32549e57314b", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 4, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 40000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31387, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Popular waxing studio franchise with a dedicated client base and strong brand recognition.", + "created": "2023-06-05T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Home Healthcare Agency in Georgetown", + "description": "

Established Home Healthcare Franchise for Sale

Take over this successful home healthcare franchise with a proven business model and strong brand recognition. The agency provides a range of in-home care services for seniors and individuals with disabilities.

The sale includes all assets, contracts, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With a growing demand for home healthcare services, this business offers excellent growth potential in the healthcare industry.

", + "type": "10", + "state": "TX", + "city": "Georgetown", + "id": "2d1b5d65-73c4-4554-8d78-0676c225d9fb", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": false, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31388, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving home healthcare franchise with a growing client base and strong community presence.", + "created": "2023-04-15T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Art Gallery in Mansfield", + "description": "

Acquire this well-established art gallery with a loyal customer base and a reputation for showcasing exceptional local and regional artists. The gallery features a beautifully designed exhibition space, a framing service, and a gift shop.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the art and retail industries.

", + "type": "5", + "state": "TX", + "city": "Mansfield", + "id": "71978589-1ee9-457a-9b5d-2251ed98a9cd", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2008, + "employees": 3, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31389, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Charming art gallery with a strong reputation and loyal customer base in the local arts community.", + "created": "2023-08-08T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pilates Studio in Cedar Park", + "description": "

Successful Pilates Studio Franchise for Sale

Take over this successful Pilates studio franchise with a proven business model and strong brand recognition. The studio has a diverse client base and offers a variety of Pilates classes and private training sessions.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and fitness industry.

", + "type": "10", + "state": "TX", + "city": "Cedar Park", + "id": "ee781a73-5112-40a8-bfc7-3876153c9e69", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31390, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving Pilates studio franchise with a loyal client base and prime location.", + "created": "2023-05-25T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Photography Studio in Pflugerville", + "description": "

Acquire this well-established photography studio with a loyal customer base and a reputation for providing exceptional service and high-quality photography. The studio specializes in family, wedding, and corporate photography, and features a well-equipped studio space and a beautifully designed gallery.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the photography industry.

", + "type": "8", + "state": "TX", + "city": "Pflugerville", + "id": "14b4672a-5d93-4c32-ba3e-ab90d5da7ae5", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2010, + "employees": 2, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31391, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular photography studio with a strong reputation and a diverse portfolio of clients.", + "created": "2023-07-15T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Massage Therapy Clinic in Euless", + "description": "

Established Massage Therapy Franchise for Sale

Take over this successful massage therapy franchise with a proven business model and strong brand recognition. The clinic has a diverse client base and offers a variety of massage services, including Swedish, deep tissue, and hot stone massages.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Euless", + "id": "47fff8b4-d88f-4f49-ab19-cfc2d4022b74", + "price": 280000, + "salesRevenue": 450000, + "leasedLocation": true, + "established": 2012, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31392, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving massage therapy franchise with a loyal client base and a prime location.", + "created": "2023-03-28T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Music School in Grapevine", + "description": "

Acquire this well-established music school with a loyal student base and a reputation for providing exceptional music education. The school offers lessons for various instruments, including piano, guitar, violin, and voice, and features a well-equipped facility with multiple teaching rooms.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the education industry.

", + "type": "7", + "state": "TX", + "city": "Grapevine", + "id": "b35832ca-4640-4930-a182-5c1fd918eb9c", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2008, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31393, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular music school with experienced instructors and a strong reputation in the community.", + "created": "2023-09-10T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Supplement Store in Coppell", + "description": "

Successful Supplement Store Franchise for Sale

Take over this successful supplement store franchise with a proven business model and strong brand recognition. The store has a diverse product offering and a loyal customer base.

The sale includes all assets, inventory, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "10", + "state": "TX", + "city": "Coppell", + "id": "082129a7-a7a5-4422-b8b8-e389d84415f2", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 5, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31394, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving supplement store franchise with a wide product selection and a dedicated customer base.", + "created": "2023-06-08T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pet Grooming Salon in Katy", + "description": "

Acquire this well-established pet grooming salon with a loyal customer base and a reputation for providing exceptional care for pets. The salon features a well-equipped facility, a wide range of grooming services, and a dedicated team of experienced groomers.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the pet care industry.

", + "type": "7", + "state": "TX", + "city": "Katy", + "id": "5a7bcf3b-120f-4000-8b62-818f721f613d", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2010, + "employees": 4, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 50000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31395, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular pet grooming salon with a dedicated client base and a team of skilled groomers.", + "created": "2023-04-18T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Dry Cleaning Service in Friendswood", + "description": "

Established Dry Cleaning Franchise for Sale

Take over this successful dry cleaning franchise with a proven business model and strong brand recognition. The service has a diverse client base and offers a range of dry cleaning and laundry services.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the service industry.

", + "type": "10", + "state": "TX", + "city": "Friendswood", + "id": "1b6b0ee3-c4d4-4fbd-84c8-d6cac300c925", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31396, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving dry cleaning franchise with a loyal customer base and a convenient location.", + "created": "2023-08-25T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Catering Company in Little Elm", + "description": "

Acquire this well-established catering company with a loyal customer base and a reputation for providing exceptional food and service. The company specializes in corporate events, weddings, and social gatherings, and features a well-equipped commercial kitchen and a talented team of chefs and servers.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Little Elm", + "id": "6e51fb67-4b26-4556-849b-63f2b3b8ba58", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": false, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31397, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Popular catering company with a strong reputation for quality food and exceptional service.", + "created": "2023-05-10T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Vape Shop in The Colony", + "description": "

Successful Vape Shop Franchise for Sale

Take over this successful vape shop franchise with a proven business model and strong brand recognition. The shop has a diverse product offering and a loyal customer base.

The sale includes all assets, inventory, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "10", + "state": "TX", + "city": "The Colony", + "id": "1fd5402d-68c2-4b77-b967-4ce674531757", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2018, + "employees": 3, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31398, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving vape shop franchise with a wide product selection and a prime location.", + "created": "2023-07-05T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Furniture Store in Schertz", + "description": "

Acquire this well-established furniture store with a loyal customer base and a reputation for providing high-quality furniture and exceptional customer service. The store features a wide selection of home furnishings, including living room, dining room, and bedroom furniture, and a beautifully designed showroom.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Schertz", + "id": "c4199291-632a-4c26-8c9f-3dac8460a6ba", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2000, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31399, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular furniture store with a wide selection of high-quality home furnishings and a loyal customer base.", + "created": "2023-03-22T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Wine Bar in Conroe", + "description": "

Successful Wine Bar Franchise for Sale

Take over this successful wine bar franchise with a proven business model and strong brand recognition. The bar features a wide selection of wines, craft beers, and small plates, and has a loyal customer base.

The sale includes all assets, inventory, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food and beverage industry.

", + "type": "10", + "state": "TX", + "city": "Conroe", + "id": "ef6bdada-8601-438b-aa89-5a6f044febf5", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31400, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving wine bar franchise with a wide selection of wines and a prime location.", + "created": "2023-06-15T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Consignment Shop in New Braunfels", + "description": "

Acquire this well-established consignment shop with a loyal customer base and a reputation for offering high-quality, gently used clothing and accessories. The shop features a beautifully designed retail space and a well-organized inventory system.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "New Braunfels", + "id": "426b0ce4-1d97-4b79-a73a-94b2d423bd82", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2010, + "employees": 4, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 50000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31401, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular consignment shop with a loyal customer base and a well-organized inventory system.", + "created": "2023-08-28T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Escape Room in Cypress", + "description": "

Successful Escape Room Franchise for Sale

Take over this successful escape room franchise with a proven business model and strong brand recognition. The escape room features multiple themed rooms and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the entertainment industry.

", + "type": "10", + "state": "TX", + "city": "Cypress", + "id": "aa364962-06b3-42c6-aa3c-ac34bd285bbe", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31402, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving escape room franchise with multiple themed rooms and a dedicated customer base.", + "created": "2023-05-05T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Comic Book Store in Leander", + "description": "

Acquire this well-established comic book store with a loyal customer base and a reputation for offering a wide selection of comics, graphic novels, and collectibles. The store features a well-organized retail space and a knowledgeable staff.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Leander", + "id": "2c4baa50-71f6-4c35-b977-7932e3bd1033", + "price": 180000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2005, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31403, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular comic book store with a wide selection of comics and collectibles and a loyal customer base.", + "created": "2023-07-18T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Bubble Tea Shop in Pearland", + "description": "

Successful Bubble Tea Franchise for Sale

Take over this successful bubble tea franchise with a proven business model and strong brand recognition. The shop features a wide variety of bubble tea flavors and toppings, and has a loyal customer base.

The sale includes all assets, inventory, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food and beverage industry.

", + "type": "10", + "state": "TX", + "city": "Pearland", + "id": "09b1533f-cedd-4030-8421-62b4528a3414", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2020, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31404, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving bubble tea franchise with a wide variety of flavors and a dedicated customer base.", + "created": "2023-03-10T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Music Venue in San Marcos", + "description": "

Acquire this well-established music venue with a loyal customer base and a reputation for hosting top-notch live music performances. The venue features a spacious stage, professional sound and lighting equipment, and a full-service bar.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the entertainment industry.

", + "type": "7", + "state": "TX", + "city": "San Marcos", + "id": "a6557587-ea3b-4bb0-afea-062359ca535d", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2000, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31405, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular music venue with a reputation for hosting top-notch live music performances and a loyal customer base.", + "created": "2023-09-22T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Frozen Yogurt Shop in Victoria", + "description": "

Successful Frozen Yogurt Franchise for Sale

Take over this successful frozen yogurt franchise with a proven business model and strong brand recognition. The shop features a wide variety of frozen yogurt flavors and toppings, and has a loyal customer base.

The sale includes all assets, inventory, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the food and beverage industry.

", + "type": "10", + "state": "TX", + "city": "Victoria", + "id": "92093b67-cf08-4496-85fc-585569696e59", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 50000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31406, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Thriving frozen yogurt franchise with a wide variety of flavors and a dedicated customer base.", + "created": "2023-06-05T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Craft Beer Bar in Wylie", + "description": "

Acquire this well-established craft beer bar with a loyal customer base and a reputation for offering a wide selection of local and regional craft beers. The bar features a cozy atmosphere, knowledgeable staff, and a popular monthly beer tasting event.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food and beverage industry.

", + "type": "13", + "state": "TX", + "city": "Wylie", + "id": "6c3bad70-2ba8-40a0-b6c0-21f3beb778f4", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31407, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular craft beer bar with a wide selection of local and regional beers and a loyal customer base.", + "created": "2023-04-28T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Painting Service in Port Arthur", + "description": "

Successful Painting Service Franchise for Sale

Take over this successful painting service franchise with a proven business model and strong brand recognition. The service provides residential and commercial painting services and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the home services industry.

", + "type": "10", + "state": "TX", + "city": "Port Arthur", + "id": "14ed7f0c-edb3-4828-b5c1-1f9a12141045", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": false, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31408, + "realEstateIncluded": true, + "franchiseResale": true, + "draft": false, + "internals": "Thriving painting service franchise with a loyal customer base and a team of skilled painters.", + "created": "2023-08-10T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Vintage Clothing Store in Burleson", + "description": "

Acquire this well-established vintage clothing store with a loyal customer base and a reputation for offering unique, high-quality vintage clothing and accessories. The store features a beautifully designed retail space and a carefully curated inventory.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Burleson", + "id": "d78b9148-2554-4f33-b5b2-3fefdd343b7d", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2012, + "employees": 4, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 50000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31409, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular vintage clothing store with a carefully curated inventory and a loyal customer base.", + "created": "2023-05-22T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pest Control Service in Nederland", + "description": "

Successful Pest Control Franchise for Sale

Take over this successful pest control franchise with a proven business model and strong brand recognition. The service provides residential and commercial pest control services and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the home services industry.

", + "type": "10", + "state": "TX", + "city": "Nederland", + "id": "31c3359d-ea04-46dc-b2d7-90c27c1ac27c", + "price": 280000, + "salesRevenue": 450000, + "leasedLocation": false, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31410, + "realEstateIncluded": true, + "franchiseResale": true, + "draft": false, + "internals": "Thriving pest control franchise with a loyal customer base and a team of experienced technicians.", + "created": "2023-07-08T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pottery Studio in Texarkana", + "description": "

Acquire this well-established pottery studio with a loyal customer base and a reputation for offering high-quality pottery classes and workshops. The studio features a spacious workspace, professional equipment, and a retail area for selling handcrafted pottery.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the art and education industries.

", + "type": "7", + "state": "TX", + "city": "Texarkana", + "id": "03dbcfe8-6803-4fa3-bc73-6c71bcaa5ca8", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2010, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31411, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular pottery studio with a loyal customer base and a reputation for offering high-quality classes and workshops.", + "created": "2023-03-25T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Flooring Service in Richmond", + "description": "

Successful Flooring Service Franchise for Sale

Take over this successful flooring service franchise with a proven business model and strong brand recognition. The service provides residential and commercial flooring installation and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the home services industry.

", + "type": "10", + "state": "TX", + "city": "Richmond", + "id": "6aabc37a-282e-4aea-83d0-99ff398b1476", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": false, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31412, + "realEstateIncluded": true, + "franchiseResale": true, + "draft": false, + "internals": "Thriving flooring service franchise with a loyal customer base and a team of skilled installers.", + "created": "2023-09-12T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Skate Shop in Baytown", + "description": "

Acquire this well-established skate shop with a loyal customer base and a reputation for offering a wide selection of skateboards, accessories, and apparel. The shop features a well-organized retail space and a popular skate park adjacent to the store.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail and entertainment industries.

", + "type": "5", + "state": "TX", + "city": "Baytown", + "id": "e3cb667f-7c86-4909-bb4f-24acdf3f19a0", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2008, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31413, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular skate shop with a wide selection of skateboards and accessories and a loyal customer base.", + "created": "2023-06-28T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Window Cleaning Service in Rowlett", + "description": "

Successful Window Cleaning Franchise for Sale

Take over this successful window cleaning franchise with a proven business model and strong brand recognition. The service provides residential and commercial window cleaning services and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the home services industry.

", + "type": "10", + "state": "TX", + "city": "Rowlett", + "id": "9604f77a-c026-4e57-ba8f-357c5e9a4375", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": false, + "established": 2020, + "employees": 5, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 50000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31414, + "realEstateIncluded": true, + "franchiseResale": true, + "draft": false, + "internals": "Thriving window cleaning franchise with a loyal customer base and a team of experienced cleaners.", + "created": "2023-04-05T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Candle Shop in Copperas Cove", + "description": "

Acquire this well-established candle shop with a loyal customer base and a reputation for offering a wide variety of high-quality, handcrafted candles and home fragrances. The shop features a beautifully designed retail space and a popular candle-making workshop area.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Copperas Cove", + "id": "44651025-d9b6-47f6-95ff-a1756f5ce8f5", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2015, + "employees": 4, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 50000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31415, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular candle shop with a wide variety of handcrafted candles and a loyal customer base.", + "created": "2023-08-20T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Senior Care Service in Hutto", + "description": "

Successful Senior Care Franchise for Sale

Take over this successful senior care franchise with a proven business model and strong brand recognition. The service provides in-home care for seniors and has a loyal customer base.

The sale includes all assets, contracts, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With a growing demand for senior care services, this business offers excellent growth potential in the healthcare industry.

", + "type": "10", + "state": "TX", + "city": "Hutto", + "id": "a3129871-20bb-4208-addd-1ab4acae6b1d", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": false, + "established": 2018, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31416, + "realEstateIncluded": true, + "franchiseResale": true, + "draft": false, + "internals": "Thriving senior care franchise with a growing client base and a team of compassionate caregivers.", + "created": "2023-05-15T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Board Game Cafe in Granbury", + "description": "

Acquire this well-established board game cafe with a loyal customer base and a reputation for offering a wide selection of board games and a cozy atmosphere. The cafe features a spacious gaming area, a full-service kitchen, and a popular event space for gaming tournaments and birthday parties.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food and entertainment industries.

", + "type": "13", + "state": "TX", + "city": "Granbury", + "id": "ede34aa0-36de-457d-8b8f-aac181ce070f", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31417, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular board game cafe with a wide selection of games and a loyal customer base.", + "created": "2023-07-02T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Franchise Pressure Washing Service in Saginaw", + "description": "

Successful Pressure Washing Franchise for Sale

Take over this successful pressure washing franchise with a proven business model and strong brand recognition. The service provides residential and commercial pressure washing services and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. The franchisor provides comprehensive training and ongoing support. With steady revenue and growth potential, this business is a great opportunity in the home services industry.

", + "type": "10", + "state": "TX", + "city": "Saginaw", + "id": "c1cad718-d11d-44ef-a2eb-41d3a080d1c9", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": false, + "established": 2020, + "employees": 5, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor provides comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31418, + "realEstateIncluded": true, + "franchiseResale": true, + "draft": false, + "internals": "Thriving pressure washing franchise with a loyal customer base and a team of experienced technicians.", + "created": "2023-03-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Chocolate Shop in Benbrook", + "description": "

Acquire this well-established chocolate shop with a loyal customer base and a reputation for offering a wide variety of handcrafted chocolates and confections. The shop features a beautifully designed retail space and a popular chocolate-making workshop area.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food and retail industries.

", + "type": "13", + "state": "TX", + "city": "Benbrook", + "id": "ec5fd3df-c88c-4b86-a8d3-b1ba37bcbdc0", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2010, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31419, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular chocolate shop with a wide variety of handcrafted chocolates and a loyal customer base.", + "created": "2023-09-05T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop in Houston", + "description": "

Established Auto Repair Business for Sale

Take over this well-established auto repair shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced mechanics.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "ca9f2bea-7bdb-43e9-ba4f-8f8d3cec339d", + "price": 850000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31420, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable auto repair shop with a loyal customer base and experienced mechanics.", + "created": "2023-06-20T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in Austin", + "description": "

Acquire this popular coffee shop located in the heart of Austin. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "a01657f1-64ab-416c-9e07-da20ecbaac42", + "price": 400000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31421, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-08-08T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dental Practice in Dallas", + "description": "

Profitable Dental Practice for Sale

Take over this well-established dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "Dallas", + "id": "1be6abee-6378-4dfb-a588-ace005facac8", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2000, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31422, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-05-25T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Business in San Antonio", + "description": "

Acquire this profitable manufacturing company specializing in custom metal fabrication. The company has a well-equipped facility, skilled workforce, and a diverse customer base.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "San Antonio", + "id": "3f754b09-674a-43af-947e-6580e854f6f0", + "price": 2200000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 1998, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 700000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31423, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable manufacturing business with a well-equipped facility and skilled workforce.", + "created": "2023-07-12T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Restaurant in Fort Worth", + "description": "

Popular Restaurant for Sale in Prime Location

Take advantage of this opportunity to acquire a thriving restaurant in the heart of Fort Worth. With a loyal customer base and a reputation for serving delicious food, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Don't miss this chance to own a profitable restaurant in a prime location.

", + "type": "13", + "state": "TX", + "city": "Fort Worth", + "id": "5a2282e4-6e5e-45c2-abea-b4fc39471258", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2008, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31424, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful restaurant in a prime location with a loyal customer base.", + "created": "2023-03-28T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company in El Paso", + "description": "

Take over this successful landscaping company with a loyal client base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of vehicles and equipment.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "El Paso", + "id": "424bf0a6-3a67-4266-a248-34785986cd2b", + "price": 750000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31425, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable landscaping company with a loyal client base and well-maintained fleet.", + "created": "2023-09-15T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Body Shop in Plano", + "description": "

Profitable Auto Body Shop for Sale

Acquire this well-established auto body shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Plano", + "id": "1b2eb832-cfe7-4e79-ac60-1d57d34f9a80", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31426, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established auto body shop with a loyal customer base and experienced technicians.", + "created": "2023-06-02T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful HVAC Company in Lubbock", + "description": "

Acquire this profitable HVAC company with a strong reputation and a loyal customer base. The business has been serving the community for over 20 years and has a team of experienced technicians.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "Lubbock", + "id": "4552ec3b-8793-49b0-be64-5b18c29fa9b8", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2000, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31427, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable HVAC company with a strong reputation and experienced technicians.", + "created": "2023-04-20T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Real Estate Brokerage in Corpus Christi", + "description": "

Successful Real Estate Brokerage for Sale

Take advantage of this opportunity to acquire a successful real estate brokerage with a proven track record and a team of experienced agents. The brokerage specializes in residential properties and has a strong presence in the local market.

The sale includes all assets, client database, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With strong brand recognition and a loyal client base, this business offers excellent growth potential.

", + "type": "3", + "state": "TX", + "city": "Corpus Christi", + "id": "4914e02f-2850-47d6-86af-e948fdcdbeb7", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31428, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful real estate brokerage with a strong brand and experienced agents.", + "created": "2023-08-08T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pet Grooming Business in Irving", + "description": "

Acquire this profitable pet grooming business with a loyal customer base and a reputation for providing excellent care. The business is located in a high-traffic area and has a well-equipped facility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this business offers excellent growth potential in the pet care industry.

", + "type": "7", + "state": "TX", + "city": "Irving", + "id": "bdbf6499-583f-4dce-b150-bb1ec965cef4", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31429, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable pet grooming business with a loyal customer base and well-equipped facility.", + "created": "2023-05-25T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Event Planning Company in Arlington", + "description": "

Profitable Event Planning Business for Sale

Acquire this successful event planning company with a diverse client base and a reputation for creating memorable events. The company specializes in weddings, corporate events, and social gatherings.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With a talented team and strong growth potential, this business is a great opportunity in the event industry.

", + "type": "7", + "state": "TX", + "city": "Arlington", + "id": "fbeeb250-d387-4280-a0d0-b082ac22fc90", + "price": 450000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31430, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful event planning company with a diverse client base and talented team.", + "created": "2023-07-12T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Flower Shop in Frisco", + "description": "

Take over this well-established flower shop with a loyal customer base and a reputation for providing high-quality floral arrangements. The business is located in a prime area with high visibility and foot traffic.

The sale includes all assets, inventory, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Frisco", + "id": "31bfe4a1-5bac-45be-b85e-26764d93975c", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2008, + "employees": 4, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31431, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established flower shop with a loyal customer base and prime location.", + "created": "2023-03-18T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Veterinary Practice in Beaumont", + "description": "

Profitable Veterinary Practice for Sale

Take advantage of this opportunity to acquire a profitable veterinary practice with a loyal client base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced veterinarians and support staff.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the veterinary industry.

", + "type": "11", + "state": "TX", + "city": "Beaumont", + "id": "da9b0e4c-41be-48c8-8575-ae1e2816bd6c", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2000, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31432, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable veterinary practice with a loyal client base and well-equipped facility.", + "created": "2023-09-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Machine Shop in Waco", + "description": "

Acquire this successful machine shop with a diverse customer base and a reputation for providing high-quality machining services. The shop has a well-equipped facility and a skilled team of machinists.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the manufacturing industry.

", + "type": "12", + "state": "TX", + "city": "Waco", + "id": "b49b88ff-335c-47a8-890a-bb77f0b5ec81", + "price": 900000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31433, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful machine shop with a diverse customer base and skilled team.", + "created": "2023-06-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Family-Owned Restaurant in Odessa", + "description": "

Established Restaurant for Sale

Take over this popular family-owned restaurant with a loyal customer base and a reputation for serving delicious, home-style meals. The restaurant is located in a high-traffic area and has a cozy, welcoming atmosphere.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven concept, this restaurant offers excellent growth potential in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Odessa", + "id": "0f64201f-c9a9-4f4b-826f-edcc2d6a010a", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 120000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31434, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular family-owned restaurant with a loyal customer base and proven concept.", + "created": "2023-04-10T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Retail Store in Abilene", + "description": "

Acquire this profitable retail store specializing in unique home decor and gifts. Located in a prime shopping district, the store has a loyal customer base and a reputation for offering high-quality, one-of-a-kind items.

The sale includes all inventory, fixtures, and equipment. The current owner is willing to provide training and support to ensure a smooth transition. With strong sales and a proven business model, this store offers excellent growth potential in the retail industry.

", + "type": "5", + "state": "TX", + "city": "Abilene", + "id": "1d371afd-4de7-41c2-9ef8-1f5890ee50b4", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2012, + "employees": 4, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31435, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable retail store with a loyal customer base and prime location.", + "created": "2023-08-28T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Fitness Center in Round Rock", + "description": "

Profitable Fitness Center for Sale

Take over this established fitness center with a diverse membership base and a reputation for providing excellent facilities and services. The center features state-of-the-art equipment, group fitness classes, and personal training services.

The sale includes all assets, equipment, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the fitness industry.

", + "type": "7", + "state": "TX", + "city": "Round Rock", + "id": "083c9d60-6d0d-4f42-851a-85f8752fafdd", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31436, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established fitness center with a diverse membership base and excellent facilities.", + "created": "2023-05-15T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dental Practice in McAllen", + "description": "

Acquire this profitable dental practice with a loyal patient base and a reputation for providing excellent care. The practice has a well-equipped facility and a team of experienced dental professionals.

The sale includes all assets, equipment, and patient records. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this practice is a great opportunity in the healthcare industry.

", + "type": "11", + "state": "TX", + "city": "McAllen", + "id": "91f06051-b632-4b48-89e3-c3a177a51a9c", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2008, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31437, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable dental practice with a loyal patient base and well-equipped facility.", + "created": "2023-07-02T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Glass Repair Shop in Tyler", + "description": "

Profitable Auto Glass Business for Sale

Take advantage of this opportunity to acquire a successful auto glass repair and replacement shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced technicians.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Tyler", + "id": "e7f625ac-be4c-40b6-999f-1556177a0455", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31438, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto glass repair shop with a loyal customer base and experienced technicians.", + "created": "2023-03-25T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Pool Maintenance Company in College Station", + "description": "

Acquire this successful pool maintenance and repair company with a loyal customer base and a reputation for providing quality services. The company serves both residential and commercial clients and has a well-maintained fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "College Station", + "id": "3dc50037-3196-493f-9367-d5028dd48641", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": false, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31439, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful pool maintenance company with a loyal customer base and well-maintained fleet.", + "created": "2023-09-18T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Wichita Falls", + "description": "

Established Daycare Business for Sale

Take over this profitable daycare center with a great reputation and a loyal customer base. The center is licensed for 50 children and has a well-maintained facility with a spacious outdoor play area.

The sale includes all assets, equipment, and fixtures. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong demand for quality childcare, this business offers excellent growth potential in the education industry.

", + "type": "7", + "state": "TX", + "city": "Wichita Falls", + "id": "4c6cba09-53aa-454e-9d08-2535d06e4273", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2008, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31440, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable daycare center with a great reputation and loyal customer base.", + "created": "2023-06-10T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in San Marcos", + "description": "

Acquire this popular coffee shop located in the heart of San Marcos. With a loyal customer base and a reputation for serving high-quality coffee and delicious pastries, this business is poised for continued success.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. Take advantage of this opportunity to own a thriving business in a prime location.

", + "type": "13", + "state": "TX", + "city": "San Marcos", + "id": "70723544-930f-4ef7-a1b5-b9706bad779b", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 6, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 80000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31441, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a loyal customer base and prime location.", + "created": "2023-08-25T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Temple", + "description": "

Profitable Plumbing Business for Sale

Take over this successful plumbing company with a strong reputation and a loyal customer base. The company provides a full range of plumbing services to residential and commercial clients.

The sale includes all assets, equipment, and vehicles. The current owner is willing to provide training and support to ensure a smooth transition. With a team of experienced plumbers and steady revenue, this business offers excellent growth potential in the service industry.

", + "type": "2", + "state": "TX", + "city": "Temple", + "id": "284c7a77-c2c0-4be9-a33d-d28ea79e4534", + "price": 600000, + "salesRevenue": 1000000, + "leasedLocation": false, + "established": 2005, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31442, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Successful plumbing company with a strong reputation and experienced team.", + "created": "2023-05-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Electrical Contracting Business in New Braunfels", + "description": "

Acquire this profitable electrical contracting company with a diverse client base and a reputation for providing quality services. The company has a team of licensed electricians and a well-equipped fleet of service vehicles.

The sale includes all assets, contracts, and a turnkey operation. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the service industry.

", + "type": "2", + "state": "TX", + "city": "New Braunfels", + "id": "9565b3ce-05cf-49d0-a515-568ba0e57c7b", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2010, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31443, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable electrical contracting company with a diverse client base and licensed team.", + "created": "2023-07-05T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Bakery in Flower Mound", + "description": "

Popular Bakery for Sale

Acquire this popular bakery known for its delicious pastries, cakes, and breads. Located in a charming neighborhood, the bakery has a loyal customer base and a reputation for quality.

The sale includes all assets, equipment, and recipes. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the food industry.

", + "type": "13", + "state": "TX", + "city": "Flower Mound", + "id": "dd94157f-6c50-4b30-9352-5f25214a7e49", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2012, + "employees": 5, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 60000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31444, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established bakery with a loyal customer base and reputation for quality.", + "created": "2023-03-22T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Hair Salon in Georgetown", + "description": "

Take over this profitable hair salon with a proven business model and strong brand recognition. The salon is located in a prime area and has a loyal client base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "7", + "state": "TX", + "city": "Georgetown", + "id": "685c1292-2762-46cf-b7ac-853f10c53a8f", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31445, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable hair salon with a proven business model and strong brand recognition.", + "created": "2023-09-08T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Detailing Shop in Mansfield", + "description": "

Profitable Auto Detailing Business for Sale

Acquire this well-established auto detailing shop with a loyal customer base and a reputation for providing quality services. The shop has a well-equipped facility and a team of experienced detailers.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the automotive industry.

", + "type": "1", + "state": "TX", + "city": "Mansfield", + "id": "842969cb-27b1-40c5-9c20-4bcb2c453efb", + "price": 220000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 4, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31446, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful auto detailing shop with a loyal customer base and experienced detailers.", + "created": "2023-06-25T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pizza Restaurant in Cedar Park", + "description": "

Acquire this profitable pizza restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Cedar Park", + "id": "dde91b12-5f7f-4a55-be00-6e452c7e53d7", + "price": 350000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2012, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31447, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable pizza restaurant with a proven business model and strong brand recognition.", + "created": "2023-04-10T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Ice Cream Shop in Pflugerville", + "description": "

Popular Ice Cream Shop for Sale

Acquire this successful ice cream shop with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Pflugerville", + "id": "019094db-40c3-4bea-813a-6ae1a17c923b", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31448, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful ice cream shop with a proven business model and strong brand recognition.", + "created": "2023-08-15T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Euless", + "description": "

Take over this well-established dry cleaning business with a loyal customer base and a reputation for providing quality services. The shop is located in a convenient area with high visibility.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the service industry.

", + "type": "7", + "state": "TX", + "city": "Euless", + "id": "24cc12f1-2cb4-42d7-8c0f-95767b299abc", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2005, + "employees": 5, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31449, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dry cleaning business with a loyal customer base and convenient location.", + "created": "2023-05-28T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Sandwich Shop in Grapevine", + "description": "

Successful Sandwich Shop for Sale

Acquire this successful sandwich shop with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Grapevine", + "id": "6769439e-838c-40f1-a99b-9cae929674db", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 31450, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable sandwich shop with a proven business model and strongbrand recognition.", + "created": "2023-07-12T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Fitness Center in Coppell", + "description": "

Take advantage of this opportunity to acquire a successful fitness center with a proven business model and strong brand recognition. The center has a diverse membership base and offers a wide range of fitness classes and equipment.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the fitness industry.

", + "type": "7", + "state": "TX", + "city": "Coppell", + "id": "240ee859-2d64-4d67-9bac-15279fe1f141", + "price": 450000, + "salesRevenue": 700000, + "leasedLocation": true, + "established": 2012, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 234567", + "internalListingNumber": 31451, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful fitness center with a proven business model and strong brand recognition.", + "created": "2023-03-18T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Juice Bar in Katy", + "description": "

Successful Juice Bar for Sale

Acquire this successful juice bar with a proven business model and strong brand recognition. The bar is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the health and wellness industry.

", + "type": "13", + "state": "TX", + "city": "Katy", + "id": "0d107bc8-de04-4875-b01f-533109b896af", + "price": 180000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 6, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 345678", + "internalListingNumber": 31452, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable juice bar with a proven business model and strong brand recognition.", + "created": "2023-09-25T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dance Studio in Friendswood", + "description": "

Take over this well-established dance studio with a loyal client base and a reputation for providing quality instruction. The studio offers classes in various dance styles for all ages and skill levels.

The sale includes all assets, equipment, and a well-maintained facility. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the education and fitness industries.

", + "type": "7", + "state": "TX", + "city": "Friendswood", + "id": "1638a82a-20a9-455e-8a0a-125519b36a56", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 456789", + "internalListingNumber": 31453, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established dance studio with a loyal client base and quality instruction.", + "created": "2023-06-12T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Frozen Yogurt Shop in Little Elm", + "description": "

Successful Frozen Yogurt Shop for Sale

Acquire this successful frozen yogurt shop with a proven business model and strong brand recognition. The shop is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Little Elm", + "id": "79da5bc9-4549-4a1a-a1f9-47fc5105e782", + "price": 120000, + "salesRevenue": 250000, + "leasedLocation": true, + "established": 2020, + "employees": 4, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 40000, + "brokerLicencing": "TX 567890", + "internalListingNumber": 31454, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable frozen yogurt shop with a proven business model and strong brand recognition.", + "created": "2023-04-05T16:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Coffee Shop in The Colony", + "description": "

Take advantage of this opportunity to acquire a successful coffee shop with a proven business model and strong brand recognition. The shop is located in a prime area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "The Colony", + "id": "37696996-33fe-4e47-a522-54928045cc6f", + "price": 250000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2018, + "employees": 10, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 100000, + "brokerLicencing": "TX 678901", + "internalListingNumber": 31455, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful coffee shop with a proven business model and strong brand recognition.", + "created": "2023-08-02T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Burger Restaurant in Schertz", + "description": "

Successful Burger Restaurant for Sale

Acquire this successful burger restaurant with a proven business model and strong brand recognition. The restaurant is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Schertz", + "id": "50e42141-9c11-4a7a-876d-174c94075732", + "price": 350000, + "salesRevenue": 550000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 120000, + "brokerLicencing": "TX 789012", + "internalListingNumber": 31456, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable burger restaurant with a proven business model and strong brand recognition.", + "created": "2023-05-20T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Hair Salon in Kerrville", + "description": "

Acquire this well-established hair salon with a loyal client base and a reputation for providing quality services. The salon is located in a prime area and has a team of experienced stylists.

The sale includes all assets, equipment, and inventory. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "7", + "state": "TX", + "city": "Kerrville", + "id": "e53ccfbb-ea48-4795-bf2b-2f2d79518e3a", + "price": 200000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2012, + "employees": 6, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 80000, + "brokerLicencing": "TX 890123", + "internalListingNumber": 31457, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established hair salon with a loyal client base and experienced stylists.", + "created": "2023-07-08T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Nail Salon in Leander", + "description": "

Successful Nail Salon for Sale

Take over this profitable nail salon with a proven business model and strong brand recognition. The salon is located in a high-traffic area and has a loyal customer base.

The sale includes all assets, equipment, and a turnkey operation. With steady revenue and growth potential, this business is a great opportunity in the beauty industry.

", + "type": "7", + "state": "TX", + "city": "Leander", + "id": "092fea66-bf9e-42c8-8818-d3f890d03e26", + "price": 150000, + "salesRevenue": 300000, + "leasedLocation": true, + "established": 2018, + "employees": 5, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 60000, + "brokerLicencing": "TX 901234", + "internalListingNumber": 31458, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable nail salon with a proven business model and strong brand recognition.", + "created": "2023-03-25T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Catering Company in Rockwall", + "description": "

Acquire this well-established catering company with a loyal customer base and a reputation for providing exceptional food and service. The company specializes in corporate events, weddings, and social gatherings.

The sale includes all assets, equipment, and contracts. The current owner is willing to provide training and support to ensure a smooth transition. With steady revenue and strong growth potential, this business is a great opportunity in the food service industry.

", + "type": "13", + "state": "TX", + "city": "Rockwall", + "id": "a706dd45-cada-4aa9-9e4a-c1a3f141307d", + "price": 400000, + "salesRevenue": 600000, + "leasedLocation": false, + "established": 2010, + "employees": 10, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide comprehensive training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 012345", + "internalListingNumber": 31459, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-established catering company with a loyal customer base and reputation for exceptional food and service.", + "created": "2023-09-12T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Auto Repair Shop in Houston", + "description": "

Established Auto Repair Business for Sale

Are you looking for a profitable business opportunity in the automotive industry? Look no further! This well-established auto repair shop in the heart of Houston is now available for purchase.

With a loyal customer base and a team of skilled mechanics, this business has been consistently generating impressive revenue. The shop is equipped with state-of-the-art diagnostic tools and equipment, ensuring efficient and high-quality repairs.

Don't miss out on this chance to own a successful business in a prime location. Contact us today for more information and to schedule a viewing.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "b739c225-4777-4d72-896c-7a48b8d84388", + "price": 450000, + "salesRevenue": 850000, + "leasedLocation": true, + "established": 2005, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide training and support during the transition period.", + "cashFlow": 200000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 45678, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation in the community.", + "created": "2022-09-15T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company in Austin", + "description": "

Established Landscaping Business for Sale

Take advantage of this incredible opportunity to own a thriving landscaping company in the rapidly growing city of Austin, Texas. With a diverse portfolio of residential and commercial clients, this business has built a strong reputation for quality work and exceptional customer service.

The company boasts a team of experienced landscapers, a well-maintained fleet of vehicles and equipment, and a solid network of suppliers. The owner is willing to provide comprehensive training and support to ensure a smooth transition.

Invest in your future by acquiring this profitable business in one of the most desirable cities in the United States. Contact us today to learn more about this exciting opportunity.

", + "type": "7", + "state": "TX", + "city": "Austin", + "id": "3d864da0-3977-4dee-b017-929a3c4dabab", + "price": 1200000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2010, + "employees": 25, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 987654", + "internalListingNumber": 56789, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a loyal customer base and room for expansion.", + "created": "2022-11-20T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Italian Restaurant in San Antonio", + "description": "

Authentic Italian Restaurant for Sale

Indulge in the opportunity to own a beloved Italian restaurant in the vibrant city of San Antonio. This charming establishment has been serving delicious, authentic Italian cuisine to a loyal customer base for over a decade.

The restaurant features a warm and inviting atmosphere, a well-equipped kitchen, and a dedicated staff passionate about providing an exceptional dining experience. The menu showcases a variety of classic Italian dishes made with fresh, high-quality ingredients.

Seize this chance to take the reins of a successful business in a prime location. The owner is committed to ensuring a smooth transition and is willing to provide training and support. Don't let this opportunity slip away – contact us today for more information.

", + "type": "13", + "state": "TX", + "city": "San Antonio", + "id": "2861650a-5e79-4848-af55-4159cb9733a2", + "price": 750000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2008, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 67890, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable restaurant with a loyal customer base and excellent reputation.", + "created": "2022-08-10T09:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Coffee Shop in Dallas", + "description": "

Charming Coffee Shop for Sale

Embrace the opportunity to own a thriving coffee shop in the heart of Dallas. This cozy establishment has been serving high-quality coffee and delectable pastries to a devoted clientele for several years.

The shop boasts a warm and inviting atmosphere, a well-equipped kitchen, and a skilled team of baristas. With a prime location and a strong reputation, this business offers excellent growth potential.

Don't miss out on this chance to become a part of the vibrant Dallas coffee scene. Contact us today to learn more about this exciting opportunity.

", + "type": "13", + "state": "TX", + "city": "Dallas", + "id": "47d7a0fc-c9cd-4352-9238-34e3ea135c36", + "price": 350000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 78901, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and room for growth.", + "created": "2022-10-05T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Well-established Plumbing Company in Fort Worth", + "description": "

Successful Plumbing Business for Sale

Acquire a reputable plumbing company that has been serving the Fort Worth area for over two decades. This business has built a solid reputation for providing reliable, high-quality plumbing services to both residential and commercial clients.

The company has a team of licensed and experienced plumbers, a fully-equipped fleet of service vehicles, and a strong network of suppliers. With a consistent stream of revenue and a loyal customer base, this business offers stability and growth potential.

Take advantage of this rare opportunity to own a well-established plumbing company in a thriving market. Contact us today for more information.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "8e309c73-e22b-4488-a1c3-16039391c389", + "price": 950000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 1998, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 89012, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a strong team.", + "created": "2022-07-20T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Hair Salon in El Paso", + "description": "

Thriving Hair Salon for Sale

Seize the opportunity to own a popular hair salon in the heart of El Paso. This chic and modern salon has been providing exceptional hair care services to a diverse clientele for several years.

The salon features a stylish interior, high-end equipment, and a team of talented stylists. With a prime location and a loyal customer base, this business offers excellent growth potential.

Don't miss out on this chance to become a part of the thriving El Paso beauty industry. Contact us today to learn more about this exciting opportunity.

", + "type": "7", + "state": "TX", + "city": "El Paso", + "id": "77ee4c22-5c8f-480b-9364-66c92e296bef", + "price": 250000, + "salesRevenue": 450000, + "leasedLocation": true, + "established": 2015, + "employees": 8, + "reasonForSale": "Relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 100000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 90123, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and a great location.", + "created": "2022-12-10T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Well-established Dry Cleaning Business in Plano", + "description": "

Profitable Dry Cleaning Business for Sale

Take advantage of the opportunity to own a successful dry cleaning business in the affluent city of Plano. This well-established business has been providing top-notch dry cleaning and laundry services to the community for over 15 years.

The business boasts a loyal customer base, a convenient location, and a team of experienced staff. With a consistent stream of revenue and room for growth, this is an excellent investment opportunity.

Don't let this chance to own a thriving business in a desirable location pass you by. Contact us today for more information.

", + "type": "7", + "state": "TX", + "city": "Plano", + "id": "cef7b815-c5f3-4de1-ab39-977dbacfdc0b", + "price": 400000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 12345, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a prime location.", + "created": "2022-09-25T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Auto Body Shop in Arlington", + "description": "

Successful Auto Body Shop for Sale

Own a well-established auto body shop in the bustling city of Arlington. This business has been providing top-quality collision repair and auto body services to a loyal customer base for over a decade.

The shop is equipped with state-of-the-art equipment, a spacious workspace, and a team of skilled technicians. With a strong reputation and consistent revenue, this business offers excellent growth potential.

Seize this opportunity to become a part of the thriving Arlington automotive industry. Contact us today to learn more about this exciting opportunity.

", + "type": "1", + "state": "TX", + "city": "Arlington", + "id": "cc67e963-e3d9-4b5a-a620-870853fb7134", + "price": 800000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2008, + "employees": 15, + "reasonForSale": "Health issues", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 350000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 23456, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and room for expansion.", + "created": "2022-11-05T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bakery in Corpus Christi", + "description": "

Charming Bakery for Sale

Indulge in the opportunity to own a beloved bakery in the coastal city of Corpus Christi. This charming establishment has been delighting customers with its delectable pastries, cakes, and bread for several years.

The bakery features a cozy and inviting atmosphere, a well-equipped kitchen, and a talented team of bakers. With a prime location and a loyal customer base, this business offers excellent growth potential.

Don't miss out on this chance to become a part of the vibrant Corpus Christi culinary scene. Contact us today to learn more about this sweet opportunity.

", + "type": "13", + "state": "TX", + "city": "Corpus Christi", + "id": "5397df13-ed49-4ca3-8885-4845f65c9c66", + "price": 300000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2010, + "employees": 8, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 120000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 34567, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and a great reputation.", + "created": "2022-08-15T08:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Flooring Company in Frisco", + "description": "

Thriving Flooring Business for Sale

Acquire a well-established flooring company that has been serving the Frisco area for over a decade. This business has built a solid reputation for providing high-quality flooring solutions to both residential and commercial clients.

The company has a team of skilled installers, a wide selection of flooring options, and a strong network of suppliers. With a consistent stream of revenue and a loyal customer base, this business offers stability and growth potential.

Take advantage of this rare opportunity to own a successful flooring company in a thriving market. Contact us today for more information.

", + "type": "7", + "state": "TX", + "city": "Frisco", + "id": "14576f4a-11f7-43f7-bf97-93ed63a35469", + "price": 600000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2007, + "employees": 18, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 45678, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a strong team.", + "created": "2022-10-20T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pet Grooming Salon in Lubbock", + "description": "

Successful Pet Grooming Business for Sale

Embrace the opportunity to own a thriving pet grooming salon in the heart of Lubbock. This well-established business has been providing top-notch grooming services to a loyal clientele of furry friends for several years.

The salon boasts a modern and welcoming interior, high-quality grooming equipment, and a team of experienced groomers. With a prime location and a strong reputation, this business offers excellent growth potential.

Don't miss out on this chance to turn your love for pets into a successful business venture. Contact us today to learn more about this exciting opportunity.

", + "type": "7", + "state": "TX", + "city": "Lubbock", + "id": "2ee7af71-75a2-4eaf-b15c-0b830898b8fb", + "price": 180000, + "salesRevenue": 350000, + "leasedLocation": true, + "established": 2013, + "employees": 6, + "reasonForSale": "Relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 80000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 56789, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and room for growth.", + "created": "2022-12-05T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Well-established HVAC Company in Denton", + "description": "

Successful HVAC Business for Sale

Acquire a reputable HVAC company that has been serving the Denton area for over 20 years. This business has built a solid reputation for providing reliable, high-quality heating and cooling services to both residential and commercial clients.

The company has a team of licensed and experienced technicians, a fully-equipped fleet of service vehicles, and a strong network of suppliers. With a consistent stream of revenue and a loyal customer base, this business offers stability and growth potential.

Take advantage of this rare opportunity to own a well-established HVAC company in a growing market. Contact us today for more information.

", + "type": "7", + "state": "TX", + "city": "Denton", + "id": "8a7ffa81-2b81-4fa9-ba00-daa9e52c0a3a", + "price": 1200000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2000, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 67890, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a strong team.", + "created": "2022-07-10T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Fitness Center in Waco", + "description": "

Successful Fitness Center for Sale

Own a well-established fitness center in the growing city of Waco. This business has been helping members achieve their health and fitness goals for over a decade.

The center features a spacious workout area, state-of-the-art equipment, and a dedicated team of trainers. With a loyal member base and a prime location, this business offers excellent growth potential.

Seize this opportunity to become a part of the thriving Waco fitness industry. Contact us today to learn more about this exciting opportunity.

", + "type": "7", + "state": "TX", + "city": "Waco", + "id": "6afbb426-34ef-4365-84f0-c34beec0c1b3", + "price": 500000, + "salesRevenue": 800000, + "leasedLocation": true, + "established": 2009, + "employees": 12, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 200000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 78901, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal member base and room for growth.", + "created": "2022-11-15T12:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Oil Change Service in Midland", + "description": "

Profitable Oil Change Business for Sale

Take advantage of the opportunity to own a thriving oil change service in the heart of Midland. This well-established business has been providing top-notch automotive services to the community for several years.

The service center is equipped with modern equipment, a convenient location, and a team of skilled technicians. With a consistent stream of revenue and a loyal customer base, this business offers excellent growth potential.

Don't let this chance to own a successful business in a prime location pass you by. Contact us today for more information.

", + "type": "1", + "state": "TX", + "city": "Midland", + "id": "5c7dd774-9cf7-48c4-bd30-e8d33c6e1437", + "price": 450000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2011, + "employees": 10, + "reasonForSale": "Health issues", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 180000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 89012, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a prime location.", + "created": "2022-09-05T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Well-established Catering Company in Abilene", + "description": "

Thriving Catering Business for Sale

Acquire a successful catering company that has been delighting clients in the Abilene area for over 15 years. This business has built a solid reputation for providing delicious food and exceptional service for a variety of events.

The company has a talented team of chefs and servers, a fully-equipped commercial kitchen, and a diverse menu options. With a strong client base and consistent revenue, this business offers stability and growth potential.

Take advantage of this rare opportunity to own a well-established catering company in a growing market. Contact us today for more information.

", + "type": "13", + "state": "TX", + "city": "Abilene", + "id": "12fc6d9e-e795-4c30-a11d-e714427b55e2", + "price": 750000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 90123, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a strong team.", + "created": "2022-08-25T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Nail Salon in Beaumont", + "description": "

Successful Nail Salon for Sale

Own a thriving nail salon in the bustling city of Beaumont. This chic and modern salon has been providing exceptional nail care services to a loyal clientele for several years.

The salon features a stylish interior, high-end equipment, and a team of talented nail technicians. With a prime location and a strong reputation, this business offers excellent growth potential.

Don't miss out on this chance to become a part of the thriving Beaumont beauty industry. Contact us today to learn more about this exciting opportunity.

", + "type": "7", + "state": "TX", + "city": "Beaumont", + "id": "fc22ea5d-e28c-4a0d-aadc-b242ddb6beef", + "price": 200000, + "salesRevenue": 400000, + "leasedLocation": true, + "established": 2014, + "employees": 7, + "reasonForSale": "Relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 90000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 12345, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and a great location.", + "created": "2022-12-20T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Convenience Store in Round Rock", + "description": "

Well-established Convenience Store for Sale

Take advantage of the opportunity to own a successful convenience store in the growing city of Round Rock. This well-established business has been serving the community for over a decade.

The store offers a wide selection of products, a convenient location, and a loyal customer base. With consistent revenue and room for growth, this is an excellent investment opportunity.

Don't let this chance to own a thriving business in a desirable location pass you by. Contact us today for more information.

", + "type": "5", + "state": "TX", + "city": "Round Rock", + "id": "b29a3b99-5762-40fc-b249-86f93b967456", + "price": 500000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2008, + "employees": 10, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide comprehensive training and ongoing support.", + "cashFlow": 150000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 23456, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a prime location.", + "created": "2022-10-10T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Dental Practice in Wichita Falls", + "description": "

Thriving Dental Practice for Sale

Acquire a well-established dental practice in the heart of Wichita Falls. This business has been providing top-quality dental care to the community for over 20 years.

The practice features modern equipment, a spacious office, and a team of skilled dental professionals. With a loyal patient base and a strong reputation, this business offers excellent growth potential.

Seize this opportunity to own a successful dental practice in a growing market. Contact us today to learn more about this exciting opportunity.

", + "type": "11", + "state": "TX", + "city": "Wichita Falls", + "id": "3d4f144a-717f-4408-9249-033a49ce3e0a", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": false, + "established": 2000, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 34567, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a strong team.", + "created": "2022-07-15T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bar and Grill in Tyler", + "description": "

Successful Bar and Grill for Sale

Own a thriving bar and grill in the vibrant city of Tyler. This popular establishment has been a favorite among locals and visitors for several years.

The bar and grill features a spacious dining area, a well-equipped kitchen, and a talented team of staff. With a prime location and a loyal customer base, this business offers excellent growth potential.

Don't miss out on this chance to become a part of the exciting Tyler dining scene. Contact us today to learn more about this remarkable opportunity.

", + "type": "13", + "state": "TX", + "city": "Tyler", + "id": "4b149c55-9caf-40bc-ae14-060b7b43b8fb", + "price": 650000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 250000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 45678, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and a great reputation.", + "created": "2022-11-25T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Well-established Printing Company in Odessa", + "description": "

Successful Printing Business for Sale

Acquire a reputable printing company that has been serving the Odessa area for over 25 years. This business has built a solid reputation for providing high-quality printing services to both commercial and individual clients.

The company has a team of skilled professionals, a fully-equipped production facility, and a strong network of suppliers. With a consistent stream of revenue and a loyal customer base, this business offers stability and growth potential.

Take advantage of this rare opportunity to own a well-established printing company in a thriving market. Contact us today for more information.

", + "type": "12", + "state": "TX", + "city": "Odessa", + "id": "964f9499-603e-41a2-8695-6a93f59fc53d", + "price": 900000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 1995, + "employees": 18, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide extensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 135792", + "internalListingNumber": 56789, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a solid reputation and a strong team.", + "created": "2022-08-05T08:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Daycare Center in Longview", + "description": "

Successful Daycare Center for Sale

Embrace the opportunity to own a thriving daycare center in the family-friendly city of Longview. This well-established business has been providing exceptional child care services to the community for several years.

The center features a warm and nurturing environment, age-appropriate educational programs, and a team of experienced caregivers. With a prime location and a strong reputation, this business offers excellent growth potential.

Don't miss out on this chance to make a difference in the lives of young children while owning a successful business. Contact us today to learn more about this exciting opportunity.

", + "type": "7", + "state": "TX", + "city": "Longview", + "id": "6b45331b-e63c-476f-a5c6-b5663fa6d612", + "price": 400000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Relocating", + "supportAndTraining": "Owner will provide training and support during the transition.", + "cashFlow": 150000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 67890, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and room for growth.", + "created": "2022-12-15T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Repair Shop", + "description": "

Well-established auto repair shop with a loyal customer base. Specializing in general repairs, maintenance, and diagnostics for all makes and models.

Fully equipped with state-of-the-art tools and equipment. Experienced staff in place, including ASE-certified technicians.

Strong Growth Potential

Located in a high-traffic area with excellent visibility. Opportunity to expand services and increase revenue.

", + "type": "1", + "state": "CA", + "city": "Los Angeles", + "id": "a5efd1e0-8211-4e2f-84c6-e731866e1bdf", + "price": 450000, + "salesRevenue": 850000, + "leasedLocation": true, + "established": 2005, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 4 weeks of training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "CA 123456", + "internalListingNumber": 45678, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with room for growth. Seller is motivated.", + "created": "2023-03-15T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful HVAC Company", + "description": "

Turnkey HVAC Business For Sale

Profitable HVAC company serving residential and commercial clients. Offering installation, repair, and maintenance services for heating, ventilation, and air conditioning systems.

Fully staffed with experienced technicians and a dedicated sales team. Strong vendor relationships and a well-maintained fleet of service vehicles.

", + "type": "2", + "state": "TX", + "city": "Houston", + "id": "adcd33b3-0f41-44b7-a149-681cabcdfd1e", + "price": 1200000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2010, + "employees": 15, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 8 weeks of training and transitional support.", + "cashFlow": 500000, + "brokerLicencing": "TX 987654", + "internalListingNumber": 56789, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-established business with a strong reputation. Real estate included.", + "created": "2023-06-30T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Real Estate Brokerage", + "description": "

Successful real estate brokerage with a focus on luxury residential properties. Established brand with a strong presence in the local market.

Experienced Team and Proven Systems

Skilled agents and support staff in place. Proprietary CRM and marketing systems to streamline operations and drive growth.

", + "type": "3", + "state": "FL", + "city": "Miami", + "id": "8a5addef-330e-4b30-ab4b-354f7d102996", + "price": 2000000, + "salesRevenue": 5000000, + "leasedLocation": true, + "established": 2008, + "employees": 25, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 12 weeks of training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "FL 246810", + "internalListingNumber": 67890, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "High-performing brokerage with a strong brand and experienced team.", + "created": "2023-09-01T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Retail Store", + "description": "

Profitable Retail Business

Well-known retail store specializing in unique gifts and home decor. Prime location in a busy shopping district with high foot traffic.

Loyal customer base and strong vendor relationships. Experienced staff in place, including a knowledgeable management team.

", + "type": "5", + "state": "NY", + "city": "New York City", + "id": "58653861-3cb6-49e4-a907-9baeae295be1", + "price": 350000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Health reasons", + "supportAndTraining": "Owner will provide 6 weeks of training and transitional support.", + "cashFlow": 150000, + "brokerLicencing": "NY 135790", + "internalListingNumber": 78901, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Stable business with consistent revenue. Owner is motivated to sell.", + "created": "2023-11-10T16:20:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Oilfield Services Company", + "description": "

Established oilfield services company providing equipment rental, maintenance, and repair services to the oil and gas industry.

Strong Industry Presence

Experienced team of technicians and a well-maintained fleet of equipment. Long-term contracts with major oil and gas companies.

", + "type": "6", + "state": "TX", + "city": "Midland", + "id": "07b68d53-6d9a-4592-b188-770e31b66c11", + "price": 3500000, + "salesRevenue": 8000000, + "leasedLocation": false, + "established": 2000, + "employees": 50, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and ongoing support.", + "cashFlow": 1500000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 89012, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-established business with a strong industry presence. Real estate included.", + "created": "2023-02-20T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Service", + "description": "

Turnkey Landscaping Business

Successful landscaping service with a focus on residential and commercial properties. Offering design, installation, and maintenance services.

Experienced crew and a well-maintained fleet of equipment. Strong reputation and a loyal customer base.

", + "type": "7", + "state": "AZ", + "city": "Phoenix", + "id": "17619fb3-f9fc-45a9-82d8-0d21d412cea0", + "price": 500000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 200000, + "brokerLicencing": "AZ 135790", + "internalListingNumber": 90123, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with room for growth. Seller is motivated.", + "created": "2023-07-05T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Advertising Agency", + "description": "

Full-service advertising agency specializing in digital marketing, branding, and creative services. Diverse client base across multiple industries.

Talented Team and Proven Processes

Skilled team of designers, copywriters, and account managers. Proprietary project management systems and a strong network of freelance talent.

", + "type": "8", + "state": "IL", + "city": "Chicago", + "id": "11d61107-d93a-475a-b5d9-c7e9e0fb052f", + "price": 1500000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 750000, + "brokerLicencing": "IL 246810", + "internalListingNumber": 12345, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Successful agency with a talented team and diverse client base.", + "created": "2023-04-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Agricultural Supply Store", + "description": "

Well-Established Agricultural Supply Business

Successful agricultural supply store serving local farmers and ranchers. Offering a wide range of products, including feed, seed, and equipment.

Strong vendor relationships and a knowledgeable staff. Loyal customer base and a prime location in a rural community.

", + "type": "9", + "state": "IA", + "city": "Des Moines", + "id": "7efe14e4-aa99-4418-b48f-64878aa02481", + "price": 800000, + "salesRevenue": 1500000, + "leasedLocation": false, + "established": 1998, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 300000, + "brokerLicencing": "IA 135790", + "internalListingNumber": 23456, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Stable business with consistent revenue. Real estate included.", + "created": "2023-08-12T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant", + "description": "

Well-established franchise restaurant in a prime location. Offering a diverse menu and a strong brand presence.

Turnkey Business Opportunity

Fully equipped kitchen and a renovated dining area. Experienced staff and management team in place.

", + "type": "10", + "state": "GA", + "city": "Atlanta", + "id": "45f5e994-d362-4a6d-8186-576deec9b154", + "price": 600000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2018, + "employees": 30, + "reasonForSale": "Relocation", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "GA 246810", + "internalListingNumber": 34567, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable franchise with a prime location and experienced staff.", + "created": "2023-01-25T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Accounting Practice", + "description": "

Profitable Accounting Firm For Sale

Well-established accounting practice with a diverse client base. Offering tax preparation, bookkeeping, and financial planning services.

Experienced staff, including CPAs and bookkeepers. Proprietary software and a strong referral network.

", + "type": "11", + "state": "WA", + "city": "Seattle", + "id": "1cdce518-56c4-4ffb-824f-77424c988333", + "price": 1000000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 2005, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and transitional support.", + "cashFlow": 500000, + "brokerLicencing": "WA 135790", + "internalListingNumber": 45678, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Established practice with a loyal client base and experienced staff.", + "created": "2023-06-08T15:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Custom Furniture Manufacturer", + "description": "

Established custom furniture manufacturer specializing in high-end residential and commercial projects. Strong reputation for quality craftsmanship and innovative designs.

Skilled Team and State-of-the-Art Facility

Experienced craftsmen and a well-equipped manufacturing facility. Established relationships with suppliers and a diverse customer base.

", + "type": "12", + "state": "NC", + "city": "Charlotte", + "id": "fcb4f38d-f1fb-4cf8-95a0-4983933bfc63", + "price": 2500000, + "salesRevenue": 5000000, + "leasedLocation": false, + "established": 2000, + "employees": 40, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "NC 246810", + "internalListingNumber": 56789, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a strong reputation and skilled team. Real estate included.", + "created": "2023-09-20T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Body Shop", + "description": "

Well-established auto body shop with a loyal customer base. Specializing in collision repair, painting, and restoration services for all makes and models.

Fully Equipped Facility

State-of-the-art equipment and a skilled team of technicians. Strong relationships with insurance companies and a reputation for quality workmanship.

", + "type": "1", + "state": "MI", + "city": "Detroit", + "id": "d8c32c42-189a-4f62-9496-364688caef22", + "price": 900000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 2005, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 400000, + "brokerLicencing": "MI 246810", + "internalListingNumber": 67890, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a strong reputation. Real estate included.", + "created": "2023-03-12T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company", + "description": "

Turnkey Plumbing Business For Sale

Well-established plumbing company serving residential and commercial clients. Offering a full range of plumbing services, including installation, repair, and maintenance.

Experienced team of licensed plumbers and a well-maintained fleet of service vehicles. Strong vendor relationships and a loyal customer base.

", + "type": "2", + "state": "OH", + "city": "Cleveland", + "id": "2c49d709-8352-45b7-90c0-93d67c221b1f", + "price": 1500000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 1995, + "employees": 25, + "reasonForSale": "Health reasons", + "supportAndTraining": "Owner will provide 12 weeks of training and ongoing support.", + "cashFlow": 600000, + "brokerLicencing": "OH 135790", + "internalListingNumber": 78901, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Stable business with consistent revenue. Owner is motivated to sell.", + "created": "2023-07-28T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Real Estate Investment Firm", + "description": "

Profitable real estate investment firm with a diverse portfolio of properties. Specializing in the acquisition, development, and management of residential and commercial real estate.

Proven Track Record and Experienced Team

Strong network of investors and a talented team of real estate professionals. Proprietary investment strategies and a reputation for delivering solid returns.

", + "type": "3", + "state": "NV", + "city": "Las Vegas", + "id": "07aa6ba8-6581-4ada-b5c1-38f3c7ecd59c", + "price": 5000000, + "salesRevenue": 10000000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 2000000, + "brokerLicencing": "NV 246810", + "internalListingNumber": 89012, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable firm with a strong track record and experienced team.", + "created": "2023-05-05T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Boutique Clothing Store", + "description": "

Turnkey Retail Business For Sale

Trendy boutique clothing store in a prime shopping district. Offering a curated selection of women's clothing, accessories, and gifts.

Loyal customer base and strong vendor relationships. Experienced staff and a well-designed store layout.

", + "type": "5", + "state": "OR", + "city": "Portland", + "id": "8054227f-5d8c-46b7-a9ee-a89dffd59b57", + "price": 250000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2018, + "employees": 8, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and transitional support.", + "cashFlow": 100000, + "brokerLicencing": "OR 135790", + "internalListingNumber": 90123, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular store with a loyal customer base. Owner is motivated to sell.", + "created": "2023-10-15T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Oilfield Equipment Rental Company", + "description": "

Profitable oilfield equipment rental company with a strong presence in the Permian Basin. Offering a wide range of well-maintained equipment for drilling and production operations.

Experienced Team and Strong Industry Relationships

Knowledgeable staff with extensive industry experience. Long-term contracts with major oil and gas companies.

", + "type": "6", + "state": "TX", + "city": "Odessa", + "id": "0f4e6b2e-6de4-49ab-89c9-6cbcb81fddf5", + "price": 4000000, + "salesRevenue": 8000000, + "leasedLocation": false, + "established": 2005, + "employees": 40, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and ongoing support.", + "cashFlow": 1500000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 12345, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a strong industry presence. Real estate included.", + "created": "2023-02-10T09:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Pest Control Service", + "description": "

Established Pest Control Business For Sale

Successful pest control service with a focus on residential and commercial properties. Offering a full range of pest control and extermination services.

Experienced technicians and a well-maintained fleet of service vehicles. Strong reputation and a loyal customer base.

", + "type": "7", + "state": "FL", + "city": "Tampa", + "id": "8a2f7174-d1de-4432-a409-ac2453b4c21e", + "price": 600000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 250000, + "brokerLicencing": "FL 135790", + "internalListingNumber": 23456, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with room for growth. Seller is motivated.", + "created": "2023-08-22T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Digital Marketing Agency", + "description": "

Established digital marketing agency specializing in SEO, PPC, and social media marketing. Diverse client base across multiple industries.

Talented Team and Proven Strategies

Skilled team of digital marketers, content creators, and web developers. Proprietary marketing strategies and a strong track record of delivering results.

", + "type": "8", + "state": "CA", + "city": "San Francisco", + "id": "b74e5c05-3a94-4127-9117-5d3c40b8487f", + "price": 2000000, + "salesRevenue": 4000000, + "leasedLocation": true, + "established": 2015, + "employees": 30, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "CA 246810", + "internalListingNumber": 34567, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable agency with a talented team and diverse client base.", + "created": "2023-04-05T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Farm and Ranch Supply Store", + "description": "

Profitable Agricultural Supply Business For Sale

Well-established farm and ranch supply store serving the agricultural community. Offering a wide range of products, including animal feed, agricultural equipment, and livestock supplies.

Knowledgeable staff with extensive industry experience. Strong vendor relationships and a loyal customer base.

", + "type": "9", + "state": "KS", + "city": "Wichita", + "id": "79f38344-0cb7-48a2-9166-4ceadf39f703", + "price": 1200000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 1990, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and transitional support.", + "cashFlow": 500000, + "brokerLicencing": "KS 135790", + "internalListingNumber": 45678, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Stable business with consistent revenue. Real estate included.", + "created": "2023-11-18T15:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dental Practice", + "description": "

Well-established dental practice with a loyal patient base. Offering a full range of dental services, including preventive care, restorative treatments, and cosmetic dentistry.

State-of-the-Art Facility and Experienced Staff

Modern dental equipment and technology. Skilled team of dental professionals, including dentists, hygienists, and support staff.

", + "type": "11", + "state": "MA", + "city": "Boston", + "id": "34fc769d-8e29-4ff7-8a64-f323c52e58fc", + "price": 1500000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and transitional support.", + "cashFlow": 750000, + "brokerLicencing": "MA 246810", + "internalListingNumber": 56789, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable practice with a loyal patient base and experienced staff.", + "created": "2023-03-28T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Cabinet Manufacturing Business", + "description": "

Turnkey Cabinet Manufacturing Operation For Sale

Well-established cabinet manufacturing business specializing in custom cabinetry for residential and commercial projects. Strong reputation for quality craftsmanship and customer service.

Fully equipped manufacturing facility and experienced production staff. Established relationships with suppliers and a diverse customer base.

", + "type": "12", + "state": "WI", + "city": "Milwaukee", + "id": "d319eca1-577f-4375-a7ec-de25f22f4e7e", + "price": 3000000, + "salesRevenue": 6000000, + "leasedLocation": false, + "established": 1998, + "employees": 30, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 1200000, + "brokerLicencing": "WI 135790", + "internalListingNumber": 67890, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a strong reputation. Real estate included.", + "created": "2023-07-10T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Local Coffee Shop", + "description": "

Thriving local coffee shop in a prime downtown location. Offering a variety of specialty coffee drinks, pastries, and light fare.

Loyal Customer Base and Experienced Staff

Strong local following and a cozy, inviting atmosphere. Experienced baristas and a well-trained management team.

", + "type": "13", + "state": "OR", + "city": "Portland", + "id": "df9457e7-5036-451d-a741-5ad176693684", + "price": 300000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Relocation", + "supportAndTraining": "Owner will provide 6 weeks of training and transitional support.", + "cashFlow": 150000, + "brokerLicencing": "OR 246810", + "internalListingNumber": 78901, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular coffee shop with a loyal customer base. Owner is motivated to sell.", + "created": "2023-09-05T09:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Detailing Shop", + "description": "

Turnkey Auto Detailing Business For Sale

Successful auto detailing shop with a strong reputation for quality service. Offering a full range of detailing services for cars, trucks, and SUVs.

Well-equipped facility and experienced technicians. Established relationships with local dealerships and a loyal customer base.

", + "type": "1", + "state": "AZ", + "city": "Phoenix", + "id": "7a7976f8-0b58-4c8b-83d5-ac53c4dc21a6", + "price": 250000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2012, + "employees": 8, + "reasonForSale": "Health reasons", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 100000, + "brokerLicencing": "AZ 135790", + "internalListingNumber": 89012, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with room for growth. Owner is motivated to sell.", + "created": "2023-05-22T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Contracting Business", + "description": "

Well-established electrical contracting business serving residential and commercial clients. Offering a full range of electrical services, including installation, repair, and maintenance.

Experienced Team and Strong Industry Presence

Licensed electricians with extensive industry experience. Well-maintained fleet of service vehicles and a fully equipped warehouse.

", + "type": "2", + "state": "TX", + "city": "Dallas", + "id": "00989024-02e7-4fc1-8227-e129acb2c45d", + "price": 2000000, + "salesRevenue": 4000000, + "leasedLocation": false, + "established": 2000, + "employees": 25, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and ongoing support.", + "cashFlow": 800000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 90123, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Stable business with consistent revenue. Real estate included.", + "created": "2023-02-15T10:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Property Management Company", + "description": "

Profitable Property Management Business For Sale

Well-established property management company with a diverse portfolio of residential and commercial properties. Offering a full range of property management services, including leasing, maintenance, and financial reporting.

Experienced team of property managers and strong relationships with property owners and tenants.

", + "type": "3", + "state": "FL", + "city": "Miami", + "id": "a661458b-170e-4ab6-95cc-c4bc12f827bf", + "price": 1500000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and transitional support.", + "cashFlow": 600000, + "brokerLicencing": "FL 135790", + "internalListingNumber": 12345, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a diverse portfolio of properties.", + "created": "2023-08-08T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Gift Shop in Tourist Destination", + "description": "

Popular gift shop located in a prime tourist destination. Offering a wide variety of unique gifts, souvenirs, and local artisan crafts.

Prime Location and Loyal Customer Base

High foot traffic and a loyal customer base of tourists and locals alike. Well-designed store layout and attractive displays.

", + "type": "5", + "state": "HI", + "city": "Honolulu", + "id": "aaf04dc0-3936-4dd3-8a76-aad8713a9f0c", + "price": 500000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2005, + "employees": 10, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 200000, + "brokerLicencing": "HI 246810", + "internalListingNumber": 23456, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular store in a prime location. Owner is motivated to sell.", + "created": "2023-04-20T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Oilfield Equipment Manufacturing Business", + "description": "

Established Oilfield Equipment Manufacturer For Sale

Successful oilfield equipment manufacturing business with a strong reputation for quality products and customer service. Specializing in the design and fabrication of custom equipment for drilling and production operations.

Well-equipped manufacturing facility and experienced production staff. Established relationships with major oil and gas companies.

", + "type": "6", + "state": "TX", + "city": "Houston", + "id": "10635075-e94a-4056-aa4a-844e6d75ffd7", + "price": 5000000, + "salesRevenue": 10000000, + "leasedLocation": false, + "established": 1995, + "employees": 50, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 2000000, + "brokerLicencing": "TX 135790", + "internalListingNumber": 34567, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a strong industry presence. Real estate included.", + "created": "2023-01-12T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Janitorial Service Company", + "description": "

Well-established janitorial service company with a diverse client base of commercial and institutional properties. Offering a full range of cleaning and maintenance services.

Experienced Team and Proven Systems

Trained and reliable staff with a strong management team. Proprietary cleaning protocols and quality control systems.

", + "type": "7", + "state": "IL", + "city": "Chicago", + "id": "d120091a-a102-4a6d-b095-094c82824e17", + "price": 1200000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2008, + "employees": 40, + "reasonForSale": "Health reasons", + "supportAndTraining": "Owner will provide 12 weeks of training and transitional support.", + "cashFlow": 500000, + "brokerLicencing": "IL 246810", + "internalListingNumber": 45678, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a diverse client base and experienced team.", + "created": "2023-06-25T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Public Relations Agency", + "description": "

Turnkey Public Relations Firm For Sale

Successful public relations agency with a focus on technology and startup clients. Offering a full range of PR services, including media relations, content creation, and crisis management.

Talented team of PR professionals and a strong network of media contacts. Proven track record of securing high-profile media placements for clients.

", + "type": "8", + "state": "NY", + "city": "New York City", + "id": "5ffa2546-1351-4b70-8191-b021428fbf20", + "price": 2500000, + "salesRevenue": 5000000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "NY 135790", + "internalListingNumber": 56789, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable agency with a talented team and strong client base.", + "created": "2023-09-18T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Organic Farm and CSA", + "description": "

Successful organic farm with a thriving community-supported agriculture (CSA) program. Growing a diverse range of organic vegetables, fruits, and herbs.

Established Brand and Loyal Customer Base

Strong local brand and a loyal customer base of CSA members and farmers market patrons. Experienced farm staff and well-maintained equipment.

", + "type": "9", + "state": "CA", + "city": "Sacramento", + "id": "1d7cf578-7811-4390-b1dd-1d526749dae6", + "price": 1500000, + "salesRevenue": 1000000, + "leasedLocation": false, + "established": 2010, + "employees": 15, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and transitional support.", + "cashFlow": 400000, + "brokerLicencing": "CA 246810", + "internalListingNumber": 67890, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable farm with a strong brand and loyal customer base. Real estate included.", + "created": "2023-03-05T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Automotive Repair Shop", + "description": "

Well-established automotive repair shop with a loyal customer base. Offering a full range of repair and maintenance services for all makes and models.

Experienced Team and Modern Equipment

ASE-certified technicians and a fully equipped shop with the latest diagnostic tools. Strong reputation for quality work and customer service.

", + "type": "1", + "state": "WA", + "city": "Seattle", + "id": "219baa11-d631-4b03-8197-aec3d7531706", + "price": 800000, + "salesRevenue": 1600000, + "leasedLocation": true, + "established": 2005, + "employees": 12, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 300000, + "brokerLicencing": "WA 246810", + "internalListingNumber": 78901, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a loyal customer base and experienced team.", + "created": "2023-07-15T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Machine Shop", + "description": "

Turnkey Machine Shop Business For Sale

Successful machine shop specializing in precision machining and fabrication services. Serving a diverse client base across various industries.

Well-maintained CNC machines and experienced machinists. Strong reputation for quality workmanship and on-time delivery.

", + "type": "2", + "state": "OH", + "city": "Cleveland", + "id": "5051ff5d-536f-4e12-b4e9-c2b8b804ff60", + "price": 2000000, + "salesRevenue": 4000000, + "leasedLocation": false, + "established": 1998, + "employees": 25, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 800000, + "brokerLicencing": "OH 135790", + "internalListingNumber": 89012, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a diverse client base. Real estate included.", + "created": "2023-05-02T11:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Property Management Franchise", + "description": "

Successful property management franchise with a growing portfolio of residential properties. Offering a full range of property management services, including leasing, maintenance, and financial reporting.

Established Brand and Proven Systems

Strong brand recognition and a proven business model. Comprehensive training and ongoing support from the franchisor.

", + "type": "10", + "state": "GA", + "city": "Atlanta", + "id": "11a870ab-d148-465e-a126-e533ea9fdeee", + "price": 500000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Relocation", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "GA 246810", + "internalListingNumber": 90123, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Profitable franchise with a growing portfolio of properties.", + "created": "2023-09-28T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Retail Clothing Boutique", + "description": "

Turnkey Retail Clothing Business For Sale

Popular clothing boutique in a prime shopping district. Offering a curated selection of trendy women's clothing and accessories.

Attractive store design and a loyal customer base. Experienced staff and strong vendor relationships.

", + "type": "5", + "state": "CA", + "city": "San Diego", + "id": "8f00e0a7-0951-47af-919d-3c922ae340b4", + "price": 300000, + "salesRevenue": 600000, + "leasedLocation": true, + "established": 2012, + "employees": 8, + "reasonForSale": "Health reasons", + "supportAndTraining": "Owner will provide 6 weeks of training and transitional support.", + "cashFlow": 150000, + "brokerLicencing": "CA 135790", + "internalListingNumber": 12345, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Popular store with a loyal customer base. Owner is motivated to sell.", + "created": "2023-02-20T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Oilfield Services Company", + "description": "

Established oilfield services company providing drilling and completion support services. Strong presence in major shale plays across the country.

Experienced Team and Modern Equipment

Highly skilled field personnel and a well-maintained fleet of equipment. Long-term contracts with major oil and gas operators.

", + "type": "6", + "state": "TX", + "city": "Midland", + "id": "9cf9c4fa-7f25-46af-a980-d6d46773c3f7", + "price": 10000000, + "salesRevenue": 20000000, + "leasedLocation": false, + "established": 2000, + "employees": 100, + "reasonForSale": "Partnership dissolution", + "supportAndTraining": "Owners will provide 12 weeks of training and ongoing support.", + "cashFlow": 4000000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 23456, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Highly profitable business with a strong industry presence. Real estate included.", + "created": "2023-04-10T14:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Service Company", + "description": "

Turnkey HVAC Business For Sale

Successful HVAC service company with a focus on residential and light commercial customers. Offering installation, repair, and maintenance services.

Experienced technicians and a well-stocked inventory of parts and equipment. Strong reputation for quality work and customer service.

", + "type": "7", + "state": "FL", + "city": "Tampa", + "id": "b606f23e-d245-4b82-a86d-81cc0ef8dc2b", + "price": 1500000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 2008, + "employees": 20, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and transitional support.", + "cashFlow": 600000, + "brokerLicencing": "FL 135790", + "internalListingNumber": 34567, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable business with a strong reputation and experienced team.", + "created": "2023-08-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Social Media Marketing Agency", + "description": "

Successful social media marketing agency with a focus on small and medium-sized businesses. Offering a full range of social media services, including strategy development, content creation, and community management.

Talented Team and Proven Results

Creative team of social media specialists and a strong track record of delivering measurable results for clients. Proprietary processes and a scalable business model.

", + "type": "8", + "state": "IL", + "city": "Chicago", + "id": "bea8c393-566c-48b9-abd9-0c11c68e6214", + "price": 1000000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Pursuing other business opportunities", + "supportAndTraining": "Owner will provide 8 weeks of training and transitional support.", + "cashFlow": 400000, + "brokerLicencing": "IL 246810", + "internalListingNumber": 45678, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Profitable agency with a talented team and proven results.", + "created": "2023-06-12T13:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Winery and Vineyard", + "description": "

Turnkey Winery Business For Sale

Successful winery and vineyard in a prime wine-growing region. Producing a range of award-winning wines, including reds, whites, and sparkling varieties.

Well-maintained vineyard and a modern winemaking facility. Experienced winemaker and a knowledgeable tasting room staff.

", + "type": "9", + "state": "CA", + "city": "Napa", + "id": "0928ae2a-53a9-40ad-b06f-e47c63ef2c62", + "price": 8000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2000, + "employees": 30, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 12 weeks of training and ongoing support.", + "cashFlow": 1000000, + "brokerLicencing": "CA 135790", + "internalListingNumber": 56789, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Profitable winery with a strong brand and award-winning wines. Real estate included.", + "created": "2023-01-25T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Repair Shop", + "description": "

Thriving Auto Repair Business for Sale

Well-established auto repair shop with a loyal customer base in the heart of Houston. Fully equipped with state-of-the-art diagnostic tools and equipment.

Experienced staff of certified mechanics ready to continue providing top-notch service. Strong financials and growth potential make this an attractive opportunity for the right buyer.

", + "type": "1", + "state": "TX", + "city": "Houston", + "id": "8b085b3b-506c-44dc-b386-f58218bc12fa", + "price": 650000, + "salesRevenue": 950000, + "leasedLocation": false, + "established": 2005, + "employees": 8, + "reasonForSale": "Retirement", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 123456", + "internalListingNumber": 45678, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Solid business with a great reputation. Owner is motivated to sell.", + "created": "2022-09-15T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Company", + "description": "

Well-Established Landscaping Business in Dallas

Successful landscaping company with a strong client base and consistent growth. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Excellent opportunity for someone looking to expand their portfolio or enter the landscaping industry.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "cad25edb-622d-4c30-8b67-787749c1da52", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 987654", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great team in place. Poised for continued growth.", + "created": "2022-11-03T14:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Local Coffee Shop", + "description": "

Charming Coffee Shop in the Heart of Austin

Beloved neighborhood coffee shop known for its unique blends and cozy atmosphere. Prime location with steady foot traffic.

Fully equipped kitchen and seating area. Loyal customer base and strong social media presence. Ideal opportunity for someone passionate about the coffee industry.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "0438003d-e632-477e-9f64-b58925288e2a", + "price": 350000, + "salesRevenue": 500000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 2 weeks of training and support.", + "cashFlow": 100000, + "brokerLicencing": "TX 135790", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Charming shop with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-20T11:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Boutique Hotel", + "description": "

Charming Boutique Hotel in San Antonio

Beautiful 20-room boutique hotel located in the historic district of San Antonio. Consistently high occupancy rates and glowing reviews.

Fully furnished rooms with unique decor and modern amenities. On-site restaurant and bar. Strong financials and loyal customer base. Perfect opportunity for hospitality professionals or investors.

", + "type": "3", + "state": "TX", + "city": "San Antonio", + "id": "e8e98811-9fca-41c2-98fe-e6aaa361d50e", + "price": 3500000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 246810", + "internalListingNumber": 12345, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-maintained property with a great reputation. Solid investment opportunity.", + "created": "2022-12-10T16:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company", + "description": "

Successful HVAC Business in Fort Worth

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced technicians and management team in place. Consistent growth and profitability. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "5044f95c-6bf3-4ba9-80fa-304f9910a541", + "price": 1800000, + "salesRevenue": 3000000, + "leasedLocation": true, + "established": 2000, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 369258", + "internalListingNumber": 54321, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-08-25T13:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dental Practice", + "description": "

Successful Dental Practice in El Paso

Well-established dental practice with a loyal patient base. Modern facility with state-of-the-art equipment.

Experienced staff of dental professionals. Strong financials and consistent growth. Perfect opportunity for a dentist looking to own their own practice or an investor seeking a profitable acquisition.

", + "type": "11", + "state": "TX", + "city": "El Paso", + "id": "aa2eb102-2ee0-4e75-b99d-d528565e8d10", + "price": 1200000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 147852", + "internalListingNumber": 98765, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run practice with a great reputation. Owner is motivated to sell.", + "created": "2022-07-18T10:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Fitness Center", + "description": "

Thriving Fitness Center in Plano

Popular fitness center with a diverse membership base. Fully equipped with modern cardio and strength training equipment.

Experienced staff of certified trainers and instructors. Strong financials and consistent growth. Excellent opportunity for fitness enthusiasts or investors looking for a profitable venture.

", + "type": "7", + "state": "TX", + "city": "Plano", + "id": "1d00e93e-4d7b-454f-919d-f3cdfb19fb7c", + "price": 900000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal member base. Poised for continued growth.", + "created": "2022-09-05T15:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Restaurant Chain", + "description": "

Popular Tex-Mex Restaurant Chain in Texas

Well-established restaurant chain with 5 locations across Texas. Known for its authentic Tex-Mex cuisine and lively atmosphere.

Fully equipped kitchens and dining areas. Experienced staff and management team in place. Strong financials and brand recognition. Perfect opportunity for restaurateurs or investors looking to acquire a thriving business.

", + "type": "13", + "state": "TX", + "city": "Multiple", + "id": "a0024fdb-6d1c-43c5-85e1-8268d6b0ec3c", + "price": 5000000, + "salesRevenue": 7500000, + "leasedLocation": true, + "established": 2000, + "employees": 150, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1500000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-established chain with a strong brand and loyal customer base.", + "created": "2022-11-22T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Accounting Firm", + "description": "

Thriving Accounting Practice in Houston

Well-established accounting firm with a diverse client base. Experienced team of CPAs and support staff.

Strong financials and consistent growth. Excellent opportunity for an accounting professional looking to own their own practice or an investor seeking a profitable acquisition.

", + "type": "11", + "state": "TX", + "city": "Houston", + "id": "9a9fa364-7530-4b80-bbf7-870afec1c3f3", + "price": 1500000, + "salesRevenue": 2000000, + "leasedLocation": true, + "established": 1995, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run firm with a great reputation. Owner is motivated to sell.", + "created": "2022-10-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Manufacturing Company", + "description": "

Successful Manufacturing Business in Dallas

Well-established manufacturing company specializing in custom metal fabrication. Fully equipped facility with modern machinery and equipment.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the manufacturing industry or looking to expand their portfolio.

", + "type": "12", + "state": "TX", + "city": "Dallas", + "id": "9140bc5e-a2b1-48f4-b780-a5cc05c85e5f", + "price": 4000000, + "salesRevenue": 6000000, + "leasedLocation": false, + "established": 1985, + "employees": 50, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-02T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bar and Grill", + "description": "

Thriving Bar and Grill in Austin

Well-established bar and grill with a loyal customer base. Known for its unique cocktails and delicious pub fare.

Fully equipped kitchen and bar area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Austin", + "id": "6c8fd87e-1a6b-4511-95f8-82bf4d2239e7", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 30, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-28T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Auto Body Shop", + "description": "

Thriving Auto Body Shop in San Antonio

Well-established auto body shop with a strong reputation for quality work. Fully equipped with state-of-the-art tools and equipment.

Experienced staff of certified technicians. Strong financials and consistent growth. Excellent opportunity for someone in the auto body industry or looking to expand their portfolio.

", + "type": "1", + "state": "TX", + "city": "San Antonio", + "id": "74a649b7-7ca6-4a6e-b0a2-24136b52cce3", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 1998, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 86420, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-12T13:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Dry Cleaning Business", + "description": "

Established Dry Cleaning Business in Corpus Christi

Well-established dry cleaning business with a loyal customer base. Fully equipped with modern cleaning equipment and machinery.

Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the dry cleaning industry or looking for a profitable investment.

", + "type": "7", + "state": "TX", + "city": "Corpus Christi", + "id": "8fd43afc-b74d-4d07-b366-7e07706ad157", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell.", + "created": "2022-08-05T10:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Restaurant", + "description": "

Profitable Franchise Restaurant in Lubbock

Well-established franchise restaurant with a prime location in Lubbock. Consistently high sales and customer traffic.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone looking to own a proven business model.

", + "type": "10", + "state": "TX", + "city": "Lubbock", + "id": "2effd116-5b8f-4253-a2fe-583a57a73bdd", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-18T14:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Catering Company", + "description": "

Successful Catering Business in Arlington

Well-established catering company with a diverse client base. Known for its delicious food and exceptional service.

Fully equipped commercial kitchen and catering vehicles. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Arlington", + "id": "d7fc5f37-4c5f-4ecd-b26b-26d2aa47e7ce", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-08T11:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Veterinary Clinic", + "description": "

Successful Veterinary Practice in Amarillo

Well-established veterinary clinic with a loyal client base. Modern facility with state-of-the-art equipment.

Experienced staff of veterinarians and support personnel. Strong financials and consistent growth. Excellent opportunity for a veterinarian looking to own their own practice or an investor seeking a profitable acquisition.

", + "type": "11", + "state": "TX", + "city": "Amarillo", + "id": "9982f119-6352-46af-acfa-f28d28ba58ea", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2000, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run practice with a great reputation. Owner is motivated to sell.", + "created": "2022-09-25T09:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Landscaping Business", + "description": "

Thriving Landscaping Company in Waco

Well-established landscaping business with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Perfect opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Waco", + "id": "1658990e-c0b9-4b1f-9f77-92b3535084d7", + "price": 900000, + "salesRevenue": 1400000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-07-15T15:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Plumbing Company", + "description": "

Established Plumbing Business in McAllen

Well-established plumbing company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "McAllen", + "id": "7884811c-2083-4f13-a673-a35921109bba", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 1995, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-05T10:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Bakery and Cafe", + "description": "

Thriving Bakery and Cafe in Midland

Well-established bakery and cafe with a loyal customer base. Known for its delicious pastries and artisan coffee.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Midland", + "id": "99b52861-f07f-4f36-878b-63a537eab74c", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-08-22T13:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Profitable Auto Detailing Shop", + "description": "

Successful Auto Detailing Business in Abilene

Well-established auto detailing shop with a strong reputation for quality work. Fully equipped with state-of-the-art tools and equipment.

Experienced staff of detailing professionals. Strong financials and consistent growth. Excellent opportunity for someone in the auto detailing industry or looking to expand their portfolio.

", + "type": "1", + "state": "TX", + "city": "Abilene", + "id": "c6373c0b-f3d6-44e3-b737-744b7296f3b1", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2015, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-10-10T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Home Healthcare Agency", + "description": "

Successful Home Healthcare Business in Houston

Well-established home healthcare agency with a strong reputation for quality care. Fully licensed and accredited.

Experienced staff of healthcare professionals and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the healthcare industry or looking to expand their portfolio.

", + "type": "11", + "state": "TX", + "city": "Houston", + "id": "879ea68f-0750-44a2-a96a-5440036c4ac2", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": true, + "established": 2005, + "employees": 50, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run agency with a loyal client base. Solid investment opportunity.", + "created": "2022-12-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Sports Bar and Grill", + "description": "

Thriving Sports Bar and Grill in San Antonio

Well-established sports bar and grill with a loyal customer base. Known for its lively atmosphere and delicious pub fare.

Fully equipped kitchen and bar area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "San Antonio", + "id": "bbd4e604-2271-4bb3-b7df-d64b1034c1c6", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2010, + "employees": 35, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-05T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Contracting Business", + "description": "

Profitable Electrical Contracting Company in Dallas

Well-established electrical contracting business with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced electricians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the electrical industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Dallas", + "id": "5b8af4c6-947f-4844-a686-6b51f7253faa", + "price": 3000000, + "salesRevenue": 4500000, + "leasedLocation": false, + "established": 1998, + "employees": 40, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-11-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center", + "description": "

Profitable Franchise Fitness Center in Austin

Well-established franchise fitness center with a prime location in Austin. Consistently high membership and revenue.

Fully equipped with modern cardio and strength training equipment. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for fitness enthusiasts or investors looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Austin", + "id": "f4e161c5-003e-4905-84ce-6f62e8e180db", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a great reputation. Solid investment opportunity.", + "created": "2022-10-12T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Event Planning Business", + "description": "

Successful Event Planning Company in Fort Worth

Well-established event planning business with a diverse client base. Known for its creative designs and exceptional service.

Experienced team of event planners and coordinators. Strong financials and consistent growth. Perfect opportunity for someone in the event planning industry or looking for a profitable investment.

", + "type": "7", + "state": "TX", + "city": "Fort Worth", + "id": "74502aa8-8e4b-4b60-be08-3a536a3b77dc", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2008, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-08-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company", + "description": "

Profitable Roofing Business in El Paso

Well-established roofing company with a strong reputation for quality work. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "El Paso", + "id": "f2a79d6d-b0ee-48cc-9d67-e5df241d8963", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2000, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-02T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Italian Restaurant", + "description": "

Thriving Italian Restaurant in Plano

Well-established Italian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Plano", + "id": "faeb08de-2977-41c5-863e-443bf658243a", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-25T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Auto Repair Shop", + "description": "

Profitable Franchise Auto Repair Shop in Irving

Well-established franchise auto repair shop with a prime location in Irving. Consistently high customer traffic and revenue.

Fully equipped with state-of-the-art diagnostic tools and equipment. Experienced staff of certified mechanics in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the auto repair industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Irving", + "id": "df56205f-1b10-4fdf-92a4-fa49092f8d29", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-07-10T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Child Care Center", + "description": "

Successful Child Care Business in Lubbock

Well-established child care center with a strong reputation for quality care. Fully licensed and accredited.

Experienced staff of early childhood educators and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the child care industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Lubbock", + "id": "f6e3dc8a-3cb8-4969-bc3c-b25431f5fdd8", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run center with a loyal client base. Solid investment opportunity.", + "created": "2022-11-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Craft Brewery and Taproom", + "description": "

Thriving Craft Brewery and Taproom in Corpus Christi

Well-established craft brewery and taproom with a loyal customer base. Known for its unique brews and lively atmosphere.

Fully equipped brewing facility and taproom. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the craft beer industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Corpus Christi", + "id": "9fb0d95e-94e0-464d-b8eb-7f1aa950a1c5", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": true, + "established": 2015, + "employees": 30, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company", + "description": "

Profitable HVAC Business in Laredo

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced HVAC technicians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Laredo", + "id": "23505bcc-8114-4842-9135-33f8fb09e134", + "price": 3000000, + "salesRevenue": 4500000, + "leasedLocation": false, + "established": 2000, + "employees": 40, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Hair Salon", + "description": "

Profitable Franchise Hair Salon in Amarillo

Well-established franchise hair salon with a prime location in Amarillo. Consistently high customer traffic and revenue.

Fully equipped with modern styling stations and equipment. Experienced staff of licensed stylists in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the beauty industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Amarillo", + "id": "f270f656-b063-41cf-8657-6caafc0bd113", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Business", + "description": "

Successful Pet Grooming Salon in Waco

Well-established pet grooming business with a strong reputation for quality care. Fully equipped with modern grooming tools and equipment.

Experienced staff of pet groomers and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the pet care industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Waco", + "id": "3f096a4e-3427-48f9-b6b9-2779dfc33421", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2012, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal client base. Poised for continued growth.", + "created": "2022-08-28T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Mexican Restaurant", + "description": "

Thriving Mexican Restaurant in McAllen

Well-established Mexican restaurant with a loyal customer base. Known for its authentic cuisine and lively atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "McAllen", + "id": "f05bbb68-4709-458d-9742-d779ceb1aaf3", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-10T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Printing Company", + "description": "

Profitable Printing Business in Midland

Well-established printing company with a diverse client base. Fully equipped with modern printing presses and equipment.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the printing industry or looking to expand their portfolio.

", + "type": "12", + "state": "TX", + "city": "Midland", + "id": "5e084aae-fadb-4446-ba43-db9bd4d7fc43", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 1995, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Sandwich Shop", + "description": "

Profitable Franchise Sandwich Shop in Odessa

Well-established franchise sandwich shop with a prime location in Odessa. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Odessa", + "id": "5d377a91-1811-493c-93e8-8daf1b20b189", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-18T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Martial Arts Studio", + "description": "

Successful Martial Arts Studio in Abilene

Well-established martial arts studio with a strong reputation for quality instruction. Fully equipped with modern training equipment and mats.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the martial arts industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Abilene", + "id": "1917ea96-c31e-4995-941b-4a9e1383c34e", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2010, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Smoothie and Juice Bar", + "description": "

Thriving Smoothie and Juice Bar in Beaumont

Well-established smoothie and juice bar with a loyal customer base. Known for its healthy and delicious offerings.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the health food industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Beaumont", + "id": "a628d94c-58f3-4df0-837c-e3c8e47192c2", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2018, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Flooring Company", + "description": "

Profitable Flooring Business in Tyler

Well-established flooring company with a diverse client base. Fully equipped with tools, vehicles, and inventory.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the flooring industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Tyler", + "id": "0d3a865c-31db-4e9c-b126-64958d208bb0", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Tutoring Center", + "description": "

Profitable Franchise Tutoring Center in College Station

Well-established franchise tutoring center with a prime location in College Station. Consistently high student enrollment and revenue.

Fully equipped classrooms and learning materials. Experienced staff of certified teachers in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the education industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "College Station", + "id": "d42c807a-98d0-40b7-a46b-9a15a3998c6a", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-05T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Home Healthcare Agency", + "description": "

Successful Home Healthcare Business in San Marcos

Well-established home healthcare agency with a strong reputation for quality care. Fully licensed and accredited.

Experienced staff of healthcare professionals and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the healthcare industry or looking to expand their portfolio.

", + "type": "11", + "state": "TX", + "city": "San Marcos", + "id": "9a862f71-5dec-4522-9def-e96b090a2fc9", + "price": 2800000, + "salesRevenue": 4000000, + "leasedLocation": true, + "established": 2008, + "employees": 55, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run agency with a loyal client base. Solid investment opportunity.", + "created": "2022-12-12T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Craft Beer Bar", + "description": "

Thriving Craft Beer Bar in New Braunfels

Well-established craft beer bar with a loyal customer base. Known for its rotating selection of unique brews and lively atmosphere.

Fully equipped bar and kitchen area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "New Braunfels", + "id": "b5fcab89-9057-48af-a96d-93acf320d405", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-18T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company", + "description": "

Profitable Plumbing Business in Wichita Falls

Well-established plumbing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Wichita Falls", + "id": "a3ce0880-d291-4d1f-835a-932af136e2cd", + "price": 3500000, + "salesRevenue": 5000000, + "leasedLocation": false, + "established": 2002, + "employees": 45, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 1200000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-11-25T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Pizza Restaurant", + "description": "

Profitable Franchise Pizza Restaurant in Temple

Well-established franchise pizza restaurant with a prime location in Temple. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Temple", + "id": "8919e198-5909-4d15-a50b-a0f9e061a648", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2018, + "employees": 30, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-08T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dry Cleaning Business", + "description": "

Successful Dry Cleaning Company in Lufkin

Well-established dry cleaning business with a strong reputation for quality service. Fully equipped with modern cleaning equipment and machinery.

Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the dry cleaning industry or looking for a profitable investment.

", + "type": "7", + "state": "TX", + "city": "Lufkin", + "id": "d1f5ccc8-3a2c-4d25-ac89-0a4a75d02491", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-08-22T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Landscaping Company", + "description": "

Profitable Landscaping Business in Sherman

Well-established landscaping company with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Excellent opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Sherman", + "id": "99bb5d81-ce8d-462f-a193-2f752dcd0582", + "price": 2200000, + "salesRevenue": 3200000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-15T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Sushi Restaurant", + "description": "

Thriving Sushi Restaurant in Longview

Well-established sushi restaurant with a loyal customer base. Known for its fresh ingredients and creative rolls.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Longview", + "id": "73e2ef04-37ab-4b28-b738-9801f108de18", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Gym", + "description": "

Profitable Franchise Gym in Texarkana

Well-established franchise gym with a prime location in Texarkana. Consistently high membership and revenue.

Fully equipped with modern cardio and strength training equipment. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for fitness enthusiasts or investors looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Texarkana", + "id": "50928a2b-9e4f-44a0-8230-352230ce7e87", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2020, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal member base. Poised for continued growth.", + "created": "2022-10-15T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dance Studio", + "description": "

Successful Dance Studio in Victoria

Well-established dance studio with a strong reputation for quality instruction. Fully equipped with sprung floors and mirrored walls.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the dance industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Victoria", + "id": "d963b091-1469-4c8c-8f7d-b553d8affa34", + "price": 900000, + "salesRevenue": 1300000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Coffee Shop and Cafe", + "description": "

Thriving Coffee Shop and Cafe in Huntsville

Well-established coffee shop and cafe with a loyal customer base. Known for its artisan coffee and delicious pastries.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Huntsville", + "id": "ab5726dc-1036-4c9a-ab7e-97cf6bc03515", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2018, + "employees": 12, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-09-05T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Printing Company", + "description": "

Profitable Printing Business in Conroe

Well-established printing company with a diverse client base. Fully equipped with modern printing presses and equipment.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the printing industry or looking to expand their portfolio.

", + "type": "12", + "state": "TX", + "city": "Conroe", + "id": "46ff0c39-53c3-4a73-b81e-9c044cfae285", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2000, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-10T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Burger Restaurant", + "description": "

Profitable Franchise Burger Restaurant in Nacogdoches

Well-established franchise burger restaurant with a prime location in Nacogdoches. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Nacogdoches", + "id": "d82d6d16-e3cc-4040-88e5-e9aa22d464fa", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 35, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-10-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Yoga Studio", + "description": "

Successful Yoga Studio in Kerrville

Well-established yoga studio with a strong reputation for quality instruction. Fully equipped with mats, props, and a peaceful atmosphere.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the wellness industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Kerrville", + "id": "4817709e-320f-457e-bb40-8dcc6f3c5c50", + "price": 500000, + "salesRevenue": 750000, + "leasedLocation": true, + "established": 2018, + "employees": 10, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 150000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Poised for continued growth.", + "created": "2022-08-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Greek Restaurant", + "description": "

Thriving Greek Restaurant in Denton

Well-established Greek restaurant with a loyal customer base. Known for its authentic cuisine and lively atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Denton", + "id": "088dd4ae-c0a2-4391-a523-3cb51550fafe", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-20T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company", + "description": "

Profitable HVAC Business in Greenville

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced HVAC technicians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Greenville", + "id": "ed72d148-74db-4bd7-896e-dd446dcba318", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 40, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop", + "description": "

Profitable Franchise Ice Cream Shop in Humble

Well-established franchise ice cream shop with a prime location in Humble. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Humble", + "id": "b08b7d7a-85f1-4ff7-abd4-ff06efdb378b", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2018, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-25T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pilates Studio", + "description": "

Successful Pilates Studio in Georgetown

Well-established Pilates studio with a strong reputation for quality instruction. Fully equipped with reformers and other apparatus.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the fitness industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Georgetown", + "id": "17674ced-b4e8-4d34-b9ef-992a5d21bd24", + "price": 700000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-10T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Vietnamese Restaurant", + "description": "

Thriving Vietnamese Restaurant in Harlingen

Well-established Vietnamese restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Harlingen", + "id": "64e0d8c3-f4d1-45e3-8092-8712cdf16f5b", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TX 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-18T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company", + "description": "

Profitable Roofing Business in Coppell

Well-established roofing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "TX", + "city": "Coppell", + "id": "190cc90c-37b0-43e7-8e7e-27fb699bc828", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "TX 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-02T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Donut Shop", + "description": "

Profitable Franchise Donut Shop in Bay City

Well-established franchise donut shop with a prime location in Bay City. Consistently high customer traffic and revenue.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "TX", + "city": "Bay City", + "id": "073e47a3-d910-445d-acec-601a2df7dcd0", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2020, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-20T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Juice Bar in Miami", + "description": "

Successful Juice Bar in the Heart of Miami

Well-established juice bar with a loyal customer base. Known for its fresh, organic ingredients and unique blends.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the health food industry or looking for a profitable investment.

", + "type": "13", + "state": "FL", + "city": "Miami", + "id": "0a6277c6-e30c-4ba4-b978-3a6998b2ca3a", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2015, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "FL 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Auto Repair Shop in Chicago", + "description": "

Profitable Auto Repair Shop in Chicago

Well-established auto repair shop with a diverse client base. Fully equipped with modern diagnostic tools and equipment.

Experienced mechanics and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the automotive industry or looking to expand their portfolio.

", + "type": "1", + "state": "IL", + "city": "Chicago", + "id": "d5d980d1-a99a-4129-b1df-15495fbe312b", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": false, + "established": 2005, + "employees": 20, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "IL 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Yoga Studio in Denver", + "description": "

Thriving Yoga Studio in the Heart of Denver

Well-established yoga studio with a strong reputation for quality instruction. Fully equipped with mats, props, and a peaceful atmosphere.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the wellness industry or looking to expand their portfolio.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "64825501-484a-42af-9ce4-b3c5b78e4a5c", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2018, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "CO 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Owner is motivated to sell quickly.", + "created": "2022-09-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Coffee Shop in Seattle", + "description": "

Profitable Franchise Coffee Shop in the Heart of Seattle

Well-established franchise coffee shop with a prime location in Seattle. Consistently high customer traffic and revenue.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "WA", + "city": "Seattle", + "id": "c0f2fcea-6b12-412e-b90d-a99028165eaa", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 400000, + "brokerLicencing": "WA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-11-05T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Grooming Business in Los Angeles", + "description": "

Successful Pet Grooming Salon in Los Angeles

Well-established pet grooming business with a strong reputation for quality care. Fully equipped with modern grooming tools and equipment.

Experienced staff of pet groomers and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the pet care industry or looking to expand their portfolio.

", + "type": "7", + "state": "CA", + "city": "Los Angeles", + "id": "dc358d21-940e-4879-a575-8fa4de3ff445", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2010, + "employees": 18, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "CA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal client base. Solid investment opportunity.", + "created": "2022-08-28T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Italian Restaurant in Boston", + "description": "

Thriving Italian Restaurant in the Heart of Boston

Well-established Italian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "MA", + "city": "Boston", + "id": "1f26a856-6ab3-4f23-86fe-a20e8e6af4a8", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "MA 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-15T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Atlanta", + "description": "

Profitable Plumbing Business in Atlanta

Well-established plumbing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "GA", + "city": "Atlanta", + "id": "c5e528d3-abbd-402a-9d8a-7a229d1cff12", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "GA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-22T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Fitness Center in Phoenix", + "description": "

Profitable Franchise Fitness Center in Phoenix

Well-established franchise fitness center with a prime location in Phoenix. Consistently high membership and revenue.

Fully equipped with modern cardio and strength training equipment. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for fitness enthusiasts or investors looking for a proven business model.

", + "type": "10", + "state": "AZ", + "city": "Phoenix", + "id": "fc76815f-9e42-47dc-9ab6-a70945162458", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "AZ 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal member base. Solid investment opportunity.", + "created": "2022-09-18T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Dance Studio in Las Vegas", + "description": "

Successful Dance Studio in the Heart of Las Vegas

Well-established dance studio with a strong reputation for quality instruction. Fully equipped with sprung floors and mirrored walls.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the dance industry or looking to expand their portfolio.

", + "type": "7", + "state": "NV", + "city": "Las Vegas", + "id": "33dc7727-d8a9-4ee5-8ac1-0197cfc9494b", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "NV 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Poised for continued growth.", + "created": "2022-07-05T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Sushi Restaurant in Honolulu", + "description": "

Thriving Sushi Restaurant in the Heart of Honolulu

Well-established sushi restaurant with a loyal customer base. Known for its fresh ingredients and creative rolls.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "HI", + "city": "Honolulu", + "id": "ce200a4c-7861-4edb-afb6-1f7f2d37fdd2", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "HI 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-11-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company in Portland", + "description": "

Profitable Roofing Business in Portland

Well-established roofing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "OR", + "city": "Portland", + "id": "93398adc-d91e-4492-b5e4-f8ad356b7cd1", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "OR 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Sandwich Shop in Minneapolis", + "description": "

Profitable Franchise Sandwich Shop in Minneapolis

Well-established franchise sandwich shop with a prime location in Minneapolis. Consistently high customer traffic and revenue.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "MN", + "city": "Minneapolis", + "id": "14aea0b3-a26a-41d4-9f81-86d515846c2d", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2018, + "employees": 18, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "MN 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-10-22T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pilates Studio in Nashville", + "description": "

Successful Pilates Studio in the Heart of Nashville

Well-established Pilates studio with a strong reputation for quality instruction. Fully equipped with reformers and other apparatus.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the fitness industry or looking to expand their portfolio.

", + "type": "7", + "state": "TN", + "city": "Nashville", + "id": "1b197b53-e475-4fae-aa0e-6c376f1b8768", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "TN 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Owner is motivated to sell quickly.", + "created": "2022-08-08T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Korean Restaurant in New York City", + "description": "

Thriving Korean Restaurant in the Heart of New York City

Well-established Korean restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "NY", + "city": "New York City", + "id": "cd626e1b-acb8-4581-adb0-f99115b5bf39", + "price": 2000000, + "salesRevenue": 2800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 700000, + "brokerLicencing": "NY 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-28T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established HVAC Company in Charlotte", + "description": "

Profitable HVAC Business in Charlotte

Well-established HVAC company with a strong reputation for quality service. Fully equipped with trucks, tools, and inventory.

Experienced HVAC technicians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the HVAC industry or looking to expand their portfolio.

", + "type": "7", + "state": "NC", + "city": "Charlotte", + "id": "a89402d2-b673-4e01-9040-df876b2bc36d", + "price": 3000000, + "salesRevenue": 4500000, + "leasedLocation": false, + "established": 2005, + "employees": 40, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 1000000, + "brokerLicencing": "NC 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Hair Salon in Columbus", + "description": "

Profitable Franchise Hair Salon in Columbus

Well-established franchise hair salon with a prime location in Columbus. Consistently high customer traffic and revenue.

Fully equipped with modern styling stations and equipment. Experienced staff of licensed stylists in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the beauty industry or looking for a proven business model.

", + "type": "10", + "state": "OH", + "city": "Columbus", + "id": "05f22244-e510-4d3c-a31b-532703916f41", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2018, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "OH 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-15T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Martial Arts Studio in Philadelphia", + "description": "

Successful Martial Arts Studio in the Heart of Philadelphia

Well-established martial arts studio with a strong reputation for quality instruction. Fully equipped with modern training equipment and mats.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the martial arts industry or looking to expand their portfolio.

", + "type": "7", + "state": "PA", + "city": "Philadelphia", + "id": "8e7c7333-4c17-49c3-b2cd-2c174d7858c3", + "price": 700000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "PA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-22T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Caribbean Restaurant in Washington, D.C.", + "description": "

Thriving Caribbean Restaurant in the Heart of Washington, D.C.

Well-established Caribbean restaurant with a loyal customer base. Known for its authentic cuisine and lively atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "DC", + "city": "Washington", + "id": "b148ad7f-7f4a-4319-bc8c-df23cf85be3b", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "DC 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Landscaping Company in St. Louis", + "description": "

Profitable Landscaping Business in St. Louis

Well-established landscaping company with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Excellent opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "MO", + "city": "St. Louis", + "id": "d4ad4cc8-f38d-4eb7-8fd5-48fa7dd3fa34", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "MO 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-18T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Ice Cream Shop in Milwaukee", + "description": "

Profitable Franchise Ice Cream Shop in Milwaukee

Well-established franchise ice cream shop with a prime location in Milwaukee. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "WI", + "city": "Milwaukee", + "id": "1126637a-17e2-4097-a7be-d16bf4cde6a7", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2020, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "WI 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Bakery and Cafe in San Francisco", + "description": "

Successful Bakery and Cafe in the Heart of San Francisco

Well-established bakery and cafe with a loyal customer base. Known for its artisan bread and delicious pastries.

Fully equipped kitchen and serving area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "CA", + "city": "San Francisco", + "id": "f4028b57-257c-4f13-ab65-9c020cb4460d", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "CA 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Dry Cleaning Business in Boston", + "description": "

Profitable Dry Cleaning Business in Boston

Well-established dry cleaning business with a diverse client base. Fully equipped with modern cleaning equipment and machinery.

Experienced staff and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the dry cleaning industry or looking to expand their portfolio.

", + "type": "7", + "state": "MA", + "city": "Boston", + "id": "336cab37-5476-4fe2-8371-145a4d31f268", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": false, + "established": 2005, + "employees": 15, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 250000, + "brokerLicencing": "MA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-22T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Craft Beer Bar in Portland", + "description": "

Thriving Craft Beer Bar in the Heart of Portland

Well-established craft beer bar with a loyal customer base. Known for its rotating selection of unique brews and lively atmosphere.

Fully equipped bar and kitchen area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the hospitality industry or looking for a profitable investment.

", + "type": "13", + "state": "OR", + "city": "Portland", + "id": "221cc0fd-e915-40bd-90de-d7ae705404fd", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "OR 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-09-08T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Burger Restaurant in Miami", + "description": "

Profitable Franchise Burger Restaurant in Miami

Well-established franchise burger restaurant with a prime location in Miami. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "FL", + "city": "Miami", + "id": "08fc10d5-0406-47ba-83b3-5998402deef5", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": true, + "established": 2015, + "employees": 30, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 600000, + "brokerLicencing": "FL 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-11-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pet Boarding Business in Seattle", + "description": "

Successful Pet Boarding Facility in Seattle

Well-established pet boarding business with a strong reputation for quality care. Fully equipped with modern kennels and play areas.

Experienced staff of pet care professionals and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the pet care industry or looking to expand their portfolio.

", + "type": "7", + "state": "WA", + "city": "Seattle", + "id": "aa56a294-c3a0-4b61-ad8a-251b11f75097", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": false, + "established": 2010, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "WA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal client base. Solid investment opportunity.", + "created": "2022-08-25T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Thai Restaurant in Chicago", + "description": "

Thriving Thai Restaurant in the Heart of Chicago

Well-established Thai restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "IL", + "city": "Chicago", + "id": "abff3871-6a62-4da8-aca4-bdf86c280c68", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2018, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "IL 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-10-12T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Electrical Contracting Business in Denver", + "description": "

Profitable Electrical Contracting Company in Denver

Well-established electrical contracting business with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced electricians and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the electrical industry or looking to expand their portfolio.

", + "type": "7", + "state": "CO", + "city": "Denver", + "id": "1dff946c-170b-444a-aa96-f4e5d43cd3ae", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "CO 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-28T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Pizza Restaurant in Phoenix", + "description": "

Profitable Franchise Pizza Restaurant in Phoenix

Well-established franchise pizza restaurant with a prime location in Phoenix. Consistently high customer traffic and revenue.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "AZ", + "city": "Phoenix", + "id": "0c69092c-438f-4aa3-9883-baff123245c2", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2015, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 500000, + "brokerLicencing": "AZ 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Solid investment opportunity.", + "created": "2022-09-05T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Music School in Nashville", + "description": "

Successful Music School in the Heart of Nashville

Well-established music school with a strong reputation for quality instruction. Fully equipped with instruments and teaching rooms.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the music education industry or looking to expand their portfolio.

", + "type": "7", + "state": "TN", + "city": "Nashville", + "id": "0eaf0b61-637c-4549-944a-dd3bbbf00f78", + "price": 900000, + "salesRevenue": 1300000, + "leasedLocation": true, + "established": 2012, + "employees": 15, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 300000, + "brokerLicencing": "TN 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run school with a loyal student base. Poised for continued growth.", + "created": "2022-07-18T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Vietnamese Restaurant in Houston", + "description": "

Thriving Vietnamese Restaurant in the Heart of Houston

Well-established Vietnamese restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "TX", + "city": "Houston", + "id": "4d2db33c-bfcc-4d52-b8be-7477adb71d4e", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2015, + "employees": 20, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "TX 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Owner is motivated to sell quickly.", + "created": "2022-11-08T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Plumbing Company in Las Vegas", + "description": "

Profitable Plumbing Business in Las Vegas

Well-established plumbing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced plumbers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the plumbing industry or looking to expand their portfolio.

", + "type": "7", + "state": "NV", + "city": "Las Vegas", + "id": "bf4b5be3-54bb-4f2b-af44-bc73cbea534f", + "price": 2000000, + "salesRevenue": 3000000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 750000, + "brokerLicencing": "NV 159753", + "internalListingNumber": 97531, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-15T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Salon in Atlanta", + "description": "

Profitable Franchise Salon in Atlanta

Well-established franchise salon with a prime location in Atlanta. Consistently high customer traffic and revenue.

Fully equipped with modern styling stations and equipment. Experienced staff of licensed stylists in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the beauty industry or looking for a proven business model.

", + "type": "10", + "state": "GA", + "city": "Atlanta", + "id": "fd46bbe5-2a6d-48ac-92d0-5379335943ef", + "price": 1000000, + "salesRevenue": 1500000, + "leasedLocation": true, + "established": 2018, + "employees": 18, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 300000, + "brokerLicencing": "GA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Poised for continued growth.", + "created": "2022-10-02T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Yoga Studio in Honolulu", + "description": "

Successful Yoga Studio in the Heart of Honolulu

Well-established yoga studio with a strong reputation for quality instruction. Fully equipped with mats, props, and a peaceful atmosphere.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the wellness industry or looking to expand their portfolio.

", + "type": "7", + "state": "HI", + "city": "Honolulu", + "id": "30388d15-cfeb-478f-92e9-bce829d6e2b1", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "HI 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Owner is motivated to sell quickly.", + "created": "2022-08-28T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Indian Restaurant in Washington, D.C.", + "description": "

Thriving Indian Restaurant in the Heart of Washington, D.C.

Well-established Indian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "DC", + "city": "Washington", + "id": "d8d0f4e3-fdbf-4c4b-b2bd-d8847f0d248f", + "price": 1500000, + "salesRevenue": 2200000, + "leasedLocation": true, + "established": 2012, + "employees": 25, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 500000, + "brokerLicencing": "DC 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Solid investment opportunity.", + "created": "2022-11-18T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Roofing Company in Minneapolis", + "description": "

Profitable Roofing Business in Minneapolis

Well-established roofing company with a diverse client base. Fully equipped with trucks, tools, and inventory.

Experienced roofers and management team in place. Strong financials and consistent growth. Excellent opportunity for someone in the roofing industry or looking to expand their portfolio.

", + "type": "7", + "state": "MN", + "city": "Minneapolis", + "id": "b4a18ab1-4a78-4f19-a7f7-34096bf6e390", + "price": 2500000, + "salesRevenue": 3500000, + "leasedLocation": false, + "established": 2005, + "employees": 35, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 800000, + "brokerLicencing": "MN 951753", + "internalListingNumber": 13579, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Poised for continued growth.", + "created": "2022-12-05T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Frozen Yogurt Shop in Charlotte", + "description": "

Profitable Franchise Frozen Yogurt Shop in Charlotte

Well-established franchise frozen yogurt shop with a prime location in Charlotte. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "NC", + "city": "Charlotte", + "id": "1bce3a49-aee0-4143-a42f-74657a7403ad", + "price": 800000, + "salesRevenue": 1200000, + "leasedLocation": true, + "established": 2020, + "employees": 15, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 250000, + "brokerLicencing": "NC 753951", + "internalListingNumber": 24680, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-22T16:45:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Thriving Pilates Studio in Columbus", + "description": "

Successful Pilates Studio in the Heart of Columbus

Well-established Pilates studio with a strong reputation for quality instruction. Fully equipped with reformers and other apparatus.

Experienced staff of certified instructors and support personnel. Strong financials and consistent growth. Excellent opportunity for someone in the fitness industry or looking to expand their portfolio.

", + "type": "7", + "state": "OH", + "city": "Columbus", + "id": "007164c3-b55b-4ffc-ad74-78834d1f8f5f", + "price": 700000, + "salesRevenue": 1000000, + "leasedLocation": true, + "established": 2015, + "employees": 12, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 60 days of training and support.", + "cashFlow": 200000, + "brokerLicencing": "OH 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run studio with a loyal client base. Solid investment opportunity.", + "created": "2022-07-15T09:00:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Popular Peruvian Restaurant in Philadelphia", + "description": "

Thriving Peruvian Restaurant in the Heart of Philadelphia

Well-established Peruvian restaurant with a loyal customer base. Known for its authentic cuisine and inviting atmosphere.

Fully equipped kitchen and dining area. Experienced staff and management team in place. Strong financials and consistent growth. Perfect opportunity for someone in the food service industry or looking for a profitable investment.

", + "type": "13", + "state": "PA", + "city": "Philadelphia", + "id": "ac1d58bf-6ec8-4fa9-bece-c038e4ea5777", + "price": 1200000, + "salesRevenue": 1800000, + "leasedLocation": true, + "established": 2012, + "employees": 20, + "reasonForSale": "Owner pursuing other business interests", + "supportAndTraining": "Owner will provide 30 days of training and support.", + "cashFlow": 400000, + "brokerLicencing": "PA 951753", + "internalListingNumber": 13579, + "realEstateIncluded": false, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a great reputation. Poised for continued growth.", + "created": "2022-10-28T14:15:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Established Landscaping Company in Baltimore", + "description": "

Profitable Landscaping Business in Baltimore

Well-established landscaping company with a diverse client base. Fully equipped with trucks, trailers, and all necessary equipment.

Experienced crew of landscapers and managers in place. Strong financials and consistent growth. Excellent opportunity for someone in the landscaping industry or looking to expand their portfolio.

", + "type": "7", + "state": "MD", + "city": "Baltimore", + "id": "b222f48d-9b63-49d7-9908-0afe72534506", + "price": 1800000, + "salesRevenue": 2500000, + "leasedLocation": false, + "established": 2008, + "employees": 30, + "reasonForSale": "Owner retiring", + "supportAndTraining": "Owner will provide 90 days of training and support.", + "cashFlow": 600000, + "brokerLicencing": "MD 753951", + "internalListingNumber": 24680, + "realEstateIncluded": true, + "franchiseResale": false, + "draft": false, + "internals": "Well-run business with a loyal customer base. Solid investment opportunity.", + "created": "2022-12-12T11:30:00.000Z" + }, + { + "userId": "", + "listingsCategory": "business", + "title": "Successful Franchise Bubble Tea Shop in San Diego", + "description": "

Profitable Franchise Bubble Tea Shop in San Diego

Well-established franchise bubble tea shop with a prime location in San Diego. Consistently high customer traffic and revenue.

Fully equipped serving area and seating. Experienced staff and management team in place. Strong brand recognition and support from the franchisor. Excellent opportunity for someone in the food service industry or looking for a proven business model.

", + "type": "10", + "state": "CA", + "city": "San Diego", + "id": "7f197b7f-c3ca-4ae9-bb0c-68acdd9371eb", + "price": 600000, + "salesRevenue": 900000, + "leasedLocation": true, + "established": 2020, + "employees": 12, + "reasonForSale": "Owner relocating", + "supportAndTraining": "Franchisor will provide comprehensive training and ongoing support.", + "cashFlow": 200000, + "brokerLicencing": "CA 159753", + "internalListingNumber": 97531, + "realEstateIncluded": false, + "franchiseResale": true, + "draft": false, + "internals": "Well-run franchise with a loyal customer base. Owner is motivated to sell quickly.", + "created": "2022-09-08T16:45:00.000Z" + } +] \ No newline at end of file diff --git a/crawler/data/commercials.json b/crawler/data/commercials.json index 23b33d5..5812244 100644 --- a/crawler/data/commercials.json +++ b/crawler/data/commercials.json @@ -12,8 +12,8 @@ "description": "

Exceptional opportunity to acquire a high-visibility retail space in the heart of downtown Houston. This 5,000 sq ft space is situated on a bustling street with heavy foot traffic and easy access to public transportation.

Key Features:

- Prime location in a thriving business district
- Suitable for a variety of retail businesses
- High ceilings and open floor plan
- Ample parking available in nearby garages

Don't miss this chance to establish your business in one of Houston's most desirable locations. Contact us today to schedule a viewing.

", "type": "100", "imageOrder": [] - }, - { + }, + { "id": "3c6d021g-9e7b-4f69-b2c3-0d8e64g1h2i9", "temporary": false, "userId": "", @@ -26,12 +26,12 @@ "description": "

Turn-key opportunity to own a well-established auto repair shop in Los Angeles. This 8,000 sq ft facility comes fully equipped with lifts, diagnostic tools, and a loyal customer base.

The shop features:

- 6 service bays
- Reception area and customer waiting room
- Office space for management
- Secure parking for customers and employees

With a great location and a strong reputation in the community, this auto shop is poised for continued success. Contact us for more information and to schedule a tour.

", "type": "102", "imageOrder": [] - }, - { + }, + { "id": "4d7e132h-0f8c-4g70-c3d4-1e9f75h2i3j0", "temporary": false, "userId": "", - "listingsCategory": "commercialProperty", + "listingsCategory": "commercialProperty", "title": "Waterfront Restaurant with Marina", "state": "FL", "hasImages": true, @@ -40,23 +40,23 @@ "description": "

Stunning Waterfront Restaurant and Marina

Rare opportunity to acquire a thriving waterfront restaurant and marina in beautiful Miami, Florida. This unique property offers both a successful restaurant business and income from boat slips.

The property includes:

- 150-seat restaurant with outdoor patio seating
- Fully equipped commercial kitchen
- 20 boat slips with water and electric hookups
- Fuel dock and pump-out station
- Ample parking for customers and boat owners

Enjoy stunning views of the Miami skyline while generating income from multiple sources. Don't miss this incredible opportunity to own a piece of paradise.

", "type": "104", "imageOrder": [] - }, - { + }, + { "id": "5e8f243i-1g9d-4h81-d4e5-2f0g86i3j4k1", "temporary": false, - "userId": "", + "userId": "", "listingsCategory": "commercialProperty", "title": "Trophy Hunting Ranch", "state": "TX", - "hasImages": true, + "hasImages": true, "price": 12000000, "city": "Kerrville", "description": "

Incredible opportunity to own a premier trophy hunting ranch in the heart of Texas Hill Country. This 5,000-acre ranch features diverse terrain, including rolling hills, dense brush, and open meadows, providing ideal habitat for trophy whitetail deer, exotic game, and upland birds.

Ranch Highlights:

- Luxurious 8,000 sq ft main lodge with 8 bedrooms and 10 bathrooms
- 3 additional guest cabins for hunters and staff
- 10 well-maintained hunting blinds and feeders
- Stocked fishing pond and creek access
- Paved roads throughout the property

With a proven track record of producing trophy-class animals and generating significant income, this hunting ranch is a rare find. Contact us today for more information and to schedule a private tour.

", "type": "101", "imageOrder": [] - }, - { - "id": "6f9g354j-2h0e-4i92-e5f6-3g1h97j4k5l2", + }, + { + "id": "6f9g354j-2h0e-4i92-e5f6-3g1h97j4k5l2", "temporary": false, "userId": "", "listingsCategory": "commercialProperty", @@ -68,1335 +68,2635 @@ "description": "

Luxury apartment complex in the desirable Upper East Side neighborhood of Manhattan. This beautifully maintained building features 50 units, a mix of one, two, and three-bedroom apartments.

Building Amenities:

- 24-hour doorman and concierge service
- State-of-the-art fitness center
- Rooftop terrace with stunning city views
- On-site parking garage
- Pet-friendly

Located just steps from Central Park and surrounded by high-end dining, shopping, and entertainment options, this apartment complex offers an unbeatable investment opportunity in one of the world's most sought-after real estate markets.

", "type": "105", "imageOrder": [] - }, - { - "id": "7g0h465k-3i1f-4j03-f6g7-4h2i08k5l6m3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Timber Investment Opportunity", - "state": "OR", - "hasImages": true, - "price": 18000000, - "city": "Bend", - "description": "

Exceptional timber investment opportunity in the beautiful Pacific Northwest. This 10,000-acre property features a diverse mix of mature and young growth timber, primarily Douglas Fir and Ponderosa Pine.

Property Highlights:

- Sustainably managed for long-term timber production
- Well-maintained network of logging roads
- Multiple streams and water sources throughout the property
- Stunning views of the Cascade Mountains
- Potential for recreational leases or conservation easements

With a strong demand for timber products and a history of responsible management, this property offers a unique opportunity for long-term investment returns and asset diversification.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "8h1i576l-4j2g-4k14-g7h8-5i3j19l6m7n4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Full-Service Car Wash", - "state": "AZ", - "hasImages": true, - "price": 3000000, - "city": "Phoenix", - "description": "

Highly profitable full-service car wash in a prime Phoenix location. This well-established business features a 120-foot tunnel wash, detailing bays, and a customer waiting area.

Car Wash Features:

- State-of-the-art equipment with recent upgrades
- Capacity to wash up to 150 cars per hour
- Loyal customer base with monthly subscription plans
- Ample parking and easy access from major roadways
- Experienced staff in place

Take advantage of this turn-key opportunity to own a thriving car wash business in a growing market. Contact us today for more information and to schedule a tour.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "9i2j687m-5k3h-4l25-h8i9-6j4k20m7n8o5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Historic Bank Building", - "state": "IL", - "hasImages": true, - "price": 2500000, - "city": "Chicago", - "description": "

Iconic Bank Building in Downtown Chicago

Rare opportunity to acquire a piece of Chicago history. This stunning bank building, built in the 1920s, has been beautifully maintained and updated for modern use.

Building Features:

- Grand lobby with original marble floors and ornate ceilings
- Multiple private offices and conference rooms
- Secure vault area with safe deposit boxes
- Modern HVAC and electrical systems
- Located in the heart of Chicago's financial district

This unique property offers endless possibilities for a variety of businesses or investors seeking a prestigious address in one of the world's great cities.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "0j3k798n-6l4i-5m36-i9j0-7k5l31n8o9p6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Convenience Store with Gas Station", - "state": "TX", - "hasImages": true, - "price": 1500000, - "city": "Dallas", - "description": "

High-traffic convenience store and gas station located in a bustling Dallas suburb. This profitable business offers a one-stop-shop for snacks, beverages, and fuel.

Property Features:

- 3,000 sq ft convenience store with well-stocked inventory
- 6 double-sided fuel pumps with recent upgrades
- Large parking area for customers
- Beer and wine sales for additional revenue
- Long-term lease in place with option to renew

With a strong customer base and proven track record of success, this convenience store and gas station is an excellent investment opportunity in a growing market.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "1k4l809o-7m5j-6n47-j0k1-8l6m42o9p0q7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Warehouse Distribution Center", - "state": "CA", - "hasImages": true, - "price": 20000000, - "city": "Riverside", - "description": "

Massive warehouse distribution center strategically located near major highways and the Ports of Los Angeles and Long Beach. This state-of-the-art facility is perfectly positioned to serve the growing demand for logistics and e-commerce fulfillment.

Warehouse Features:

- 500,000 sq ft of flexible warehouse space
- 32-foot clear height ceilings
- 50 dock-high loading doors
- ESFR sprinkler system
- Ample parking for trucks and employees

With a prime location and modern amenities, this warehouse distribution center offers an exceptional opportunity for businesses looking to expand or optimize their supply chain operations in Southern California.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "2l5m910p-8n6k-7o58-k1l2-9m7n53p0q1r8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Mixed-Use Development Opportunity", - "state": "NY", - "hasImages": true, - "price": 15000000, - "city": "Brooklyn", - "description": "

Prime Development Site in Williamsburg

Incredible opportunity to develop a mixed-use project in the heart of Williamsburg, one of Brooklyn's most desirable neighborhoods. This 20,000 sq ft lot is zoned for residential and commercial use.

Property Highlights:

- Zoned for up to 60,000 sq ft of development
- Ideal for rental apartments, condos, or office space
- Excellent access to public transportation
- Surrounded by trendy restaurants, shops, and entertainment venues
- Rapidly growing market with strong demand for new development

With its prime location and flexible zoning, this development site offers endless possibilities for investors and developers looking to capitalize on the booming Brooklyn real estate market.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "3m6n021q-9o7l-8p69-l2m3-0n8o75q1r2s9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Upscale Golf Course", - "state": "FL", - "hasImages": true, - "price": 12000000, - "city": "Naples", - "description": "

Championship golf course in the exclusive community of Naples, Florida. This beautifully maintained course offers a challenging and enjoyable experience for golfers of all skill levels.

Golf Course Features:

- 18-hole, par 72 course designed by a renowned architect
- Lush fairways and well-manicured greens
- Full-service clubhouse with pro shop and dining facilities
- Practice range and short-game area
- Cart barn and maintenance facilities included

Situated in a prestigious community known for its luxury homes and amenities, this golf course presents a unique opportunity to own a profitable business in a highly desirable location.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "4n7o132r-0p8m-9q81-m3n4-1o9p86r2s3t0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Retail Pharmacy in Growing Market", - "state": "TX", - "hasImages": true, - "price": 2500000, - "city": "San Antonio", - "description": "

Well-established retail pharmacy in a rapidly growing San Antonio suburb. This thriving business has a loyal customer base and strong relationships with local healthcare providers.

Pharmacy Features:

- 3,500 sq ft retail space with drive-thru window
- Fully equipped prescription dispensing area
- Large over-the-counter product selection
- Experienced staff, including pharmacists and technicians
- Growing customer base with potential for expansion

Take advantage of this opportunity to acquire a profitable pharmacy in a market with increasing demand for healthcare services. Contact us today for more information and to schedule a tour.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "5o8p354s-1q9n-0r02-n4o5-2p0q97s3t4u1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Industrial Manufacturing Facility", - "state": "OH", - "hasImages": true, - "price": 8000000, - "city": "Cleveland", - "description": "

Fully Equipped Manufacturing Facility

Expansive industrial property with a well-maintained manufacturing facility. This property offers ample space for production, storage, and distribution.

Property Highlights:

- 150,000 sq ft manufacturing area with 30-foot ceilings
- 50,000 sq ft of warehouse space
- 10,000 sq ft of office space
- 5 loading docks and 2 drive-in doors
- Heavy power and natural gas service

Centrally located in Cleveland's industrial district, this property provides easy access to major highways and a skilled labor force. An excellent opportunity for manufacturers looking to expand or relocate their operations.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "6p9q465t-2r0o-1s13-o5p6-3q1r08t4u5v2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Motel Investment Opportunity", - "state": "AZ", - "hasImages": true, - "price": 4500000, - "city": "Flagstaff", - "description": "

Profitable motel located in the heart of Flagstaff, a popular destination for tourists visiting the Grand Canyon and other natural wonders of the Southwest.

Motel Features:

- 75 well-appointed guest rooms
- Outdoor swimming pool and hot tub
- Complimentary continental breakfast area
- On-site laundry facilities
- Ample parking for guests

With a strong occupancy rate and a prime location near major attractions, this motel offers a solid investment opportunity in a thriving tourism market. Contact us today for more information and to request financial data.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "7q0r576u-3s1p-2t24-p6q7-4r2s19u5v6w3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Grocery-Anchored Retail Center", - "state": "TX", - "hasImages": true, - "price": 12000000, - "city": "Houston", - "description": "

Highly desirable grocery-anchored retail center in a densely populated Houston suburb. This well-maintained property features a diverse mix of national and local tenants.

Property Highlights:

- 80,000 sq ft of retail space
- Anchored by a popular grocery store
- 95% occupied with long-term leases
- Ample parking and easy access from major roadways
- Strong demographics and high traffic counts

With a stable tenant base and a prime location in a growing market, this retail center offers investors a reliable income stream and the potential for long-term appreciation.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "8r1s687v-4t2q-3u35-q7r8-5s3t20v6w7x4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Hunting Ranch with Mineral Rights", - "state": "TX", - "hasImages": true, - "price": 15000000, - "city": "Amarillo", - "description": "

Impressive hunting ranch spanning 8,000 acres in the Texas Panhandle. This property features diverse terrain, abundant wildlife, and valuable mineral rights.

Ranch Features:

- Prime hunting for whitetail deer, quail, and turkey
- Multiple ponds and creeks throughout the property
- Comfortable lodge with 5 bedrooms and 4 bathrooms
- Caretaker's house and equipment barns
- 50% mineral rights convey with the sale

This exceptional ranch offers a rare combination of recreational opportunities and passive income potential from mineral rights. Contact us today to learn more about this unique investment opportunity.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "9s2t798w-5u3r-4v46-r8s9-6t4u31w7x8y5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Waterfront Restaurant on Lake Travis", - "state": "TX", - "hasImages": true, - "price": 3500000, - "city": "Austin", - "description": "

Stunning Lake Travis Restaurant

One-of-a-kind waterfront restaurant on the shores of Lake Travis. This popular dining destination features breathtaking views and a loyal customer base.

Restaurant Features:

- 6,000 sq ft of indoor and outdoor dining space
- Large patio with boat slips for customers
- Fully equipped commercial kitchen
- Liquor license and established bar business
- Ample parking and easy access from nearby marinas

Take advantage of this opportunity to own a profitable restaurant in one of Texas' most desirable locations. Contact us today for more information and to schedule a tour.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "0t3u809x-6v4s-5w57-s9t0-7u5v42x8y9z6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Class A Office Building", - "state": "TX", - "hasImages": true, - "price": 25000000, - "city": "Dallas", - "description": "

Prestigious Class A office building in the heart of Dallas' vibrant Uptown district. This impeccably maintained property offers a premier business address and modern amenities.

Building Features:

- 200,000 sq ft of rentable office space
- High-end finishes and efficient floor plates
- Fully leased to a diverse mix of credit tenants
- On-site parking garage and ground-floor retail
- LEED Gold certified for energy efficiency

Situated in one of Dallas' most desirable office markets, this investment-grade property presents a unique opportunity for investors seeking stable cash flow and long-term appreciation potential.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "1u4v910y-7w5t-6x68-t0u1-8v6w53y9z0a7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Upscale Sports Bar and Grill", - "state": "TX", - "hasImages": true, - "price": 2000000, - "city": "San Antonio", - "description": "

Popular sports bar and grill in a high-traffic San Antonio entertainment district. This well-established business features a loyal customer base and strong sales.

Business Features:

- 8,000 sq ft of dining and bar space
- Multiple large-screen TVs and state-of-the-art sound system
- Full kitchen with top-of-the-line equipment
- Outdoor patio with additional seating
- Liquor license and experienced staff in place

With a prime location and a proven track record of success, this sports bar and grill offers a turnkey opportunity for investors or owner-operators looking to acquire a profitable business in a growing market.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "2v5w021z-8x6u-7y79-u1v2-9w7x64z0a1b8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Marina with Boat Storage", - "state": "FL", - "hasImages": true, - "price": 10000000, - "city": "Fort Lauderdale", - "description": "

Full-Service Marina on the Intracoastal Waterway

Well-maintained marina with boat storage and a range of amenities. This property offers a prime location on the Intracoastal Waterway, just minutes from the Atlantic Ocean.

Marina Features:

- 150 wet slips accommodating boats up to 100 feet
- Dry stack storage for 200 boats
- Fuel dock and pump-out station
- Ship's store and boat rental business
- Ample parking and easy access from major roadways

With a strong demand for boat storage and a growing boating community, this marina presents a unique investment opportunity in the heart of South Florida's yachting capital.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "3w6x132a-9y7v-8z80-v2w3-0x8y75a1b2c9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Airport Hangar and Office Complex", - "state": "TX", - "hasImages": true, - "price": 6000000, - "city": "Houston", - "description": "

Rare opportunity to acquire an airport hangar and office complex at Houston Executive Airport. This well-maintained property offers a turnkey solution for aviation-related businesses.

Property Features:

- 30,000 sq ft hangar with space for multiple aircraft
- 10,000 sq ft of office space
- Ample parking for employees and visitors
- Direct taxiway access
- Long-term lease in place with option to renew

Strategically located at a growing general aviation airport, this hangar and office complex is ideal for charter operators, maintenance providers, or corporate flight departments seeking a presence in the Houston market.

", - "type": "106", - "imageOrder": [] - }, - { - "id": "4x7y243b-0z8w-9a91-w3x4-1y9z86b2c3d0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Industrial Flex Space", - "state": "CA", - "hasImages": true, - "price": 12000000, - "city": "San Diego", - "description": "

Versatile industrial flex space in the Miramar submarket of San Diego. This property offers a mix of warehouse, manufacturing, and office space, making it ideal for a wide range of businesses.

Property Features:

- 80,000 sq ft of total space
- 60,000 sq ft of warehouse/manufacturing space
- 20,000 sq ft of office space
- 24-foot clear height ceilings
- 10 grade-level loading doors

Located in a highly desirable industrial park with easy access to major freeways, this flex space presents an excellent opportunity for investors or owner-users seeking a foothold in the tight San Diego industrial market.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "5y8z354c-1a9x-0b03-x4y5-2z0a97c3d4e1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Religious Facility and School", - "state": "IL", - "hasImages": true, - "price": 3000000, - "city": "Chicago", - "description": "

Multipurpose Religious Facility

Well-maintained religious facility with an attached school in a peaceful Chicago neighborhood. This property offers a turnkey solution for a growing congregation or community organization.

Property Features:

- 15,000 sq ft of worship space
- 10,000 sq ft of classroom and office space
- Commercial kitchen and fellowship hall
- Ample parking for members and visitors
- Playground and outdoor recreation areas

Situated in a diverse and welcoming community, this religious facility and school presents a unique opportunity for a variety of faith-based or educational uses.

", - "type": "106", - "imageOrder": [] - }, - { - "id": "6z9a576d-2b0y-1c14-y5z6-3a1b08d4e5f2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Beachfront Resort and Spa", - "state": "HI", - "hasImages": true, - "price": 50000000, - "city": "Maui", - "description": "

Luxurious beachfront resort and spa on the island of Maui. This iconic property offers a once-in-a-lifetime opportunity to acquire a premier hospitality asset in a world-renowned destination.

Resort Features:

- 200 elegantly appointed guest rooms and suites
- Full-service spa and fitness center
- Multiple dining options, including fine dining and casual fare
- Infinity pool and direct beach access
- Event space for weddings and conferences

With a prime location on one of Maui's most stunning beaches, this resort and spa offers unparalleled potential for investors seeking a trophy asset in the highly sought-after Hawaiian market.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "7a0b687e-3c1z-2d25-z6a7-4b2c19e5f6g3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Self-Storage Facility", - "state": "AZ", - "hasImages": true, - "price": 8000000, - "city": "Phoenix", - "description": "

Highly profitable self-storage facility in a rapidly growing Phoenix suburb. This well-maintained property offers a mix of standard and climate-controlled units to meet the diverse needs of customers.

Facility Features:

- 80,000 sq ft of rentable storage space
- 600 units ranging from 5x5 to 10x30
- Gated entry and 24-hour video surveillance
- On-site management office and retail store
- Room for expansion on adjacent land parcel

With strong occupancy rates and a proven track record of success, this self-storage facility presents an attractive investment opportunity in a market with high demand for storage solutions.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "8b1c798f-4d2a-3e36-a7b8-5c3d20f6g7h4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Brewery and Taproom", - "state": "CO", - "hasImages": true, - "price": 2500000, - "city": "Denver", - "description": "

Craft Brewery in the Heart of Denver

Award-winning craft brewery and taproom in a prime Denver location. This popular destination features a loyal customer base and a reputation for producing innovative and high-quality beers.

Brewery Features:

- 10,000 sq ft brewing facility with state-of-the-art equipment
- 2,500 sq ft taproom with indoor and outdoor seating
- Established distribution network and retail partnerships
- Experienced staff, including brewers and sales team
- Potential for expansion and increased production

With a strong brand presence and a prime location in one of the nation's craft beer capitals, this brewery and taproom offers a unique opportunity for investors or entrepreneurs looking to enter the thriving craft beer industry.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "9c2d809g-5e3b-4f47-b8c9-6d4e31g7h8i5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Retail Strip Center", - "state": "TX", - "hasImages": true, - "price": 5000000, - "city": "San Antonio", - "description": "

Well-located retail strip center in a high-traffic area of San Antonio. This property features a diverse mix of national and local tenants, providing a stable income stream for investors.

Property Highlights:

- 25,000 sq ft of retail space
- 100% occupied with long-term leases
- Anchor tenant is a popular grocery store
- Ample parking and easy access from major roadways
- Strong demographics and population growth in the area

With a proven track record of success and a prime location in a growing market, this retail strip center presents an attractive opportunity for investors seeking a reliable and profitable investment.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "0d3e910h-6f4c-5g58-c9d0-7e5f42h8i9j6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Car Dealership and Service Center", - "state": "FL", - "hasImages": true, - "price": 15000000, - "city": "Miami", - "description": "

Highly successful car dealership and service center in a prime Miami location. This well-established business features a strong brand presence and a loyal customer base.

Dealership Features:

- 50,000 sq ft showroom and service center
- Franchise agreement with a major automotive brand
- Experienced sales and service staff in place
- Large inventory of new and pre-owned vehicles
- Strong revenue and profit growth potential

Situated in a high-traffic area with excellent visibility, this car dealership and service center presents a unique opportunity for investors or automotive industry professionals seeking a profitable and well-established business in a thriving market.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "1e4f021i-7g5d-6h69-d1e2-8f6g53i9j0k7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Mobile Home Park", - "state": "AZ", - "hasImages": true, - "price": 6000000, - "city": "Tucson", - "description": "

Well-Maintained Mobile Home Park

Profitable mobile home park in a desirable Tucson location. This property features a mix of park-owned and tenant-owned homes, providing a stable and diversified income stream.

Park Features:

- 100 mobile home sites on 20 acres
- 90% occupancy with long-term tenants
- Park-owned homes for additional rental income
- On-site management office and maintenance staff
- Amenities include a swimming pool, clubhouse, and playground

With strong demand for affordable housing and a proven track record of success, this mobile home park offers investors a reliable and profitable investment opportunity in a growing market.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "2f5g132j-8h6e-7i80-e2f3-9g7h64j1k2l8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Assisted Living Facility", - "state": "CA", - "hasImages": true, - "price": 20000000, - "city": "San Diego", - "description": "

Well-appointed assisted living facility in a beautiful San Diego neighborhood. This property offers a comfortable and caring environment for seniors, with a range of amenities and services.

Facility Features:

- 75 spacious studio and one-bedroom apartments
- 24-hour staffing and medical support
- Restaurant-style dining and specialized meal plans
- On-site physical therapy and wellness programs
- Landscaped grounds and outdoor recreation areas

With a strong reputation and high occupancy rates, this assisted living facility presents an excellent opportunity for investors seeking a profitable and rewarding investment in the growing senior housing market.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "3g6h243k-9i7f-8j92-f3g4-0h8i75k2l3m9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Fitness Center and Gym", - "state": "NY", - "hasImages": true, - "price": 3000000, - "city": "New York City", - "description": "

State-of-the-Art Fitness Center in Manhattan

High-end fitness center and gym in a prime Manhattan location. This popular facility features a loyal membership base and a reputation for providing exceptional fitness experiences.

Gym Features:

- 15,000 sq ft of workout space
- Top-of-the-line cardio and strength equipment
- Group fitness studios and personal training areas
- Locker rooms with premium amenities
- Juice bar and retail shop

Situated in a densely populated and affluent neighborhood, this fitness center and gym offers investors a unique opportunity to acquire a profitable and well-established business in the heart of New York City.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "4h7i354l-0j8g-9k03-g4h5-1i9j86l3m4n0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Medical Office Building", - "state": "TX", - "hasImages": true, - "price": 12000000, - "city": "Houston", - "description": "

Highly desirable medical office building in the heart of Houston's renowned Texas Medical Center. This property offers a prime location and a diverse mix of healthcare tenants.

Building Features:

- 50,000 sq ft of medical office space
- Fully leased to a variety of healthcare providers
- State-of-the-art medical infrastructure and technology
- Ample parking for patients and staff
- Adjacent to major hospitals and research facilities

With strong demand for medical office space in the Texas Medical Center and a stable tenant base, this investment opportunity offers investors a reliable income stream and the potential for long-term appreciation.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "5i8j465m-1k9h-0l14-h5i6-2j0k97m4n5o1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Winery and Vineyard", - "state": "CA", - "hasImages": true, - "price": 25000000, - "city": "Napa", - "description": "

Stunning winery and vineyard estate in the heart of Napa Valley. This iconic property features award-winning wines, beautiful grounds, and a loyal customer base.

Estate Features:

- 50 acres of premium vineyards
- State-of-the-art winemaking facility
- Elegant tasting room and event spaces
- Historic estate home for owner or guest accommodations
- Strong brand recognition and distribution network

With a prime location in one of the world's most renowned wine regions, this winery and vineyard offers investors a rare opportunity to acquire a trophy asset with significant revenue potential and lifestyle benefits.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "7k0l687o-3m1j-2n24-j6k7-4l2m19o5p6q3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Retail Shopping Center", - "state": "TX", - "hasImages": true, - "price": 18000000, - "city": "Dallas", - "description": "

Profitable retail shopping center in a prime Dallas location. This well-maintained property features a diverse mix of national and local tenants, providing a stable income stream for investors.

Property Highlights:

- 120,000 sq ft of retail space
- Anchored by a popular grocery store and pharmacy
- 95% occupied with long-term leases
- Ample parking and easy access from major highways
- Strong demographics and population growth in the area

With a proven track record of success and a prime location in a thriving market, this retail shopping center presents an attractive opportunity for investors seeking a reliable and lucrative investment.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "8l1m798p-4n2k-3o35-k7l8-5m3n20p6q7r4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Cattle Ranch and Farmland", - "state": "TX", - "hasImages": true, - "price": 12000000, - "city": "Amarillo", - "description": "

Expansive cattle ranch and farmland in the heart of the Texas Panhandle. This historic property features lush pastures, productive farmland, and a variety of income-generating opportunities.

Ranch Features:

- 5,000 acres of grassland and farmland
- Herd of 1,000 cattle with established genetics
- Irrigation systems and grain storage facilities
- Comfortable ranch house and employee housing
- Mineral rights and hunting lease potential

With a strong agricultural heritage and diverse revenue streams, this cattle ranch and farmland offers investors a unique opportunity to acquire a significant land holding in a renowned ranching region.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "9m2n809q-5o3l-4p46-l8m9-6n4o31q7r8s5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Automotive Repair and Service Center", - "state": "TX", - "hasImages": true, - "price": 1500000, - "city": "Houston", - "description": "

Highly Profitable Automotive Repair Shop

Well-established automotive repair and service center in a busy Houston neighborhood. This turn-key business features a loyal customer base and a reputation for providing quality service.

Business Features:

- 8,000 sq ft facility with 10 service bays
- State-of-the-art diagnostic equipment and tools
- Experienced staff of certified technicians
- Strong relationships with parts suppliers and dealerships
- Consistent revenue growth and profitability

Situated in a high-traffic area with excellent visibility, this automotive repair and service center presents a unique opportunity for investors or industry professionals seeking a profitable and well-established business in a thriving market.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "0n3o910r-6p4m-5q57-m9n0-7o5p42r8s9t6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Multi-Tenant Office Building", - "state": "TX", - "hasImages": true, - "price": 8000000, - "city": "San Antonio", - "description": "

Fully leased multi-tenant office building in a desirable San Antonio business district. This well-maintained property features a diverse mix of professional tenants and a stable income stream.

Building Features:

- 40,000 sq ft of rentable office space
- 95% occupancy with long-term leases
- Recent renovations and upgrades
- Ample parking and easy access from major roadways
- Strong rental rate growth potential

With a prime location and a proven track record of tenant retention, this multi-tenant office building presents an attractive opportunity for investors seeking a reliable and profitable investment in a growing market.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "1o4p021s-7q5n-6r68-n1o2-8p6q53s9t0u7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Golf Course and Country Club", - "state": "TX", - "hasImages": true, - "price": 15000000, - "city": "Austin", - "description": "

Prestigious golf course and country club in a scenic Austin location. This iconic property features a championship golf course, elegant clubhouse, and a variety of amenities for members and guests.

Club Features:

- 18-hole golf course designed by a renowned architect
- 30,000 sq ft clubhouse with dining, event spaces, and pro shop
- Tennis courts, swimming pool, and fitness center
- Established membership base and strong revenue streams
- Opportunity for residential development on adjacent land

With a prime location in a growing market and a reputation for excellence, this golf course and country club offers investors a unique opportunity to acquire a trophy asset with significant upside potential.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "2p5q132t-8r6o-7s79-o1p2-9q7r64t0u1v8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Student Housing Complex", - "state": "TX", - "hasImages": true, - "price": 20000000, - "city": "College Station", - "description": "

Modern Student Housing Near Texas A&M University

Newly constructed student housing complex in a prime location near the Texas A&M University campus. This purpose-built property features a variety of unit types and a range of amenities designed for student residents.

Complex Features:

- 200 fully furnished studio, 1, 2, and 3-bedroom units
- Resort-style swimming pool and fitness center
- Study lounges and collaborative workspaces
- On-site management and 24/7 security
- Consistent occupancy and rental rate growth

With strong demand for high-quality student housing and a prime location in a major university market, this complex presents an excellent opportunity for investors seeking a stable and profitable investment with long-term growth potential.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "3q6r243u-9s7p-8t02-p3q4-0r8s75u1v2w9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Flex Industrial Space", - "state": "TX", - "hasImages": true, - "price": 6000000, - "city": "Dallas", - "description": "

Versatile flex industrial space in a growing Dallas business park. This well-located property features a mix of warehouse, manufacturing, and office space, suitable for a variety of industrial users.

Property Features:

- 50,000 sq ft of total space
- 30,000 sq ft of warehouse/manufacturing space
- 20,000 sq ft of office and showroom space
- 24-foot clear height ceilings and ample power
- Convenient access to major highways and airports

With strong demand for flexible industrial space in the Dallas market and a prime location in a modern business park, this property presents an attractive opportunity for investors or owner-users seeking a functional and adaptable facility.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "4r7s354v-0t8q-9u13-q4r5-1s9t86v2w3x0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Medical Office Condominiums", - "state": "TX", - "hasImages": true, - "price": 4000000, - "city": "Houston", - "description": "

Newly Developed Medical Office Condos

State-of-the-art medical office condominiums in a prime Houston location. This newly constructed property offers healthcare providers the opportunity to own their office space in a modern, purpose-built facility.

Property Features:

- 20 medical office condos ranging from 1,500 to 5,000 sq ft
- Customizable floor plans and high-end finishes
- Abundant parking and easy access for patients
- Ideal location near hospitals and medical centers
- Strong demand for medical office space in the area

With the flexibility of condominium ownership and the benefits of a new construction property, these medical office condos present an attractive opportunity for healthcare practices looking to establish a long-term presence in a thriving market.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "5s8t576w-1u9r-0v24-r5s6-2t0u97w3x4y1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Self-Storage Development Site", - "state": "TX", - "hasImages": true, - "price": 2000000, - "city": "San Antonio", - "description": "

Prime development site for a self-storage facility in a rapidly growing San Antonio suburb. This strategically located property offers excellent visibility and easy access from major thoroughfares.

Site Features:

- 5 acres of developable land
- Zoned for self-storage use
- Utilities available at the site
- Strong demographics and high traffic counts
- Limited self-storage competition in the immediate area

With strong demand for self-storage in the San Antonio market and a prime location in a growing suburb, this development site presents an excellent opportunity for investors or developers looking to capitalize on the booming self-storage industry.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "6t9u687x-2v0s-1w13-s6t7-3u1v08x4y5z2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Net Leased Fast Food Restaurant", - "state": "TX", - "hasImages": true, - "price": 3000000, - "city": "Austin", - "description": "

Fully leased fast food restaurant with a long-term net lease in place. This well-located property features a popular national tenant and a stable income stream for investors.

Property Features:

- 3,500 sq ft freestanding restaurant building
- 15-year net lease with corporate guarantee
- Scheduled rental increases and renewal options
- High-traffic location near major retailers and employers
- Minimal landlord responsibilities and expenses

With a long-term lease, a credit tenant, and a prime location in a growing market, this net leased fast food restaurant presents an attractive opportunity for investors seeking a hands-off, income-producing investment with minimal management requirements.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "7u0v798y-3w1t-2x24-t6u7-4v2w19y5z6a3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Hotel and Conference Center", - "state": "TX", - "hasImages": true, - "price": 25000000, - "city": "Dallas", - "description": "

Upscale hotel and conference center in a prime Dallas location. This well-established property features luxurious guest rooms, extensive meeting facilities, and a variety of amenities for business and leisure travelers.

Property Highlights:

- 200 well-appointed guest rooms and suites
- 20,000 sq ft of flexible meeting and event space
- Full-service restaurant and bar
- Outdoor pool, fitness center, and spa
- Consistent occupancy and strong RevPAR growth

With a prime location, a strong brand affiliation, and a proven track record of success, this hotel and conference center presents an excellent opportunity for investors seeking a profitable and well-positioned hospitality asset in a dynamic market.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "8v1w909z-4x2u-3y35-u7v8-5w3x20z6a7b4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Industrial Outdoor Storage Yard", - "state": "TX", - "hasImages": true, - "price": 3000000, - "city": "Houston", - "description": "

Secure industrial outdoor storage yard in a strategic Houston location. This fully fenced and gated property offers ample space for storage, staging, and parking of vehicles, equipment, and materials.

Property Features:

- 10 acres of stabilized yard space
- Concrete and gravel surfaces for various uses
- Secure perimeter fencing and lighting
- Office trailer and storage buildings included
- Easy access to major highways and the Port of Houston

With strong demand for outdoor storage space in the Houston industrial market and a prime location near key transportation routes, this property presents an attractive opportunity for investors or users seeking a functional and well-maintained storage yard.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "9w2x020a-5y3v-4z46-v8w9-6x4y31a7b8c5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Manufactured Housing Community", - "state": "TX", - "hasImages": true, - "price": 8000000, - "city": "San Antonio", - "description": "

Well-Maintained Manufactured Housing Community

Established manufactured housing community in a growing San Antonio suburb. This well-operated property features a mix of park-owned and tenant-owned homes, providing a stable and diversified income stream.

Community Features:

- 150 manufactured home sites on 25 acres
- 95% occupancy with long-term tenants
- Park-owned homes for additional rental income
- On-site management and maintenance staff
- Amenities include a clubhouse, pool, and playground

With strong demand for affordable housing and a proven track record of success, this manufactured housing community offers investors a reliable and profitable investment opportunity in a thriving market.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "0x3y021b-6z4w-5a57-w9x0-7y5z42b8c9d6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Retail Strip Center", - "state": "TX", - "hasImages": true, - "price": 6000000, - "city": "Austin", - "description": "

Newly constructed retail strip center in a rapidly growing Austin neighborhood. This well-located property features a diverse mix of national and local tenants, providing a stable income stream for investors.

Property Highlights:

- 15,000 sq ft of retail space
- 100% occupied with long-term leases
- Anchor tenant is a popular coffee shop and drive-thru
- Ample parking and easy access from major roadways
- Strong demographics and high traffic counts

With a prime location in a thriving residential area and a lineup of successful tenants, this retail strip center presents an attractive opportunity for investors seeking a turnkey investment with strong growth potential.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "1y4z132c-7a5x-6b69-x1y2-8z6a53c9d0e7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Waterfront Restaurant Property", - "state": "TX", - "hasImages": true, - "price": 4000000, - "city": "Corpus Christi", - "description": "

Prime waterfront restaurant property in the heart of Corpus Christi's vibrant marina district. This highly desirable location offers stunning views of the bay and a built-in customer base of boaters, tourists, and local residents.

Property Features:

- 8,000 sq ft restaurant building with indoor and outdoor seating
- Large commercial kitchen with state-of-the-art equipment
- Boat slips and docking facilities for customers
- Ample parking and easy access from land and water
- Opportunity for redevelopment or rebranding

With a prime waterfront location and a turnkey restaurant facility, this property presents a unique opportunity for investors, restaurateurs, or developers seeking to capitalize on the strong demand for dining and entertainment options in Corpus Christi's thriving marina district.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "2z5a243d-8b6y-7c80-y2z3-9a7b64d1e2f8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Daycare and Learning Center", - "state": "TX", - "hasImages": true, - "price": 1500000, - "city": "Dallas", - "description": "

Established Daycare and Learning Center

Well-respected daycare and learning center in a family-friendly Dallas suburb. This turnkey business features a strong enrollment, experienced staff, and a reputation for providing exceptional child care and education.

Business Features:

- Licensed for 150 children, ages 6 weeks to 12 years
- 10,000 sq ft facility with classrooms, play areas, and offices
- Long-term lease in place with renewal options
- Consistent revenue growth and profitability
- Potential for expansion or additional service offerings

With a prime location, a loyal customer base, and a proven track record of success, this daycare and learning center presents an excellent opportunity for investors or owner-operators seeking a rewarding and profitable business in a growing market.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "3a6b354e-9c7z-8d92-z3a4-0b8c75e2f3g9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Automotive Dealership Facility", - "state": "TX", - "hasImages": true, - "price": 15000000, - "city": "Houston", - "description": "

State-of-the-art automotive dealership facility in a high-traffic Houston location. This modern property features a spacious showroom, service center, and inventory storage, designed to showcase and support a thriving dealership business.

Facility Features:

- 50,000 sq ft building on 5 acres of land
- Showroom, offices, and customer lounge
- 30 service bays with advanced diagnostic equipment
- Extensive parking and vehicle storage areas
- Prime location near major highways and auto rows

With a purpose-built facility, a strategic location, and strong market demand, this automotive dealership property presents an exceptional opportunity for dealers or investors looking to establish or expand their presence in the lucrative Houston market.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "4b7c465f-0d8a-9e03-a4b5-1c9d86f3g4h0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "BBQ Restaurant and Catering Business", - "state": "TX", - "hasImages": true, - "price": 2000000, - "city": "Austin", - "description": "

Award-Winning BBQ Restaurant and Catering

Legendary BBQ restaurant and catering business in the heart of Austin's vibrant food scene. This well-established operation features a loyal customer base, critical acclaim, and multiple revenue streams.

Business Features:

- Rustic 5,000 sq ft restaurant with indoor and outdoor seating
- Large commercial kitchen with smokers and catering equipment
- Strong catering sales for events and corporate clients
- Wholesale product line with retail and online sales
- Experienced staff and well-documented recipes and processes

With a prime location, a beloved brand, and a diversified business model, this BBQ restaurant and catering operation offers investors a unique opportunity to acquire a profitable and scalable culinary venture in one of the nation's top food destinations.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "5c8d576g-1e9b-0f14-b5c6-2d0e97g3h4i1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Class A Medical Office Building", - "state": "TX", - "hasImages": true, - "price": 18000000, - "city": "San Antonio", - "description": "

Newly constructed Class A medical office building in San Antonio's premier medical district. This state-of-the-art property features a prime location, high-quality finishes, and a roster of credit-worthy medical tenants.

Building Features:

- 60,000 sq ft of rentable medical office space
- 95% leased to a diverse mix of medical specialties
- Efficient floor plates with flexible suite configurations
- Abundant parking and convenient access for patients
- LEED Silver certification for energy efficiency and sustainability

With strong tenant demand, long-term leases, and a prime location in a growing medical hub, this Class A medical office building presents an attractive opportunity for investors seeking a stable, income-producing asset with significant upside potential in a thriving healthcare market.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "6d9e687h-2f0c-1g13-c6d7-3e1f08h4i5j2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Mixed-Use Development Opportunity", - "state": "TX", - "hasImages": true, - "price": 10000000, - "city": "Fort Worth", - "description": "

Prime development site in the heart of downtown Fort Worth. This well-located property offers the opportunity to create a signature mixed-use project with retail, office, and residential components.

Site Features:

- 2 acres of developable land
- Zoned for mixed-use development up to 20 stories
- Excellent visibility and accessibility from major thoroughfares
- Surrounded by popular dining, entertainment, and cultural attractions
- Strong market demand for urban living and working environments

With a prime location, flexible zoning, and a dynamic urban context, this mixed-use development site presents a unique opportunity for developers or investors to create a landmark project that capitalizes on the strong growth and revitalization of downtown Fort Worth.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "7e0f798i-3g1d-2h24-d6e7-4f2g19i5j6k3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Winery and Tasting Room", - "state": "CA", - "hasImages": true, - "price": 7000000, - "city": "Sonoma", - "description": "

Boutique winery and tasting room in the heart of Sonoma wine country. This charming property features a historic vineyard, award-winning wines, and a loyal customer base of wine enthusiasts.

Property Highlights:

- 20 acres of vineyards with premium grape varieties
- 5,000 sq ft winery building with production facilities
- Rustic tasting room with indoor and outdoor seating
- Established wine club and direct-to-consumer sales
- Potential for expansion and special events

With a prime location, a strong brand identity, and a proven track record of success, this winery and tasting room presents a unique opportunity for investors or operators seeking to acquire a turnkey wine business in one of the world's most prestigious wine regions.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "8f1g909j-4h2e-3i35-e7f8-5g3h20j6k7l4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Cold Storage and Distribution Facility", - "state": "FL", - "hasImages": true, - "price": 15000000, - "city": "Miami", - "description": "

State-of-the-art cold storage and distribution facility in a strategic Miami location. This well-maintained property features advanced refrigeration systems, ample storage capacity, and easy access to major transportation routes.

Facility Features:

- 100,000 sq ft of refrigerated warehouse space
- Multiple temperature zones for various products
- 20 loading docks with sealed dock levelers
- Modern office and administrative areas
- Convenient access to airports, seaports, and highways

With strong demand for cold storage space in the Miami market and a prime location near key distribution hubs, this facility presents an attractive opportunity for investors or operators in the food, beverage, and pharmaceutical industries.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "9g2h020k-5i3f-4j46-f8g9-6h4i31k7l8m5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Organic Grocery Store and Cafe", - "state": "WA", - "hasImages": true, - "price": 3500000, - "city": "Seattle", - "description": "

Popular Organic Grocery Store and Cafe

Well-established organic grocery store and cafe in a thriving Seattle neighborhood. This beloved community institution features a wide selection of natural and organic products, a busy cafe, and a loyal customer base.

Business Features:

- 8,000 sq ft retail space with a mix of groceries and prepared foods
- Cozy cafe with indoor and outdoor seating
- Strong relationships with local farmers and producers
- Excellent reputation and high customer loyalty
- Potential for expansion or additional locations

With a prime location, a dedicated customer base, and a growing demand for organic and natural products, this grocery store and cafe presents an excellent opportunity for investors or entrepreneurs seeking a profitable and socially responsible business venture.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "0h3i021l-6j4g-5k57-g9h0-7i5j42l8m9n6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Ski Resort and Mountain Lodge", - "state": "CO", - "hasImages": true, - "price": 30000000, - "city": "Breckenridge", - "description": "

Iconic ski resort and mountain lodge in the heart of the Colorado Rockies. This renowned property features world-class skiing, luxurious accommodations, and a range of amenities for outdoor enthusiasts and vacationers.

Resort Features:

- 1,000 acres of skiable terrain with 20 lifts
- 150-room mountain lodge with spa, restaurant, and bar
- Additional ski-in/ski-out condominiums and cabins
- Year-round activities, including hiking, biking, and golfing
- Strong revenue from lift tickets, lodging, and real estate sales

With a prime location, a loyal customer base, and a reputation for excellence, this ski resort and mountain lodge presents a rare opportunity for investors to acquire a trophy asset in one of North America's top ski destinations.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "1i4j132m-7k5h-6l69-h1i2-8j6k53m9n0o7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Historic Inn and Restaurant", - "state": "VT", - "hasImages": true, - "price": 2500000, - "city": "Stowe", - "description": "

Charming historic inn and restaurant in the picturesque town of Stowe, Vermont. This beautifully restored property features cozy guest rooms, a farm-to-table restaurant, and a prime location near popular ski resorts and outdoor attractions.

Property Features:

- 12 uniquely decorated guest rooms with private baths
- 50-seat restaurant with a focus on local ingredients
- Welcoming common areas, including a library and fireplace lounge
- Landscaped grounds with gardens and outdoor seating
- Strong occupancy rates and positive guest reviews

With a turnkey operation, a loyal customer base, and a prime location in a popular New England destination, this historic inn and restaurant presents a unique opportunity for investors or owner-operators seeking a rewarding and profitable hospitality business.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "2j5k243n-8l6i-7m80-i2j3-9k7l64n1o2p8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Marina and Boat Storage Facility", - "state": "FL", - "hasImages": true, - "price": 12000000, - "city": "Key West", - "description": "

Full-Service Marina and Boat Storage

Well-maintained marina and boat storage facility in the heart of Key West's vibrant boating community. This strategically located property features a range of amenities and services for boaters and a consistent demand for slip rentals and storage.

Marina Features:

- 100 wet slips accommodating boats up to 80 feet
- Dry stack storage for 150 boats
- Fuel dock, pump-out station, and ship's store
- Boat rental and charter services
- Convenient access to the Atlantic Ocean and Gulf of Mexico

With a prime location, a comprehensive range of services, and a strong boating community, this marina and boat storage facility presents an attractive opportunity for investors seeking a profitable and well-established business in a key marine market.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "3k6l354o-9m7j-8n92-j3k4-0l8m75o2p3q9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Regional Shopping Mall", - "state": "OH", - "hasImages": true, - "price": 50000000, - "city": "Columbus", - "description": "

Dominant regional shopping mall in a populous Columbus suburb. This well-located property features a diverse mix of national retailers, popular dining and entertainment options, and a loyal customer base from a wide trade area.

Mall Features:

- 800,000 sq ft of retail space
- Anchored by major department stores and big-box retailers
- Inline space with a mix of national and local tenants
- Food court, movie theater, and family entertainment center
- Ample parking and easy access from major highways

With a strategic location, a strong tenant mix, and a history of consistent foot traffic and sales, this regional shopping mall presents a unique opportunity for investors to acquire a significant retail asset with value-add potential in a growing Midwest market.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "4l7m465p-0n8k-9o03-k4l5-1m9n86p3q4r0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Craft Distillery and Tasting Room", - "state": "KY", - "hasImages": true, - "price": 4000000, - "city": "Louisville", - "description": "

Award-Winning Craft Distillery and Tasting Room

Acclaimed craft distillery and tasting room in the heart of Louisville's historic Bourbon District. This unique property features a state-of-the-art distillation facility, a stylish tasting room, and a strong brand presence in the fast-growing craft spirits market.

Distillery Features:

- 10,000 sq ft distillation facility with room for expansion
- Tasting room and gift shop with indoor and outdoor seating
- Award-winning portfolio of bourbon, rye, and specialty spirits
- Established distribution network and online sales platform
- Tours, tastings, and special events for visitors and enthusiasts

With a prime location, a respected brand, and a position at the forefront of the craft spirits movement, this distillery and tasting room presents an exciting opportunity for investors or operators looking to capitalize on the booming demand for authentic and artisanal spirits.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "5m8n576q-1o9l-0p14-l5m6-2n0o97q3r4s1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Senior Housing and Assisted Living", - "state": "AZ", - "hasImages": true, - "price": 25000000, - "city": "Scottsdale", - "description": "

Upscale senior housing and assisted living community in the heart of Scottsdale. This well-appointed property features a range of housing options, comprehensive care services, and resort-style amenities for residents.

Community Features:

- 150 independent living, assisted living, and memory care units
- Spacious apartments with high-end finishes and appliances
- Multiple dining venues, fitness center, and swimming pool
- On-site medical clinic and 24/7 care staff
- Engaging social, educational, and recreational programs

With a prime location, a continuum of care, and a commitment to resident satisfaction, this senior housing and assisted living community presents an attractive opportunity for investors seeking a stable and growing asset in the rapidly expanding senior living sector.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "6n9o687r-2p0m-1q13-m6n7-3o1p08r4s5t2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Data Center and Technology Campus", - "state": "NC", - "hasImages": true, - "price": 75000000, - "city": "Raleigh", - "description": "

High-performance data center and technology campus in the renowned Research Triangle Park. This state-of-the-art property features advanced infrastructure, robust connectivity, and a strategic location in one of the nation's leading technology hubs.

Campus Features:

- 200,000 sq ft of data center space with redundant power and cooling
- 100,000 sq ft of office and lab space for technology tenants
- Multiple fiber optic networks and cloud interconnects
- 24/7 security, monitoring, and technical support
- Room for expansion and additional development

With a prime location, a cutting-edge facility, and a strong demand from technology companies and enterprise users, this data center and technology campus presents a unique opportunity for investors to acquire a critical asset in the rapidly growing digital infrastructure market.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "7o0p798s-3q1n-2r24-n6o7-4p2q19s5t6u3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Private Island Resort", - "state": "FL", - "hasImages": true, - "price": 100000000, - "city": "Key West", - "description": "

Luxurious Private Island Resort

Exquisite private island resort located off the coast of Key West. This one-of-a-kind property features pristine beaches, elegant accommodations, and a host of exclusive amenities for the world's most discerning travelers.

Resort Features:

- 50 luxurious beachfront villas and suites
- World-class dining, spa, and fitness facilities
- Private yacht marina and seaplane access
- Unspoiled natural beauty and abundant recreational activities
- Potential for further development and expansion

With an unparalleled location, a reputation for excellence, and a truly irreplaceable asset, this private island resort presents a rare opportunity for investors to acquire a trophy property in one of the world's most sought-after destinations.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "8p1q909t-4r2o-3s35-o7p8-5q3r20t6u7v4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Self-Storage Portfolio", - "state": "TX", - "hasImages": true, - "price": 50000000, - "city": "Houston", - "description": "

Well-performing self-storage portfolio in the greater Houston metropolitan area. This group of properties features a mix of traditional and climate-controlled units, strong occupancy rates, and a history of consistent revenue growth.

Portfolio Highlights:

- 5 self-storage facilities totaling 500,000 sq ft
- 3,000 units with a balanced mix of sizes and types
- Average occupancy rate of 95% across the portfolio
- Fully automated with online rentals and 24/7 access
- Opportunities for revenue optimization and expansion

With a strategic focus on a high-growth market, a proven operating platform, and multiple avenues for value creation, this self-storage portfolio presents an attractive opportunity for investors seeking to capitalize on the strong and resilient self-storage asset class.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "0r3s021v-6t4q-5u57-q9r0-7s5t42v8w9x6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Luxury Resort and Spa", - "state": "HI", - "hasImages": true, - "price": 75000000, - "city": "Maui", - "description": "

Oceanfront Luxury Resort and Spa

Exquisite luxury resort and spa situated on the pristine shores of Maui. This world-class property features elegant accommodations, top-tier amenities, and unparalleled ocean views, attracting discerning travelers from around the globe.

Resort Features:

- 200 beautifully appointed guest rooms and suites
- Full-service spa, fitness center, and infinity pool
- Gourmet dining options showcasing local cuisine
- Extensive meeting and event spaces
- Prime beachfront location with direct access to water activities

With a strong brand reputation, consistent occupancy, and a truly idyllic setting, this luxury resort and spa presents an exceptional opportunity for investors seeking a trophy asset in one of the world's most desirable destinations.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "1s4t132w-7u5r-6v69-r1s2-8t6u53w9x0y7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Industrial Logistics Park", - "state": "IL", - "hasImages": true, - "price": 80000000, - "city": "Chicago", - "description": "

State-of-the-art industrial logistics park strategically located in the heart of Chicago's transportation network. This master-planned property features modern warehouse and distribution facilities, robust infrastructure, and excellent access to major highways, airports, and rail lines.

Park Features:

- 1,000,000 sq ft of Class A industrial space
- Flexible layouts accommodating various tenant needs
- 32-foot clear heights, ESFR sprinklers, and ample truck courts
- Adjacent intermodal rail terminal and container yard
- Potential for additional development and build-to-suit opportunities

With a prime location, cutting-edge facilities, and strong demand from logistics and e-commerce tenants, this industrial logistics park presents a unique opportunity for investors to acquire a critical asset in one of the nation's most important distribution markets.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "2t5u243x-8v6s-7w80-s2t3-9u7v64x1y2z8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Grocery-Anchored Shopping Center", - "state": "CA", - "hasImages": true, - "price": 30000000, - "city": "Los Angeles", - "description": "

Well-established grocery-anchored shopping center in a densely populated Los Angeles submarket. This highly trafficked property features a strong mix of national and regional tenants, providing essential goods and services to the surrounding community.

Shopping Center Features:

- 100,000 sq ft of retail space
- Anchored by a high-performing supermarket chain
- Diverse lineup of inline tenants, including dining and service options
- Ample parking and easy access from major roadways
- Stable cash flow and long-term leases with rental escalations

With a prime location, a necessity-based tenant mix, and consistent foot traffic, this grocery-anchored shopping center presents an attractive opportunity for investors seeking a reliable and defensive retail asset in a major metropolitan market.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "3u6v354y-9w7t-8x92-t3u4-0v8w75y2z3a9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Medical Office Portfolio", - "state": "TX", - "hasImages": true, - "price": 60000000, - "city": "Houston", - "description": "

High-Quality Medical Office Portfolio

Well-maintained portfolio of medical office buildings located throughout the Houston metropolitan area. These strategically positioned properties feature a diverse mix of healthcare tenants, strong occupancy rates, and a history of consistent rental growth.

Portfolio Highlights:

- 5 medical office buildings totaling 250,000 sq ft
- Reputable tenant base, including hospitals and physician practices
- Weighted average lease term of 7 years
- Convenient locations near major hospitals and residential areas
- Opportunities for rent growth and additional value creation

With a focus on a stable and growing healthcare market, long-term leases, and multiple avenues for value enhancement, this medical office portfolio presents an attractive opportunity for investors seeking to capitalize on the strong demand for quality medical office space.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "4v7w465z-0x8u-9y03-u4v5-1w9x86z3a4b0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Boutique Hotel and Restaurant", - "state": "LA", - "hasImages": true, - "price": 12000000, - "city": "New Orleans", - "description": "

Charming boutique hotel and restaurant in the heart of New Orleans' historic French Quarter. This unique property features elegant accommodations, a celebrated restaurant, and a prime location in one of the world's most iconic travel destinations.

Property Features:

- 50 beautifully appointed guest rooms and suites
- Acclaimed restaurant and bar featuring local cuisine
- Inviting courtyard and balcony spaces
- Convenient access to top attractions and entertainment
- Strong occupancy rates and average daily rates

With a storied history, a loyal customer base, and an unbeatable location, this boutique hotel and restaurant presents a rare opportunity for investors to acquire a truly one-of-a-kind asset in a market with high barriers to entry.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "5w8x576a-1y9v-0z14-v5w6-2x0y97a3b4c1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Campus-Adjacent Student Housing", - "state": "PA", - "hasImages": true, - "price": 35000000, - "city": "Philadelphia", - "description": "

Newly constructed student housing community adjacent to a major university campus in Philadelphia. This purpose-built property features modern amenities, a pedestrian-friendly location, and a captive tenant base of students seeking convenient and high-quality accommodations.

Community Features:

- 200 fully furnished studio, 1, 2, and 3-bedroom units
- Resort-style pool, fitness center, and study lounges
- Ground-floor retail and dining options
- Secure access and on-site management
- Consistent occupancy and rental rate growth

With a prime location, a comprehensive amenity package, and strong market fundamentals, this campus-adjacent student housing community presents an attractive opportunity for investors seeking a stable and growing asset in a top-tier education market.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "6x9y687b-2z0w-1a13-w6x7-3y1z08b4c5d2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Cold Storage Warehouse", - "state": "WA", - "hasImages": true, - "price": 18000000, - "city": "Seattle", - "description": "

Refrigerated Cold Storage Warehouse

Well-maintained cold storage warehouse strategically located near the Port of Seattle. This specialized property features state-of-the-art refrigeration systems, ample storage capacity, and convenient access to major transportation routes, serving the growing demand for cold chain logistics in the region.

Warehouse Features:

- 150,000 sq ft of refrigerated space
- Multiple temperature zones ranging from -10°F to 55°F
- 30 dock-high loading doors and 2 rail spurs
- Secure yard area for trailer parking and staging
- Opportunity for expansion or redevelopment

With a prime location, modern facilities, and a strong demand from food and beverage, pharmaceutical, and e-commerce tenants, this cold storage warehouse presents an attractive opportunity for investors seeking a critical asset in the rapidly growing cold chain logistics sector.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "7y0z798c-3a1x-2b24-x7y8-4z2a19c5d6e3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Master-Planned Business Park", - "state": "FL", - "hasImages": true, - "price": 100000000, - "city": "Tampa", - "description": "

Highly amenitized master-planned business park in a prime Tampa location. This mixed-use property features a blend of office, flex, and retail space, catering to a diverse range of tenants seeking modern workspaces and convenient on-site amenities.

Business Park Features:

- 500,000 sq ft of Class A office and flex space
- 50,000 sq ft of retail and dining amenities
- Lush landscaping, walking trails, and outdoor gathering areas
- State-of-the-art conference center and fitness facilities
- Ample parking and easy access to major highways

With a prime location, a comprehensive amenity package, and strong demand from corporate tenants, this master-planned business park presents an exceptional opportunity for investors to acquire a trophy asset in one of Florida's most dynamic markets.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "8z1a909d-4b2y-3c35-y8z9-5a3b20d6e7f4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Manufactured Housing Community", - "state": "AZ", - "hasImages": true, - "price": 20000000, - "city": "Phoenix", - "description": "

Well-Maintained Manufactured Housing Community

Attractive manufactured housing community in a growing Phoenix suburb. This well-operated property features a mix of resident-owned and park-owned homes, providing a stable and diversified income stream for investors.

Community Features:

- 200 manufactured home sites on 40 acres
- High occupancy rate with long-term residents
- Amenities include a clubhouse, pool, and recreation areas
- Opportunity to increase revenue through home sales and rent increases
- Strong market demand for affordable housing options

With a desirable location, a well-maintained property, and multiple avenues for growth, this manufactured housing community presents an attractive opportunity for investors seeking a stable and cash-flowing asset in a rapidly growing market.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "9a2b020e-5c3z-4d46-z9a0-6b4c31e7f8g5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Net Leased Retail Portfolio", - "state": "Various", - "hasImages": true, - "price": 75000000, - "city": "Multiple", - "description": "

Geographically diversified portfolio of net leased retail properties located throughout the United States. This well-curated portfolio features strong credit tenants, long-term leases, and minimal landlord responsibilities, providing investors with a stable and predictable income stream.

Portfolio Highlights:

- 20 properties totaling 500,000 sq ft
- Tenants include national retailers, restaurants, and service providers
- Weighted average lease term of 10 years
- Contractual rental increases and tenant renewal options
- Opportunities for portfolio optimization and disposition

With a focus on credit tenants, long-term leases, and geographic diversification, this net leased retail portfolio presents an attractive opportunity for investors seeking a low-risk, income-oriented investment with the potential for capital appreciation.

", - "type": "100", - "imageOrder":[] - }, - { - "id": "0b3c021f-6d4a-5e57-a9b0-7c5d42f8g9h6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Life Science Research Campus", - "state": "MA", - "hasImages": true, - "price": 150000000, - "city": "Cambridge", - "description": "

World-class life science research campus in the heart of Cambridge's renowned biotech cluster. This state-of-the-art property features advanced laboratory and office space, catering to leading biotech, pharmaceutical, and research institutions seeking to innovate and collaborate.

Campus Features:

- 500,000 sq ft of lab and office space
- Flexible floor plans accommodating various tenant needs
- Specialized infrastructure, including vivarium and clean rooms
- On-site amenities, such as cafes, fitness centers, and conference facilities
- Proximity to top universities, hospitals, and research centers

With a prime location, cutting-edge facilities, and strong demand from life science tenants, this research campus presents an exceptional opportunity for investors to acquire a critical asset in one of the world's most important biotech hubs.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "1c4d132g-7e5b-6f69-b1c2-8d6e53g9h0i7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Mixed-Use Urban Redevelopment", - "state": "IL", - "hasImages": true, - "price": 200000000, - "city": "Chicago", - "description": "

Transformative Mixed-Use Urban Redevelopment

Large-scale mixed-use redevelopment project in a prime Chicago location. This transformative property will feature a dynamic blend of residential, office, retail, and entertainment spaces, creating a vibrant and sustainable urban community.

Project Features:

- 1,000 residential units, including apartments and condominiums
- 500,000 sq ft of Class A office space
- 200,000 sq ft of retail, dining, and entertainment venues
- Public parks, plazas, and green spaces
- Integrated transportation and pedestrian-friendly design

With a visionary master plan, a prime urban location, and strong market fundamentals, this mixed-use redevelopment project presents a unique opportunity for investors to participate in the creation of a landmark destination that will reshape the city's landscape for generations to come.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "3e6f354i-9g7d-8h92-d3e4-0f8g75i2j3k9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Class A Office Tower", - "state": "TX", - "hasImages": true, - "price": 100000000, - "city": "Dallas", - "description": "

Iconic Class A office tower in the heart of Dallas' vibrant downtown district. This premier property features state-of-the-art amenities, sweeping city views, and a prestigious tenant roster, solidifying its position as a top-tier office destination.

Tower Features:

- 500,000 sq ft of rentable office space
- Efficient floor plates and flexible layout options
- Luxurious lobby and common areas
- Advanced security and building management systems
- Unparalleled access to downtown amenities and transportation

With a prime location, exceptional quality, and strong market fundamentals, this Class A office tower presents an attractive opportunity for investors seeking a trophy asset in one of the nation's most dynamic office markets.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "4f7g465j-0h8e-9i03-e4f5-1g9h86j3k4l0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Master-Planned Industrial Park", - "state": "TX", - "hasImages": true, - "price": 75000000, - "city": "Houston", - "description": "

Premier Master-Planned Industrial Park

Strategically located master-planned industrial park in the heart of Houston's thriving industrial corridor. This well-designed property features a mix of warehouses, distribution centers, and flex spaces, catering to a wide range of industrial tenants and users.

Industrial Park Features:

- 1,000,000 sq ft of industrial space
- Variety of building sizes and configurations
- Modern construction with high clear heights and ample truck courts
- Excellent access to major highways, ports, and rail lines
- Opportunity for build-to-suit development and expansion

With a prime location, flexible options, and strong demand from logistics and manufacturing tenants, this master-planned industrial park presents a unique opportunity for investors to acquire a large-scale, multi-tenant industrial asset in one of the nation's top distribution hubs.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "5g8h576k-1i9f-0j14-f5g6-2h0i97k3l4m1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Waterfront Restaurant Portfolio", - "state": "TX", - "hasImages": true, - "price": 30000000, - "city": "Austin", - "description": "

Exceptional portfolio of waterfront restaurants located along Austin's scenic Lake Travis. These popular dining destinations feature stunning views, quality cuisine, and loyal customer followings, making them a sought-after investment opportunity in the growing Austin market.

Portfolio Highlights:

- 5 waterfront restaurants totaling 50,000 sq ft
- Prime locations in high-traffic lakefront areas
- Diverse concepts, including fine dining and casual eateries
- Consistent revenue growth and profitability
- Opportunities for operational enhancements and expansion

With a focus on irreplaceable locations, strong brand value, and multiple revenue streams, this waterfront restaurant portfolio presents an attractive opportunity for investors seeking a scalable and resilient investment in Austin's thriving dining scene.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "6h9i687l-2j0g-1k13-g6h7-3i1j08l4m5n2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Trophy Retail Asset", - "state": "TX", - "hasImages": true, - "price": 50000000, - "city": "San Antonio", - "description": "

High-profile trophy retail asset located in the heart of San Antonio's premier shopping district. This iconic property features a flagship luxury retailer, attracting affluent shoppers and tourists from around the world.

Retail Asset Features:

- 100,000 sq ft of retail space
- Long-term lease with a prestigious global tenant
- Significant frontage and visibility along a prime retail corridor
- Luxury buildout and finishes
- Potential for rental growth and tenant expansion

With an irreplaceable location, a world-renowned tenant, and a trophy quality asset, this retail property presents a rare opportunity for investors to acquire a generational asset in one of Texas' most visited shopping destinations.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "7i0j798m-3k1h-2l24-h7i8-4j2k19m5n6o3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Ski Resort Development Site", - "state": "TX", - "hasImages": true, - "price": 15000000, - "city": "McAllen", - "description": "

Prime Ski Resort Development Site

Expansive development site ideally situated for a ski resort near McAllen, Texas. This unique property features stunning natural beauty, varied terrain, and convenient access to major metropolitan areas, making it an ideal location for a year-round ski resort destination.

Development Site Features:

- 1,000 acres of developable land
- Elevations ranging from 6,000 to 8,000 feet
- Abundant snowfall and favorable weather conditions
- Proximity to McAllen and other major cities
- Potential for residential, commercial, and recreational development

With a rare combination of natural assets, accessibility, and market demand, this ski resort development site presents an extraordinary opportunity for visionary investors to create a one-of-a-kind destination in an untapped market.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "8j1k909n-4l2i-3m35-i8j9-5k3l20n6o7p4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Self-Storage Development Opportunity", - "state": "TX", - "hasImages": true, - "price": 5000000, - "city": "Fort Worth", - "description": "

Prime development opportunity for a self-storage facility in a rapidly growing Fort Worth suburb. This well-located site benefits from strong residential growth, high visibility, and limited self-storage competition in the immediate area.

Development Opportunity Highlights:

- 5-acre site zoned for self-storage use
- Excellent visibility and access from major thoroughfares
- Strong demographic trends and residential growth in the area
- Potential for a multi-story, climate-controlled facility
- Feasibility study and conceptual plans available

With a prime location, strong market fundamentals, and a clear path to development, this self-storage development opportunity presents an attractive option for investors seeking to capitalize on the growing demand for self-storage in the Dallas-Fort Worth metroplex.

", - "type": "101", - "imageOrder": [] - }, - { - "id": "9k2l020o-5m3j-4n46-j9k0-6l4m31o7p8q5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Student Housing Value-Add Opportunity", - "state": "TX", - "hasImages": true, - "price": 20000000, - "city": "College Station", - "description": "

Attractive student housing value-add opportunity near the Texas A&M University campus in College Station. This well-maintained property presents a prime opportunity to enhance value through targeted renovations, amenity upgrades, and operational improvements.

Property Features:

- 200-unit, 600-bed student housing community
- Mix of studio, 1, 2, and 3-bedroom floor plans
- Stable occupancy and rental history
- Significant upside potential through interior and exterior renovations
- Walking distance to campus and nearby amenities

With a prime location, a strong student housing market, and multiple avenues for value creation, this student housing value-add opportunity presents an attractive investment for investors seeking to capitalize on the growing demand for high-quality student accommodations near a top-tier university.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "0l3m021p-6n4k-5o57-k0l1-7m5n42p8q9r6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Retail Power Center", - "state": "TX", - "hasImages": true, - "price": 40000000, - "city": "Plano", - "description": "

Dominant Retail Power Center

High-performing retail power center in the affluent Dallas suburb of Plano. This premier property features a strong mix of national retailers, restaurant chains, and service providers, drawing from a large and affluent trade area.

Power Center Features:

- 250,000 sq ft of retail space
- Anchored by major discount department stores and category-leading retailers
- Diverse inline tenant mix, including dining and service options
- Excellent visibility and access from a high-traffic intersection
- Consistently high occupancy and tenant retention

With a dominant market position, a quality tenant roster, and a location in one of the most desirable retail submarkets in the country, this retail power center presents a compelling opportunity for investors seeking a stable, cash-flowing retail asset with long-term value.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "1m4n132q-7o5l-6p69-l1m2-8n6o53q9r0s7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Full-Service Hotel and Conference Center", - "state": "TX", - "hasImages": true, - "price": 60000000, - "city": "Austin", - "description": "

Upscale full-service hotel and conference center in the vibrant city of Austin. This well-appointed property caters to business and leisure travelers, offering luxurious accommodations, state-of-the-art meeting facilities, and top-notch amenities in a prime location.

Hotel Features:

- 300 well-appointed guest rooms and suites
- 50,000 sq ft of flexible meeting and event space
- Multiple dining options, including a rooftop bar
- Outdoor pool, fitness center, and spa
- Close proximity to downtown attractions and corporate demand drivers

With a strong brand affiliation, a diverse revenue mix, and a location in one of the fastest-growing cities in the nation, this full-service hotel and conference center presents an attractive investment opportunity for investors seeking a high-quality, income-generating hospitality asset.

", - "type": "104", - "imageOrder": [] - }, - { - "id": "2n5o243r-8p6m-7q80-m2n3-9o7p64r1s2t8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Net Leased Medical Office Building", - "state": "TX", - "hasImages": true, - "price": 12000000, - "city": "San Antonio", - "description": "

Fully leased medical office building in a prominent San Antonio medical district. This modern facility is leased to a strong credit tenant on a long-term net lease, providing investors with a stable and predictable income stream.

Property Features:

- 40,000 sq ft state-of-the-art medical office building
- 100% leased to a major healthcare system
- 15-year net lease with annual rental increases
- Strategically located near hospitals and medical centers
- Minimal landlord responsibilities and capital expenditures

With a long-term net lease, a strong healthcare tenant, and a location in a growing medical market, this net leased medical office building presents an attractive opportunity for investors seeking a low-risk, income-oriented investment with built-in growth potential.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "3o6p354s-9q7n-8r92-n3o4-0p8q75s2t3u9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Cold Storage Facility", - "state": "TX", - "hasImages": true, - "price": 25000000, - "city": "Houston", - "description": "

State-of-the-Art Cold Storage Facility

Modern cold storage facility strategically located near the Port of Houston. This well-maintained property features advanced refrigeration systems, ample storage capacity, and convenient access to major transportation routes, serving the growing demand for cold chain logistics in the region.

Facility Features:

- 200,000 sq ft of refrigerated warehouse space
- Multiple temperature zones for various product types
- 40 dock-high loading doors and rail service
- Efficient layout and modern material handling equipment
- Strong tenant base and lease term

With a prime location, state-of-the-art facilities, and growing demand from food, beverage, and pharmaceutical industries, this cold storage facility presents an attractive opportunity for investors seeking a mission-critical asset in the rapidly expanding cold chain logistics sector.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "4p7q465t-0r8o-9s03-o4p5-1q9r86t3u4v0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Luxury Multifamily Development Site", - "state": "TX", - "hasImages": true, - "price": 15000000, - "city": "Dallas", - "description": "

Prime development site for a luxury multifamily project in the prestigious Uptown Dallas neighborhood. This rare opportunity offers the potential to create a landmark residential community in one of the city's most desirable locations.

Development Site Features:

- 2-acre site zoned for high-density multifamily use
- Potential for up to 400 luxury apartment units
- Unparalleled access to Uptown's dining, shopping, and entertainment
- Close proximity to major employment centers and public transit
- Strong market fundamentals and demographic trends

With an irreplaceable location, favorable zoning, and strong demand for high-end urban living, this luxury multifamily development site presents an exceptional opportunity for developers seeking to create a trophy asset in the heart of Dallas.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "6r9s687v-2t0q-1u13-q6r7-3s1t08v4w5x2", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Grocery-Anchored Shopping Center", - "state": "TX", - "hasImages": true, - "price": 18000000, - "city": "Austin", - "description": "

Newly Constructed Grocery-Anchored Shopping Center

Highly attractive grocery-anchored shopping center in a rapidly growing Austin suburb. This newly constructed property features a diverse mix of national and regional tenants, providing essential goods and services to the surrounding community.

Shopping Center Features:

- 80,000 sq ft of retail space
- Anchored by a high-performing organic grocery store
- Strong lineup of complementary retailers and service providers
- Prominent location in a high-growth residential area
- Ample parking and easy access from major thoroughfares

With a new construction quality, a recession-resistant anchor tenant, and an ideal location in a booming market, this grocery-anchored shopping center presents a compelling opportunity for investors seeking a stable and growth-oriented retail investment in Austin.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "7s0t798w-3u1r-2v24-r7s8-4t2u19w5x6y3", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Medical Office Condominium Portfolio", - "state": "TX", - "hasImages": true, - "price": 10000000, - "city": "Houston", - "description": "

Well-maintained portfolio of medical office condominiums in a prominent Houston medical district. This unique investment opportunity features multiple condominium units leased to a diverse mix of healthcare providers, offering stable cash flow and the potential for long-term appreciation.

Portfolio Features:

- 10 medical office condominiums totaling 25,000 sq ft
- 100% leased to established medical practices
- Staggered lease expirations and rental escalations
- Prime location within walking distance of major hospitals
- Professional property management in place

With a strong tenant base, a desirable location, and the flexibility of condominium ownership, this medical office condominium portfolio presents an attractive opportunity for investors seeking a diversified and recession-resistant investment in the growing Houston healthcare market.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "8t1u909x-4v2s-3w35-s8t9-5u3v20x6y7z4", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Full-Service Car Wash and Auto Detailing", - "state": "TX", - "hasImages": true, - "price": 3000000, - "city": "Dallas", - "description": "

Highly profitable full-service car wash and auto detailing business in a densely populated Dallas suburb. This well-established operation features a loyal customer base, multiple revenue streams, and a reputation for providing exceptional service in a growing market.

Business Features:

- Modern 150-foot tunnel wash with state-of-the-art equipment
- 6 detailing bays for interior and exterior services
- Robust monthly membership program
- Convenient location with high visibility and traffic counts
- Consistent revenue growth and strong margins

With a proven business model, a prime location, and strong market demand, this full-service car wash and auto detailing business presents an excellent opportunity for investors or owner-operators seeking a profitable and scalable investment in the thriving Dallas market.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "9u2v020y-5w3t-4x46-t9u0-6v4w31y7z8a5", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Luxury Resort-Style Apartment Community", - "state": "TX", - "hasImages": true, - "price": 75000000, - "city": "Austin", - "description": "

Prestigious Luxury Apartment Community

Exceptionally well-appointed luxury apartment community in a prime Austin location. This resort-style property features upscale amenities, premium finishes, and a desirable location near major employers and entertainment destinations, appealing to a discerning resident base.

Community Features:

- 350 luxury apartment homes
- Spacious 1, 2, and 3-bedroom floor plans
- High-end interior finishes and appliances
- Extensive community amenities, including a pool, fitness center, and clubhouse
- Convenient access to downtown Austin and major thoroughfares

With a strong market position, a affluent resident profile, and a location in one of the nation's most desirable cities, this luxury apartment community presents a compelling investment opportunity for investors seeking a high-quality, income-generating multifamily asset in Austin.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "0v3w021z-6x4u-5y57-u0v1-7w5x42z8a9b6", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Net Leased Quick Service Restaurant", - "state": "TX", - "hasImages": true, - "price": 2500000, - "city": "San Antonio", - "description": "

Fully leased quick service restaurant property in a high-traffic San Antonio retail corridor. This well-located property is leased to a national fast-food chain on a long-term net lease, providing investors with a stable and hands-off investment opportunity.

Property Features:

- 2,500 sq ft freestanding restaurant building
- 10-year net lease with corporate guarantee
- Scheduled rental increases and renewal options
- Prominent location with excellent visibility and accessibility
- Minimal landlord responsibilities and expenses

With a long-term net lease, a creditworthy tenant, and a location in a dynamic retail market, this net leased quick service restaurant presents an attractive opportunity for investors seeking a turn-key, income-producing investment with strong intrinsic value.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "1w4x132a-7y5v-6z69-v1w2-8x6y53a9b0c7", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Flex Industrial Business Park", - "state": "TX", - "hasImages": true, - "price": 20000000, - "city": "Houston", - "description": "

Well-maintained flex industrial business park in a thriving Houston industrial submarket. This multi-tenant property features a diverse mix of warehouse, manufacturing, and office spaces, catering to a wide range of industrial users and providing stable cash flow for investors.

Business Park Features:

- 150,000 sq ft of flex industrial space
- Variety of suite sizes and configurations
- Ample parking and truck courts
- Convenient access to major highways and transportation hubs
- Strong occupancy history and tenant retention

With a flexible design, a desirable location, and strong demand from a variety of industrial users, this flex industrial business park presents an attractive opportunity for investors seeking a diversified and income-oriented investment in the robust Houston industrial market.

", - "type": "102", - "imageOrder": [] - }, - { - "id": "2x5y243b-8z6w-7a80-w2x3-9y7z64b1c2d8", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Value-Add Retail Strip Center", - "state": "TX", - "hasImages": true, - "price": 8000000, - "city": "Fort Worth", - "description": "

Prime Value-Add Retail Opportunity

Well-located retail strip center with significant value-add potential in a growing Fort Worth suburb. This under-managed property presents a compelling opportunity to increase value through strategic leasing, property enhancements, and operational improvements.

Property Features:

- 50,000 sq ft of retail space
- Below-market occupancy with near-term lease expirations
- Potential to attract new tenants and increase rental rates
- Prominent location in a high-growth residential area
- Ample parking and good visibility from major roadways

With a prime location, a value-add investment profile, and strong market fundamentals, this retail strip center presents an excellent opportunity for investors seeking to reposition an underperforming asset and create significant value in the dynamic Fort Worth retail market.

", - "type": "100", - "imageOrder": [] - }, - { - "id": "3y6z354c-9a7x-8b92-x3y4-0z8a75c2d3e9", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Master-Planned Single Family Build-for-Rent Community", - "state": "TX", - "hasImages": true, - "price": 50000000, - "city": "Austin", - "description": "

Innovative build-for-rent single family home community in a rapidly growing Austin suburb. This well-designed property offers residents the benefits of single family living with the flexibility and convenience of renting, capitalizing on the growing demand for build-for-rent housing in the market.

Community Features:

- 150 detached single family homes
- Modern 3 and 4-bedroom floor plans
- Professional property management and maintenance
- Resort-style amenities, including a pool, fitness center, and clubhouse
- Prime location with convenient access to major employers and transportation

With a differentiated product offering, a desirable suburban location, and strong market demand for rental housing, this build-for-rent single family community presents a unique opportunity for investors to capitalize on the rapidly growing build-for-rent asset class in Austin.

", - "type": "105", - "imageOrder": [] - }, - { - "id": "4z7a465d-0b8y-9c03-y4z5-1a9b86d3e4f0", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Trophy Office Building", - "state": "TX", - "hasImages": true, - "price": 150000000, - "city": "Dallas", - "description": "

Iconic trophy office building in the heart of Dallas' vibrant Uptown district. This landmark property features a stunning architectural design, first-class amenities, and an unmatched location, attracting elite tenants and commanding premium rental rates.

Building Features:

- 500,000 sq ft of Class A+ office space
- LEED Platinum certification and state-of-the-art building systems
- Exquisite lobby and common areas with high-end finishes
- Floor-to-ceiling windows with panoramic city views
- Direct access to luxury dining, retail, and residential offerings

With an irreplaceable location, an iconic stature, and a premier tenant roster, this trophy office building presents a generational opportunity for investors to acquire a true landmark asset in the heart of Dallas' most desirable office submarket.

", - "type": "103", - "imageOrder": [] - }, - { - "id": "5a8b576e-1c9z-0d14-z5a6-2b0c97e3f4g1", - "temporary": false, - "userId": "", - "listingsCategory": "commercialProperty", - "title": "Value-Add Multifamily Opportunity", - "state": "TX", - "hasImages": true, - "price": 25000000, - "city": "Houston", - "description": "

Attractive Value-Add Multifamily Investment

Well-located multifamily property with significant value-add potential in a desirable Houston submarket. This under-improved asset presents a compelling opportunity to drive rental growth and enhance value through targeted capital improvements and operational enhancements.

Property Features:

- 200-unit garden-style apartment community
- Mix of one, two, and three-bedroom floor plans
- Proven value-add program with strong rental premiums
- Convenient location near major employment centers and transportation
- Below-market rents with potential for significant increases

With a prime location, a clear value-add strategy, and strong market fundamentals, this multifamily property presents an attractive opportunity for investors to capitalize on the growing demand for quality rental housing in Houston while creating substantial value through strategic renovations and repositioning.

", - "type": "105", - "imageOrder": [] - } - ] \ No newline at end of file + }, + { + "id": "7g0h465k-3i1f-4j03-f6g7-4h2i08k5l6m3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Timber Investment Opportunity", + "state": "OR", + "hasImages": true, + "price": 18000000, + "city": "Bend", + "description": "

Exceptional timber investment opportunity in the beautiful Pacific Northwest. This 10,000-acre property features a diverse mix of mature and young growth timber, primarily Douglas Fir and Ponderosa Pine.

Property Highlights:

- Sustainably managed for long-term timber production
- Well-maintained network of logging roads
- Multiple streams and water sources throughout the property
- Stunning views of the Cascade Mountains
- Potential for recreational leases or conservation easements

With a strong demand for timber products and a history of responsible management, this property offers a unique opportunity for long-term investment returns and asset diversification.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "8h1i576l-4j2g-4k14-g7h8-5i3j19l6m7n4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Full-Service Car Wash", + "state": "AZ", + "hasImages": true, + "price": 3000000, + "city": "Phoenix", + "description": "

Highly profitable full-service car wash in a prime Phoenix location. This well-established business features a 120-foot tunnel wash, detailing bays, and a customer waiting area.

Car Wash Features:

- State-of-the-art equipment with recent upgrades
- Capacity to wash up to 150 cars per hour
- Loyal customer base with monthly subscription plans
- Ample parking and easy access from major roadways
- Experienced staff in place

Take advantage of this turn-key opportunity to own a thriving car wash business in a growing market. Contact us today for more information and to schedule a tour.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9i2j687m-5k3h-4l25-h8i9-6j4k20m7n8o5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Historic Bank Building", + "state": "IL", + "hasImages": true, + "price": 2500000, + "city": "Chicago", + "description": "

Iconic Bank Building in Downtown Chicago

Rare opportunity to acquire a piece of Chicago history. This stunning bank building, built in the 1920s, has been beautifully maintained and updated for modern use.

Building Features:

- Grand lobby with original marble floors and ornate ceilings
- Multiple private offices and conference rooms
- Secure vault area with safe deposit boxes
- Modern HVAC and electrical systems
- Located in the heart of Chicago's financial district

This unique property offers endless possibilities for a variety of businesses or investors seeking a prestigious address in one of the world's great cities.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "0j3k798n-6l4i-5m36-i9j0-7k5l31n8o9p6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Convenience Store with Gas Station", + "state": "TX", + "hasImages": true, + "price": 1500000, + "city": "Dallas", + "description": "

High-traffic convenience store and gas station located in a bustling Dallas suburb. This profitable business offers a one-stop-shop for snacks, beverages, and fuel.

Property Features:

- 3,000 sq ft convenience store with well-stocked inventory
- 6 double-sided fuel pumps with recent upgrades
- Large parking area for customers
- Beer and wine sales for additional revenue
- Long-term lease in place with option to renew

With a strong customer base and proven track record of success, this convenience store and gas station is an excellent investment opportunity in a growing market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "1k4l809o-7m5j-6n47-j0k1-8l6m42o9p0q7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Warehouse Distribution Center", + "state": "CA", + "hasImages": true, + "price": 20000000, + "city": "Riverside", + "description": "

Massive warehouse distribution center strategically located near major highways and the Ports of Los Angeles and Long Beach. This state-of-the-art facility is perfectly positioned to serve the growing demand for logistics and e-commerce fulfillment.

Warehouse Features:

- 500,000 sq ft of flexible warehouse space
- 32-foot clear height ceilings
- 50 dock-high loading doors
- ESFR sprinkler system
- Ample parking for trucks and employees

With a prime location and modern amenities, this warehouse distribution center offers an exceptional opportunity for businesses looking to expand or optimize their supply chain operations in Southern California.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "2l5m910p-8n6k-7o58-k1l2-9m7n53p0q1r8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development Opportunity", + "state": "NY", + "hasImages": true, + "price": 15000000, + "city": "Brooklyn", + "description": "

Prime Development Site in Williamsburg

Incredible opportunity to develop a mixed-use project in the heart of Williamsburg, one of Brooklyn's most desirable neighborhoods. This 20,000 sq ft lot is zoned for residential and commercial use.

Property Highlights:

- Zoned for up to 60,000 sq ft of development
- Ideal for rental apartments, condos, or office space
- Excellent access to public transportation
- Surrounded by trendy restaurants, shops, and entertainment venues
- Rapidly growing market with strong demand for new development

With its prime location and flexible zoning, this development site offers endless possibilities for investors and developers looking to capitalize on the booming Brooklyn real estate market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "3m6n021q-9o7l-8p69-l2m3-0n8o75q1r2s9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Golf Course", + "state": "FL", + "hasImages": true, + "price": 12000000, + "city": "Naples", + "description": "

Championship golf course in the exclusive community of Naples, Florida. This beautifully maintained course offers a challenging and enjoyable experience for golfers of all skill levels.

Golf Course Features:

- 18-hole, par 72 course designed by a renowned architect
- Lush fairways and well-manicured greens
- Full-service clubhouse with pro shop and dining facilities
- Practice range and short-game area
- Cart barn and maintenance facilities included

Situated in a prestigious community known for its luxury homes and amenities, this golf course presents a unique opportunity to own a profitable business in a highly desirable location.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "4n7o132r-0p8m-9q81-m3n4-1o9p86r2s3t0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Pharmacy in Growing Market", + "state": "TX", + "hasImages": true, + "price": 2500000, + "city": "San Antonio", + "description": "

Well-established retail pharmacy in a rapidly growing San Antonio suburb. This thriving business has a loyal customer base and strong relationships with local healthcare providers.

Pharmacy Features:

- 3,500 sq ft retail space with drive-thru window
- Fully equipped prescription dispensing area
- Large over-the-counter product selection
- Experienced staff, including pharmacists and technicians
- Growing customer base with potential for expansion

Take advantage of this opportunity to acquire a profitable pharmacy in a market with increasing demand for healthcare services. Contact us today for more information and to schedule a tour.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "5o8p354s-1q9n-0r02-n4o5-2p0q97s3t4u1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Manufacturing Facility", + "state": "OH", + "hasImages": true, + "price": 8000000, + "city": "Cleveland", + "description": "

Fully Equipped Manufacturing Facility

Expansive industrial property with a well-maintained manufacturing facility. This property offers ample space for production, storage, and distribution.

Property Highlights:

- 150,000 sq ft manufacturing area with 30-foot ceilings
- 50,000 sq ft of warehouse space
- 10,000 sq ft of office space
- 5 loading docks and 2 drive-in doors
- Heavy power and natural gas service

Centrally located in Cleveland's industrial district, this property provides easy access to major highways and a skilled labor force. An excellent opportunity for manufacturers looking to expand or relocate their operations.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "6p9q465t-2r0o-1s13-o5p6-3q1r08t4u5v2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Motel Investment Opportunity", + "state": "AZ", + "hasImages": true, + "price": 4500000, + "city": "Flagstaff", + "description": "

Profitable motel located in the heart of Flagstaff, a popular destination for tourists visiting the Grand Canyon and other natural wonders of the Southwest.

Motel Features:

- 75 well-appointed guest rooms
- Outdoor swimming pool and hot tub
- Complimentary continental breakfast area
- On-site laundry facilities
- Ample parking for guests

With a strong occupancy rate and a prime location near major attractions, this motel offers a solid investment opportunity in a thriving tourism market. Contact us today for more information and to request financial data.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "7q0r576u-3s1p-2t24-p6q7-4r2s19u5v6w3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Retail Center", + "state": "TX", + "hasImages": true, + "price": 12000000, + "city": "Houston", + "description": "

Highly desirable grocery-anchored retail center in a densely populated Houston suburb. This well-maintained property features a diverse mix of national and local tenants.

Property Highlights:

- 80,000 sq ft of retail space
- Anchored by a popular grocery store
- 95% occupied with long-term leases
- Ample parking and easy access from major roadways
- Strong demographics and high traffic counts

With a stable tenant base and a prime location in a growing market, this retail center offers investors a reliable income stream and the potential for long-term appreciation.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "8r1s687v-4t2q-3u35-q7r8-5s3t20v6w7x4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Hunting Ranch with Mineral Rights", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Amarillo", + "description": "

Impressive hunting ranch spanning 8,000 acres in the Texas Panhandle. This property features diverse terrain, abundant wildlife, and valuable mineral rights.

Ranch Features:

- Prime hunting for whitetail deer, quail, and turkey
- Multiple ponds and creeks throughout the property
- Comfortable lodge with 5 bedrooms and 4 bathrooms
- Caretaker's house and equipment barns
- 50% mineral rights convey with the sale

This exceptional ranch offers a rare combination of recreational opportunities and passive income potential from mineral rights. Contact us today to learn more about this unique investment opportunity.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "9s2t798w-5u3r-4v46-r8s9-6t4u31w7x8y5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant on Lake Travis", + "state": "TX", + "hasImages": true, + "price": 3500000, + "city": "Austin", + "description": "

Stunning Lake Travis Restaurant

One-of-a-kind waterfront restaurant on the shores of Lake Travis. This popular dining destination features breathtaking views and a loyal customer base.

Restaurant Features:

- 6,000 sq ft of indoor and outdoor dining space
- Large patio with boat slips for customers
- Fully equipped commercial kitchen
- Liquor license and established bar business
- Ample parking and easy access from nearby marinas

Take advantage of this opportunity to own a profitable restaurant in one of Texas' most desirable locations. Contact us today for more information and to schedule a tour.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "0t3u809x-6v4s-5w57-s9t0-7u5v42x8y9z6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Class A Office Building", + "state": "TX", + "hasImages": true, + "price": 25000000, + "city": "Dallas", + "description": "

Prestigious Class A office building in the heart of Dallas' vibrant Uptown district. This impeccably maintained property offers a premier business address and modern amenities.

Building Features:

- 200,000 sq ft of rentable office space
- High-end finishes and efficient floor plates
- Fully leased to a diverse mix of credit tenants
- On-site parking garage and ground-floor retail
- LEED Gold certified for energy efficiency

Situated in one of Dallas' most desirable office markets, this investment-grade property presents a unique opportunity for investors seeking stable cash flow and long-term appreciation potential.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "1u4v910y-7w5t-6x68-t0u1-8v6w53y9z0a7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Sports Bar and Grill", + "state": "TX", + "hasImages": true, + "price": 2000000, + "city": "San Antonio", + "description": "

Popular sports bar and grill in a high-traffic San Antonio entertainment district. This well-established business features a loyal customer base and strong sales.

Business Features:

- 8,000 sq ft of dining and bar space
- Multiple large-screen TVs and state-of-the-art sound system
- Full kitchen with top-of-the-line equipment
- Outdoor patio with additional seating
- Liquor license and experienced staff in place

With a prime location and a proven track record of success, this sports bar and grill offers a turnkey opportunity for investors or owner-operators looking to acquire a profitable business in a growing market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "2v5w021z-8x6u-7y79-u1v2-9w7x64z0a1b8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Marina with Boat Storage", + "state": "FL", + "hasImages": true, + "price": 10000000, + "city": "Fort Lauderdale", + "description": "

Full-Service Marina on the Intracoastal Waterway

Well-maintained marina with boat storage and a range of amenities. This property offers a prime location on the Intracoastal Waterway, just minutes from the Atlantic Ocean.

Marina Features:

- 150 wet slips accommodating boats up to 100 feet
- Dry stack storage for 200 boats
- Fuel dock and pump-out station
- Ship's store and boat rental business
- Ample parking and easy access from major roadways

With a strong demand for boat storage and a growing boating community, this marina presents a unique investment opportunity in the heart of South Florida's yachting capital.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "3w6x132a-9y7v-8z80-v2w3-0x8y75a1b2c9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Airport Hangar and Office Complex", + "state": "TX", + "hasImages": true, + "price": 6000000, + "city": "Houston", + "description": "

Rare opportunity to acquire an airport hangar and office complex at Houston Executive Airport. This well-maintained property offers a turnkey solution for aviation-related businesses.

Property Features:

- 30,000 sq ft hangar with space for multiple aircraft
- 10,000 sq ft of office space
- Ample parking for employees and visitors
- Direct taxiway access
- Long-term lease in place with option to renew

Strategically located at a growing general aviation airport, this hangar and office complex is ideal for charter operators, maintenance providers, or corporate flight departments seeking a presence in the Houston market.

", + "type": "106", + "imageOrder": [] + }, + { + "id": "4x7y243b-0z8w-9a91-w3x4-1y9z86b2c3d0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Flex Space", + "state": "CA", + "hasImages": true, + "price": 12000000, + "city": "San Diego", + "description": "

Versatile industrial flex space in the Miramar submarket of San Diego. This property offers a mix of warehouse, manufacturing, and office space, making it ideal for a wide range of businesses.

Property Features:

- 80,000 sq ft of total space
- 60,000 sq ft of warehouse/manufacturing space
- 20,000 sq ft of office space
- 24-foot clear height ceilings
- 10 grade-level loading doors

Located in a highly desirable industrial park with easy access to major freeways, this flex space presents an excellent opportunity for investors or owner-users seeking a foothold in the tight San Diego industrial market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "5y8z354c-1a9x-0b03-x4y5-2z0a97c3d4e1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Religious Facility and School", + "state": "IL", + "hasImages": true, + "price": 3000000, + "city": "Chicago", + "description": "

Multipurpose Religious Facility

Well-maintained religious facility with an attached school in a peaceful Chicago neighborhood. This property offers a turnkey solution for a growing congregation or community organization.

Property Features:

- 15,000 sq ft of worship space
- 10,000 sq ft of classroom and office space
- Commercial kitchen and fellowship hall
- Ample parking for members and visitors
- Playground and outdoor recreation areas

Situated in a diverse and welcoming community, this religious facility and school presents a unique opportunity for a variety of faith-based or educational uses.

", + "type": "106", + "imageOrder": [] + }, + { + "id": "6z9a576d-2b0y-1c14-y5z6-3a1b08d4e5f2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Beachfront Resort and Spa", + "state": "HI", + "hasImages": true, + "price": 50000000, + "city": "Maui", + "description": "

Luxurious beachfront resort and spa on the island of Maui. This iconic property offers a once-in-a-lifetime opportunity to acquire a premier hospitality asset in a world-renowned destination.

Resort Features:

- 200 elegantly appointed guest rooms and suites
- Full-service spa and fitness center
- Multiple dining options, including fine dining and casual fare
- Infinity pool and direct beach access
- Event space for weddings and conferences

With a prime location on one of Maui's most stunning beaches, this resort and spa offers unparalleled potential for investors seeking a trophy asset in the highly sought-after Hawaiian market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "7a0b687e-3c1z-2d25-z6a7-4b2c19e5f6g3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Facility", + "state": "AZ", + "hasImages": true, + "price": 8000000, + "city": "Phoenix", + "description": "

Highly profitable self-storage facility in a rapidly growing Phoenix suburb. This well-maintained property offers a mix of standard and climate-controlled units to meet the diverse needs of customers.

Facility Features:

- 80,000 sq ft of rentable storage space
- 600 units ranging from 5x5 to 10x30
- Gated entry and 24-hour video surveillance
- On-site management office and retail store
- Room for expansion on adjacent land parcel

With strong occupancy rates and a proven track record of success, this self-storage facility presents an attractive investment opportunity in a market with high demand for storage solutions.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "8b1c798f-4d2a-3e36-a7b8-5c3d20f6g7h4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Brewery and Taproom", + "state": "CO", + "hasImages": true, + "price": 2500000, + "city": "Denver", + "description": "

Craft Brewery in the Heart of Denver

Award-winning craft brewery and taproom in a prime Denver location. This popular destination features a loyal customer base and a reputation for producing innovative and high-quality beers.

Brewery Features:

- 10,000 sq ft brewing facility with state-of-the-art equipment
- 2,500 sq ft taproom with indoor and outdoor seating
- Established distribution network and retail partnerships
- Experienced staff, including brewers and sales team
- Potential for expansion and increased production

With a strong brand presence and a prime location in one of the nation's craft beer capitals, this brewery and taproom offers a unique opportunity for investors or entrepreneurs looking to enter the thriving craft beer industry.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "9c2d809g-5e3b-4f47-b8c9-6d4e31g7h8i5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Strip Center", + "state": "TX", + "hasImages": true, + "price": 5000000, + "city": "San Antonio", + "description": "

Well-located retail strip center in a high-traffic area of San Antonio. This property features a diverse mix of national and local tenants, providing a stable income stream for investors.

Property Highlights:

- 25,000 sq ft of retail space
- 100% occupied with long-term leases
- Anchor tenant is a popular grocery store
- Ample parking and easy access from major roadways
- Strong demographics and population growth in the area

With a proven track record of success and a prime location in a growing market, this retail strip center presents an attractive opportunity for investors seeking a reliable and profitable investment.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "0d3e910h-6f4c-5g58-c9d0-7e5f42h8i9j6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Car Dealership and Service Center", + "state": "FL", + "hasImages": true, + "price": 15000000, + "city": "Miami", + "description": "

Highly successful car dealership and service center in a prime Miami location. This well-established business features a strong brand presence and a loyal customer base.

Dealership Features:

- 50,000 sq ft showroom and service center
- Franchise agreement with a major automotive brand
- Experienced sales and service staff in place
- Large inventory of new and pre-owned vehicles
- Strong revenue and profit growth potential

Situated in a high-traffic area with excellent visibility, this car dealership and service center presents a unique opportunity for investors or automotive industry professionals seeking a profitable and well-established business in a thriving market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "1e4f021i-7g5d-6h69-d1e2-8f6g53i9j0k7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mobile Home Park", + "state": "AZ", + "hasImages": true, + "price": 6000000, + "city": "Tucson", + "description": "

Well-Maintained Mobile Home Park

Profitable mobile home park in a desirable Tucson location. This property features a mix of park-owned and tenant-owned homes, providing a stable and diversified income stream.

Park Features:

- 100 mobile home sites on 20 acres
- 90% occupancy with long-term tenants
- Park-owned homes for additional rental income
- On-site management office and maintenance staff
- Amenities include a swimming pool, clubhouse, and playground

With strong demand for affordable housing and a proven track record of success, this mobile home park offers investors a reliable and profitable investment opportunity in a growing market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "2f5g132j-8h6e-7i80-e2f3-9g7h64j1k2l8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Assisted Living Facility", + "state": "CA", + "hasImages": true, + "price": 20000000, + "city": "San Diego", + "description": "

Well-appointed assisted living facility in a beautiful San Diego neighborhood. This property offers a comfortable and caring environment for seniors, with a range of amenities and services.

Facility Features:

- 75 spacious studio and one-bedroom apartments
- 24-hour staffing and medical support
- Restaurant-style dining and specialized meal plans
- On-site physical therapy and wellness programs
- Landscaped grounds and outdoor recreation areas

With a strong reputation and high occupancy rates, this assisted living facility presents an excellent opportunity for investors seeking a profitable and rewarding investment in the growing senior housing market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "3g6h243k-9i7f-8j92-f3g4-0h8i75k2l3m9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Fitness Center and Gym", + "state": "NY", + "hasImages": true, + "price": 3000000, + "city": "New York City", + "description": "

State-of-the-Art Fitness Center in Manhattan

High-end fitness center and gym in a prime Manhattan location. This popular facility features a loyal membership base and a reputation for providing exceptional fitness experiences.

Gym Features:

- 15,000 sq ft of workout space
- Top-of-the-line cardio and strength equipment
- Group fitness studios and personal training areas
- Locker rooms with premium amenities
- Juice bar and retail shop

Situated in a densely populated and affluent neighborhood, this fitness center and gym offers investors a unique opportunity to acquire a profitable and well-established business in the heart of New York City.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4h7i354l-0j8g-9k03-g4h5-1i9j86l3m4n0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Building", + "state": "TX", + "hasImages": true, + "price": 12000000, + "city": "Houston", + "description": "

Highly desirable medical office building in the heart of Houston's renowned Texas Medical Center. This property offers a prime location and a diverse mix of healthcare tenants.

Building Features:

- 50,000 sq ft of medical office space
- Fully leased to a variety of healthcare providers
- State-of-the-art medical infrastructure and technology
- Ample parking for patients and staff
- Adjacent to major hospitals and research facilities

With strong demand for medical office space in the Texas Medical Center and a stable tenant base, this investment opportunity offers investors a reliable income stream and the potential for long-term appreciation.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "5i8j465m-1k9h-0l14-h5i6-2j0k97m4n5o1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Winery and Vineyard", + "state": "CA", + "hasImages": true, + "price": 25000000, + "city": "Napa", + "description": "

Stunning winery and vineyard estate in the heart of Napa Valley. This iconic property features award-winning wines, beautiful grounds, and a loyal customer base.

Estate Features:

- 50 acres of premium vineyards
- State-of-the-art winemaking facility
- Elegant tasting room and event spaces
- Historic estate home for owner or guest accommodations
- Strong brand recognition and distribution network

With a prime location in one of the world's most renowned wine regions, this winery and vineyard offers investors a rare opportunity to acquire a trophy asset with significant revenue potential and lifestyle benefits.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "7k0l687o-3m1j-2n24-j6k7-4l2m19o5p6q3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Shopping Center", + "state": "TX", + "hasImages": true, + "price": 18000000, + "city": "Dallas", + "description": "

Profitable retail shopping center in a prime Dallas location. This well-maintained property features a diverse mix of national and local tenants, providing a stable income stream for investors.

Property Highlights:

- 120,000 sq ft of retail space
- Anchored by a popular grocery store and pharmacy
- 95% occupied with long-term leases
- Ample parking and easy access from major highways
- Strong demographics and population growth in the area

With a proven track record of success and a prime location in a thriving market, this retail shopping center presents an attractive opportunity for investors seeking a reliable and lucrative investment.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "8l1m798p-4n2k-3o35-k7l8-5m3n20p6q7r4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Cattle Ranch and Farmland", + "state": "TX", + "hasImages": true, + "price": 12000000, + "city": "Amarillo", + "description": "

Expansive cattle ranch and farmland in the heart of the Texas Panhandle. This historic property features lush pastures, productive farmland, and a variety of income-generating opportunities.

Ranch Features:

- 5,000 acres of grassland and farmland
- Herd of 1,000 cattle with established genetics
- Irrigation systems and grain storage facilities
- Comfortable ranch house and employee housing
- Mineral rights and hunting lease potential

With a strong agricultural heritage and diverse revenue streams, this cattle ranch and farmland offers investors a unique opportunity to acquire a significant land holding in a renowned ranching region.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "9m2n809q-5o3l-4p46-l8m9-6n4o31q7r8s5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Automotive Repair and Service Center", + "state": "TX", + "hasImages": true, + "price": 1500000, + "city": "Houston", + "description": "

Highly Profitable Automotive Repair Shop

Well-established automotive repair and service center in a busy Houston neighborhood. This turn-key business features a loyal customer base and a reputation for providing quality service.

Business Features:

- 8,000 sq ft facility with 10 service bays
- State-of-the-art diagnostic equipment and tools
- Experienced staff of certified technicians
- Strong relationships with parts suppliers and dealerships
- Consistent revenue growth and profitability

Situated in a high-traffic area with excellent visibility, this automotive repair and service center presents a unique opportunity for investors or industry professionals seeking a profitable and well-established business in a thriving market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "0n3o910r-6p4m-5q57-m9n0-7o5p42r8s9t6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Multi-Tenant Office Building", + "state": "TX", + "hasImages": true, + "price": 8000000, + "city": "San Antonio", + "description": "

Fully leased multi-tenant office building in a desirable San Antonio business district. This well-maintained property features a diverse mix of professional tenants and a stable income stream.

Building Features:

- 40,000 sq ft of rentable office space
- 95% occupancy with long-term leases
- Recent renovations and upgrades
- Ample parking and easy access from major roadways
- Strong rental rate growth potential

With a prime location and a proven track record of tenant retention, this multi-tenant office building presents an attractive opportunity for investors seeking a reliable and profitable investment in a growing market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "1o4p021s-7q5n-6r68-n1o2-8p6q53s9t0u7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Golf Course and Country Club", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Austin", + "description": "

Prestigious golf course and country club in a scenic Austin location. This iconic property features a championship golf course, elegant clubhouse, and a variety of amenities for members and guests.

Club Features:

- 18-hole golf course designed by a renowned architect
- 30,000 sq ft clubhouse with dining, event spaces, and pro shop
- Tennis courts, swimming pool, and fitness center
- Established membership base and strong revenue streams
- Opportunity for residential development on adjacent land

With a prime location in a growing market and a reputation for excellence, this golf course and country club offers investors a unique opportunity to acquire a trophy asset with significant upside potential.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "2p5q132t-8r6o-7s79-o1p2-9q7r64t0u1v8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Student Housing Complex", + "state": "TX", + "hasImages": true, + "price": 20000000, + "city": "College Station", + "description": "

Modern Student Housing Near Texas A&M University

Newly constructed student housing complex in a prime location near the Texas A&M University campus. This purpose-built property features a variety of unit types and a range of amenities designed for student residents.

Complex Features:

- 200 fully furnished studio, 1, 2, and 3-bedroom units
- Resort-style swimming pool and fitness center
- Study lounges and collaborative workspaces
- On-site management and 24/7 security
- Consistent occupancy and rental rate growth

With strong demand for high-quality student housing and a prime location in a major university market, this complex presents an excellent opportunity for investors seeking a stable and profitable investment with long-term growth potential.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "3q6r243u-9s7p-8t02-p3q4-0r8s75u1v2w9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Flex Industrial Space", + "state": "TX", + "hasImages": true, + "price": 6000000, + "city": "Dallas", + "description": "

Versatile flex industrial space in a growing Dallas business park. This well-located property features a mix of warehouse, manufacturing, and office space, suitable for a variety of industrial users.

Property Features:

- 50,000 sq ft of total space
- 30,000 sq ft of warehouse/manufacturing space
- 20,000 sq ft of office and showroom space
- 24-foot clear height ceilings and ample power
- Convenient access to major highways and airports

With strong demand for flexible industrial space in the Dallas market and a prime location in a modern business park, this property presents an attractive opportunity for investors or owner-users seeking a functional and adaptable facility.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "4r7s354v-0t8q-9u13-q4r5-1s9t86v2w3x0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Condominiums", + "state": "TX", + "hasImages": true, + "price": 4000000, + "city": "Houston", + "description": "

Newly Developed Medical Office Condos

State-of-the-art medical office condominiums in a prime Houston location. This newly constructed property offers healthcare providers the opportunity to own their office space in a modern, purpose-built facility.

Property Features:

- 20 medical office condos ranging from 1,500 to 5,000 sq ft
- Customizable floor plans and high-end finishes
- Abundant parking and easy access for patients
- Ideal location near hospitals and medical centers
- Strong demand for medical office space in the area

With the flexibility of condominium ownership and the benefits of a new construction property, these medical office condos present an attractive opportunity for healthcare practices looking to establish a long-term presence in a thriving market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "5s8t576w-1u9r-0v24-r5s6-2t0u97w3x4y1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Development Site", + "state": "TX", + "hasImages": true, + "price": 2000000, + "city": "San Antonio", + "description": "

Prime development site for a self-storage facility in a rapidly growing San Antonio suburb. This strategically located property offers excellent visibility and easy access from major thoroughfares.

Site Features:

- 5 acres of developable land
- Zoned for self-storage use
- Utilities available at the site
- Strong demographics and high traffic counts
- Limited self-storage competition in the immediate area

With strong demand for self-storage in the San Antonio market and a prime location in a growing suburb, this development site presents an excellent opportunity for investors or developers looking to capitalize on the booming self-storage industry.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "6t9u687x-2v0s-1w13-s6t7-3u1v08x4y5z2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Net Leased Fast Food Restaurant", + "state": "TX", + "hasImages": true, + "price": 3000000, + "city": "Austin", + "description": "

Fully leased fast food restaurant with a long-term net lease in place. This well-located property features a popular national tenant and a stable income stream for investors.

Property Features:

- 3,500 sq ft freestanding restaurant building
- 15-year net lease with corporate guarantee
- Scheduled rental increases and renewal options
- High-traffic location near major retailers and employers
- Minimal landlord responsibilities and expenses

With a long-term lease, a credit tenant, and a prime location in a growing market, this net leased fast food restaurant presents an attractive opportunity for investors seeking a hands-off, income-producing investment with minimal management requirements.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "7u0v798y-3w1t-2x24-t6u7-4v2w19y5z6a3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Hotel and Conference Center", + "state": "TX", + "hasImages": true, + "price": 25000000, + "city": "Dallas", + "description": "

Upscale hotel and conference center in a prime Dallas location. This well-established property features luxurious guest rooms, extensive meeting facilities, and a variety of amenities for business and leisure travelers.

Property Highlights:

- 200 well-appointed guest rooms and suites
- 20,000 sq ft of flexible meeting and event space
- Full-service restaurant and bar
- Outdoor pool, fitness center, and spa
- Consistent occupancy and strong RevPAR growth

With a prime location, a strong brand affiliation, and a proven track record of success, this hotel and conference center presents an excellent opportunity for investors seeking a profitable and well-positioned hospitality asset in a dynamic market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "8v1w909z-4x2u-3y35-u7v8-5w3x20z6a7b4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Outdoor Storage Yard", + "state": "TX", + "hasImages": true, + "price": 3000000, + "city": "Houston", + "description": "

Secure industrial outdoor storage yard in a strategic Houston location. This fully fenced and gated property offers ample space for storage, staging, and parking of vehicles, equipment, and materials.

Property Features:

- 10 acres of stabilized yard space
- Concrete and gravel surfaces for various uses
- Secure perimeter fencing and lighting
- Office trailer and storage buildings included
- Easy access to major highways and the Port of Houston

With strong demand for outdoor storage space in the Houston industrial market and a prime location near key transportation routes, this property presents an attractive opportunity for investors or users seeking a functional and well-maintained storage yard.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9w2x020a-5y3v-4z46-v8w9-6x4y31a7b8c5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Manufactured Housing Community", + "state": "TX", + "hasImages": true, + "price": 8000000, + "city": "San Antonio", + "description": "

Well-Maintained Manufactured Housing Community

Established manufactured housing community in a growing San Antonio suburb. This well-operated property features a mix of park-owned and tenant-owned homes, providing a stable and diversified income stream.

Community Features:

- 150 manufactured home sites on 25 acres
- 95% occupancy with long-term tenants
- Park-owned homes for additional rental income
- On-site management and maintenance staff
- Amenities include a clubhouse, pool, and playground

With strong demand for affordable housing and a proven track record of success, this manufactured housing community offers investors a reliable and profitable investment opportunity in a thriving market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "0x3y021b-6z4w-5a57-w9x0-7y5z42b8c9d6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Strip Center", + "state": "TX", + "hasImages": true, + "price": 6000000, + "city": "Austin", + "description": "

Newly constructed retail strip center in a rapidly growing Austin neighborhood. This well-located property features a diverse mix of national and local tenants, providing a stable income stream for investors.

Property Highlights:

- 15,000 sq ft of retail space
- 100% occupied with long-term leases
- Anchor tenant is a popular coffee shop and drive-thru
- Ample parking and easy access from major roadways
- Strong demographics and high traffic counts

With a prime location in a thriving residential area and a lineup of successful tenants, this retail strip center presents an attractive opportunity for investors seeking a turnkey investment with strong growth potential.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "1y4z132c-7a5x-6b69-x1y2-8z6a53c9d0e7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant Property", + "state": "TX", + "hasImages": true, + "price": 4000000, + "city": "Corpus Christi", + "description": "

Prime waterfront restaurant property in the heart of Corpus Christi's vibrant marina district. This highly desirable location offers stunning views of the bay and a built-in customer base of boaters, tourists, and local residents.

Property Features:

- 8,000 sq ft restaurant building with indoor and outdoor seating
- Large commercial kitchen with state-of-the-art equipment
- Boat slips and docking facilities for customers
- Ample parking and easy access from land and water
- Opportunity for redevelopment or rebranding

With a prime waterfront location and a turnkey restaurant facility, this property presents a unique opportunity for investors, restaurateurs, or developers seeking to capitalize on the strong demand for dining and entertainment options in Corpus Christi's thriving marina district.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "2z5a243d-8b6y-7c80-y2z3-9a7b64d1e2f8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Daycare and Learning Center", + "state": "TX", + "hasImages": true, + "price": 1500000, + "city": "Dallas", + "description": "

Established Daycare and Learning Center

Well-respected daycare and learning center in a family-friendly Dallas suburb. This turnkey business features a strong enrollment, experienced staff, and a reputation for providing exceptional child care and education.

Business Features:

- Licensed for 150 children, ages 6 weeks to 12 years
- 10,000 sq ft facility with classrooms, play areas, and offices
- Long-term lease in place with renewal options
- Consistent revenue growth and profitability
- Potential for expansion or additional service offerings

With a prime location, a loyal customer base, and a proven track record of success, this daycare and learning center presents an excellent opportunity for investors or owner-operators seeking a rewarding and profitable business in a growing market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "3a6b354e-9c7z-8d92-z3a4-0b8c75e2f3g9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Automotive Dealership Facility", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Houston", + "description": "

State-of-the-art automotive dealership facility in a high-traffic Houston location. This modern property features a spacious showroom, service center, and inventory storage, designed to showcase and support a thriving dealership business.

Facility Features:

- 50,000 sq ft building on 5 acres of land
- Showroom, offices, and customer lounge
- 30 service bays with advanced diagnostic equipment
- Extensive parking and vehicle storage areas
- Prime location near major highways and auto rows

With a purpose-built facility, a strategic location, and strong market demand, this automotive dealership property presents an exceptional opportunity for dealers or investors looking to establish or expand their presence in the lucrative Houston market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "4b7c465f-0d8a-9e03-a4b5-1c9d86f3g4h0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "BBQ Restaurant and Catering Business", + "state": "TX", + "hasImages": true, + "price": 2000000, + "city": "Austin", + "description": "

Award-Winning BBQ Restaurant and Catering

Legendary BBQ restaurant and catering business in the heart of Austin's vibrant food scene. This well-established operation features a loyal customer base, critical acclaim, and multiple revenue streams.

Business Features:

- Rustic 5,000 sq ft restaurant with indoor and outdoor seating
- Large commercial kitchen with smokers and catering equipment
- Strong catering sales for events and corporate clients
- Wholesale product line with retail and online sales
- Experienced staff and well-documented recipes and processes

With a prime location, a beloved brand, and a diversified business model, this BBQ restaurant and catering operation offers investors a unique opportunity to acquire a profitable and scalable culinary venture in one of the nation's top food destinations.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "5c8d576g-1e9b-0f14-b5c6-2d0e97g3h4i1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Class A Medical Office Building", + "state": "TX", + "hasImages": true, + "price": 18000000, + "city": "San Antonio", + "description": "

Newly constructed Class A medical office building in San Antonio's premier medical district. This state-of-the-art property features a prime location, high-quality finishes, and a roster of credit-worthy medical tenants.

Building Features:

- 60,000 sq ft of rentable medical office space
- 95% leased to a diverse mix of medical specialties
- Efficient floor plates with flexible suite configurations
- Abundant parking and convenient access for patients
- LEED Silver certification for energy efficiency and sustainability

With strong tenant demand, long-term leases, and a prime location in a growing medical hub, this Class A medical office building presents an attractive opportunity for investors seeking a stable, income-producing asset with significant upside potential in a thriving healthcare market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "6d9e687h-2f0c-1g13-c6d7-3e1f08h4i5j2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development Opportunity", + "state": "TX", + "hasImages": true, + "price": 10000000, + "city": "Fort Worth", + "description": "

Prime development site in the heart of downtown Fort Worth. This well-located property offers the opportunity to create a signature mixed-use project with retail, office, and residential components.

Site Features:

- 2 acres of developable land
- Zoned for mixed-use development up to 20 stories
- Excellent visibility and accessibility from major thoroughfares
- Surrounded by popular dining, entertainment, and cultural attractions
- Strong market demand for urban living and working environments

With a prime location, flexible zoning, and a dynamic urban context, this mixed-use development site presents a unique opportunity for developers or investors to create a landmark project that capitalizes on the strong growth and revitalization of downtown Fort Worth.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "7e0f798i-3g1d-2h24-d6e7-4f2g19i5j6k3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Winery and Tasting Room", + "state": "CA", + "hasImages": true, + "price": 7000000, + "city": "Sonoma", + "description": "

Boutique winery and tasting room in the heart of Sonoma wine country. This charming property features a historic vineyard, award-winning wines, and a loyal customer base of wine enthusiasts.

Property Highlights:

- 20 acres of vineyards with premium grape varieties
- 5,000 sq ft winery building with production facilities
- Rustic tasting room with indoor and outdoor seating
- Established wine club and direct-to-consumer sales
- Potential for expansion and special events

With a prime location, a strong brand identity, and a proven track record of success, this winery and tasting room presents a unique opportunity for investors or operators seeking to acquire a turnkey wine business in one of the world's most prestigious wine regions.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "8f1g909j-4h2e-3i35-e7f8-5g3h20j6k7l4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Cold Storage and Distribution Facility", + "state": "FL", + "hasImages": true, + "price": 15000000, + "city": "Miami", + "description": "

State-of-the-art cold storage and distribution facility in a strategic Miami location. This well-maintained property features advanced refrigeration systems, ample storage capacity, and easy access to major transportation routes.

Facility Features:

- 100,000 sq ft of refrigerated warehouse space
- Multiple temperature zones for various products
- 20 loading docks with sealed dock levelers
- Modern office and administrative areas
- Convenient access to airports, seaports, and highways

With strong demand for cold storage space in the Miami market and a prime location near key distribution hubs, this facility presents an attractive opportunity for investors or operators in the food, beverage, and pharmaceutical industries.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9g2h020k-5i3f-4j46-f8g9-6h4i31k7l8m5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Organic Grocery Store and Cafe", + "state": "WA", + "hasImages": true, + "price": 3500000, + "city": "Seattle", + "description": "

Popular Organic Grocery Store and Cafe

Well-established organic grocery store and cafe in a thriving Seattle neighborhood. This beloved community institution features a wide selection of natural and organic products, a busy cafe, and a loyal customer base.

Business Features:

- 8,000 sq ft retail space with a mix of groceries and prepared foods
- Cozy cafe with indoor and outdoor seating
- Strong relationships with local farmers and producers
- Excellent reputation and high customer loyalty
- Potential for expansion or additional locations

With a prime location, a dedicated customer base, and a growing demand for organic and natural products, this grocery store and cafe presents an excellent opportunity for investors or entrepreneurs seeking a profitable and socially responsible business venture.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "0h3i021l-6j4g-5k57-g9h0-7i5j42l8m9n6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Ski Resort and Mountain Lodge", + "state": "CO", + "hasImages": true, + "price": 30000000, + "city": "Breckenridge", + "description": "

Iconic ski resort and mountain lodge in the heart of the Colorado Rockies. This renowned property features world-class skiing, luxurious accommodations, and a range of amenities for outdoor enthusiasts and vacationers.

Resort Features:

- 1,000 acres of skiable terrain with 20 lifts
- 150-room mountain lodge with spa, restaurant, and bar
- Additional ski-in/ski-out condominiums and cabins
- Year-round activities, including hiking, biking, and golfing
- Strong revenue from lift tickets, lodging, and real estate sales

With a prime location, a loyal customer base, and a reputation for excellence, this ski resort and mountain lodge presents a rare opportunity for investors to acquire a trophy asset in one of North America's top ski destinations.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "1i4j132m-7k5h-6l69-h1i2-8j6k53m9n0o7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Historic Inn and Restaurant", + "state": "VT", + "hasImages": true, + "price": 2500000, + "city": "Stowe", + "description": "

Charming historic inn and restaurant in the picturesque town of Stowe, Vermont. This beautifully restored property features cozy guest rooms, a farm-to-table restaurant, and a prime location near popular ski resorts and outdoor attractions.

Property Features:

- 12 uniquely decorated guest rooms with private baths
- 50-seat restaurant with a focus on local ingredients
- Welcoming common areas, including a library and fireplace lounge
- Landscaped grounds with gardens and outdoor seating
- Strong occupancy rates and positive guest reviews

With a turnkey operation, a loyal customer base, and a prime location in a popular New England destination, this historic inn and restaurant presents a unique opportunity for investors or owner-operators seeking a rewarding and profitable hospitality business.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "2j5k243n-8l6i-7m80-i2j3-9k7l64n1o2p8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Marina and Boat Storage Facility", + "state": "FL", + "hasImages": true, + "price": 12000000, + "city": "Key West", + "description": "

Full-Service Marina and Boat Storage

Well-maintained marina and boat storage facility in the heart of Key West's vibrant boating community. This strategically located property features a range of amenities and services for boaters and a consistent demand for slip rentals and storage.

Marina Features:

- 100 wet slips accommodating boats up to 80 feet
- Dry stack storage for 150 boats
- Fuel dock, pump-out station, and ship's store
- Boat rental and charter services
- Convenient access to the Atlantic Ocean and Gulf of Mexico

With a prime location, a comprehensive range of services, and a strong boating community, this marina and boat storage facility presents an attractive opportunity for investors seeking a profitable and well-established business in a key marine market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "3k6l354o-9m7j-8n92-j3k4-0l8m75o2p3q9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Regional Shopping Mall", + "state": "OH", + "hasImages": true, + "price": 50000000, + "city": "Columbus", + "description": "

Dominant regional shopping mall in a populous Columbus suburb. This well-located property features a diverse mix of national retailers, popular dining and entertainment options, and a loyal customer base from a wide trade area.

Mall Features:

- 800,000 sq ft of retail space
- Anchored by major department stores and big-box retailers
- Inline space with a mix of national and local tenants
- Food court, movie theater, and family entertainment center
- Ample parking and easy access from major highways

With a strategic location, a strong tenant mix, and a history of consistent foot traffic and sales, this regional shopping mall presents a unique opportunity for investors to acquire a significant retail asset with value-add potential in a growing Midwest market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "4l7m465p-0n8k-9o03-k4l5-1m9n86p3q4r0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Craft Distillery and Tasting Room", + "state": "KY", + "hasImages": true, + "price": 4000000, + "city": "Louisville", + "description": "

Award-Winning Craft Distillery and Tasting Room

Acclaimed craft distillery and tasting room in the heart of Louisville's historic Bourbon District. This unique property features a state-of-the-art distillation facility, a stylish tasting room, and a strong brand presence in the fast-growing craft spirits market.

Distillery Features:

- 10,000 sq ft distillation facility with room for expansion
- Tasting room and gift shop with indoor and outdoor seating
- Award-winning portfolio of bourbon, rye, and specialty spirits
- Established distribution network and online sales platform
- Tours, tastings, and special events for visitors and enthusiasts

With a prime location, a respected brand, and a position at the forefront of the craft spirits movement, this distillery and tasting room presents an exciting opportunity for investors or operators looking to capitalize on the booming demand for authentic and artisanal spirits.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "5m8n576q-1o9l-0p14-l5m6-2n0o97q3r4s1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Senior Housing and Assisted Living", + "state": "AZ", + "hasImages": true, + "price": 25000000, + "city": "Scottsdale", + "description": "

Upscale senior housing and assisted living community in the heart of Scottsdale. This well-appointed property features a range of housing options, comprehensive care services, and resort-style amenities for residents.

Community Features:

- 150 independent living, assisted living, and memory care units
- Spacious apartments with high-end finishes and appliances
- Multiple dining venues, fitness center, and swimming pool
- On-site medical clinic and 24/7 care staff
- Engaging social, educational, and recreational programs

With a prime location, a continuum of care, and a commitment to resident satisfaction, this senior housing and assisted living community presents an attractive opportunity for investors seeking a stable and growing asset in the rapidly expanding senior living sector.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "6n9o687r-2p0m-1q13-m6n7-3o1p08r4s5t2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Data Center and Technology Campus", + "state": "NC", + "hasImages": true, + "price": 75000000, + "city": "Raleigh", + "description": "

High-performance data center and technology campus in the renowned Research Triangle Park. This state-of-the-art property features advanced infrastructure, robust connectivity, and a strategic location in one of the nation's leading technology hubs.

Campus Features:

- 200,000 sq ft of data center space with redundant power and cooling
- 100,000 sq ft of office and lab space for technology tenants
- Multiple fiber optic networks and cloud interconnects
- 24/7 security, monitoring, and technical support
- Room for expansion and additional development

With a prime location, a cutting-edge facility, and a strong demand from technology companies and enterprise users, this data center and technology campus presents a unique opportunity for investors to acquire a critical asset in the rapidly growing digital infrastructure market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "7o0p798s-3q1n-2r24-n6o7-4p2q19s5t6u3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Private Island Resort", + "state": "FL", + "hasImages": true, + "price": 100000000, + "city": "Key West", + "description": "

Luxurious Private Island Resort

Exquisite private island resort located off the coast of Key West. This one-of-a-kind property features pristine beaches, elegant accommodations, and a host of exclusive amenities for the world's most discerning travelers.

Resort Features:

- 50 luxurious beachfront villas and suites
- World-class dining, spa, and fitness facilities
- Private yacht marina and seaplane access
- Unspoiled natural beauty and abundant recreational activities
- Potential for further development and expansion

With an unparalleled location, a reputation for excellence, and a truly irreplaceable asset, this private island resort presents a rare opportunity for investors to acquire a trophy property in one of the world's most sought-after destinations.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "8p1q909t-4r2o-3s35-o7p8-5q3r20t6u7v4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Portfolio", + "state": "TX", + "hasImages": true, + "price": 50000000, + "city": "Houston", + "description": "

Well-performing self-storage portfolio in the greater Houston metropolitan area. This group of properties features a mix of traditional and climate-controlled units, strong occupancy rates, and a history of consistent revenue growth.

Portfolio Highlights:

- 5 self-storage facilities totaling 500,000 sq ft
- 3,000 units with a balanced mix of sizes and types
- Average occupancy rate of 95% across the portfolio
- Fully automated with online rentals and 24/7 access
- Opportunities for revenue optimization and expansion

With a strategic focus on a high-growth market, a proven operating platform, and multiple avenues for value creation, this self-storage portfolio presents an attractive opportunity for investors seeking to capitalize on the strong and resilient self-storage asset class.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "0r3s021v-6t4q-5u57-q9r0-7s5t42v8w9x6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Resort and Spa", + "state": "HI", + "hasImages": true, + "price": 75000000, + "city": "Maui", + "description": "

Oceanfront Luxury Resort and Spa

Exquisite luxury resort and spa situated on the pristine shores of Maui. This world-class property features elegant accommodations, top-tier amenities, and unparalleled ocean views, attracting discerning travelers from around the globe.

Resort Features:

- 200 beautifully appointed guest rooms and suites
- Full-service spa, fitness center, and infinity pool
- Gourmet dining options showcasing local cuisine
- Extensive meeting and event spaces
- Prime beachfront location with direct access to water activities

With a strong brand reputation, consistent occupancy, and a truly idyllic setting, this luxury resort and spa presents an exceptional opportunity for investors seeking a trophy asset in one of the world's most desirable destinations.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "1s4t132w-7u5r-6v69-r1s2-8t6u53w9x0y7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Logistics Park", + "state": "IL", + "hasImages": true, + "price": 80000000, + "city": "Chicago", + "description": "

State-of-the-art industrial logistics park strategically located in the heart of Chicago's transportation network. This master-planned property features modern warehouse and distribution facilities, robust infrastructure, and excellent access to major highways, airports, and rail lines.

Park Features:

- 1,000,000 sq ft of Class A industrial space
- Flexible layouts accommodating various tenant needs
- 32-foot clear heights, ESFR sprinklers, and ample truck courts
- Adjacent intermodal rail terminal and container yard
- Potential for additional development and build-to-suit opportunities

With a prime location, cutting-edge facilities, and strong demand from logistics and e-commerce tenants, this industrial logistics park presents a unique opportunity for investors to acquire a critical asset in one of the nation's most important distribution markets.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "2t5u243x-8v6s-7w80-s2t3-9u7v64x1y2z8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center", + "state": "CA", + "hasImages": true, + "price": 30000000, + "city": "Los Angeles", + "description": "

Well-established grocery-anchored shopping center in a densely populated Los Angeles submarket. This highly trafficked property features a strong mix of national and regional tenants, providing essential goods and services to the surrounding community.

Shopping Center Features:

- 100,000 sq ft of retail space
- Anchored by a high-performing supermarket chain
- Diverse lineup of inline tenants, including dining and service options
- Ample parking and easy access from major roadways
- Stable cash flow and long-term leases with rental escalations

With a prime location, a necessity-based tenant mix, and consistent foot traffic, this grocery-anchored shopping center presents an attractive opportunity for investors seeking a reliable and defensive retail asset in a major metropolitan market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "3u6v354y-9w7t-8x92-t3u4-0v8w75y2z3a9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Portfolio", + "state": "TX", + "hasImages": true, + "price": 60000000, + "city": "Houston", + "description": "

High-Quality Medical Office Portfolio

Well-maintained portfolio of medical office buildings located throughout the Houston metropolitan area. These strategically positioned properties feature a diverse mix of healthcare tenants, strong occupancy rates, and a history of consistent rental growth.

Portfolio Highlights:

- 5 medical office buildings totaling 250,000 sq ft
- Reputable tenant base, including hospitals and physician practices
- Weighted average lease term of 7 years
- Convenient locations near major hospitals and residential areas
- Opportunities for rent growth and additional value creation

With a focus on a stable and growing healthcare market, long-term leases, and multiple avenues for value enhancement, this medical office portfolio presents an attractive opportunity for investors seeking to capitalize on the strong demand for quality medical office space.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4v7w465z-0x8u-9y03-u4v5-1w9x86z3a4b0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Boutique Hotel and Restaurant", + "state": "LA", + "hasImages": true, + "price": 12000000, + "city": "New Orleans", + "description": "

Charming boutique hotel and restaurant in the heart of New Orleans' historic French Quarter. This unique property features elegant accommodations, a celebrated restaurant, and a prime location in one of the world's most iconic travel destinations.

Property Features:

- 50 beautifully appointed guest rooms and suites
- Acclaimed restaurant and bar featuring local cuisine
- Inviting courtyard and balcony spaces
- Convenient access to top attractions and entertainment
- Strong occupancy rates and average daily rates

With a storied history, a loyal customer base, and an unbeatable location, this boutique hotel and restaurant presents a rare opportunity for investors to acquire a truly one-of-a-kind asset in a market with high barriers to entry.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "5w8x576a-1y9v-0z14-v5w6-2x0y97a3b4c1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Campus-Adjacent Student Housing", + "state": "PA", + "hasImages": true, + "price": 35000000, + "city": "Philadelphia", + "description": "

Newly constructed student housing community adjacent to a major university campus in Philadelphia. This purpose-built property features modern amenities, a pedestrian-friendly location, and a captive tenant base of students seeking convenient and high-quality accommodations.

Community Features:

- 200 fully furnished studio, 1, 2, and 3-bedroom units
- Resort-style pool, fitness center, and study lounges
- Ground-floor retail and dining options
- Secure access and on-site management
- Consistent occupancy and rental rate growth

With a prime location, a comprehensive amenity package, and strong market fundamentals, this campus-adjacent student housing community presents an attractive opportunity for investors seeking a stable and growing asset in a top-tier education market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "6x9y687b-2z0w-1a13-w6x7-3y1z08b4c5d2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Cold Storage Warehouse", + "state": "WA", + "hasImages": true, + "price": 18000000, + "city": "Seattle", + "description": "

Refrigerated Cold Storage Warehouse

Well-maintained cold storage warehouse strategically located near the Port of Seattle. This specialized property features state-of-the-art refrigeration systems, ample storage capacity, and convenient access to major transportation routes, serving the growing demand for cold chain logistics in the region.

Warehouse Features:

- 150,000 sq ft of refrigerated space
- Multiple temperature zones ranging from -10°F to 55°F
- 30 dock-high loading doors and 2 rail spurs
- Secure yard area for trailer parking and staging
- Opportunity for expansion or redevelopment

With a prime location, modern facilities, and a strong demand from food and beverage, pharmaceutical, and e-commerce tenants, this cold storage warehouse presents an attractive opportunity for investors seeking a critical asset in the rapidly growing cold chain logistics sector.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "7y0z798c-3a1x-2b24-x7y8-4z2a19c5d6e3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Master-Planned Business Park", + "state": "FL", + "hasImages": true, + "price": 100000000, + "city": "Tampa", + "description": "

Highly amenitized master-planned business park in a prime Tampa location. This mixed-use property features a blend of office, flex, and retail space, catering to a diverse range of tenants seeking modern workspaces and convenient on-site amenities.

Business Park Features:

- 500,000 sq ft of Class A office and flex space
- 50,000 sq ft of retail and dining amenities
- Lush landscaping, walking trails, and outdoor gathering areas
- State-of-the-art conference center and fitness facilities
- Ample parking and easy access to major highways

With a prime location, a comprehensive amenity package, and strong demand from corporate tenants, this master-planned business park presents an exceptional opportunity for investors to acquire a trophy asset in one of Florida's most dynamic markets.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "8z1a909d-4b2y-3c35-y8z9-5a3b20d6e7f4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Manufactured Housing Community", + "state": "AZ", + "hasImages": true, + "price": 20000000, + "city": "Phoenix", + "description": "

Well-Maintained Manufactured Housing Community

Attractive manufactured housing community in a growing Phoenix suburb. This well-operated property features a mix of resident-owned and park-owned homes, providing a stable and diversified income stream for investors.

Community Features:

- 200 manufactured home sites on 40 acres
- High occupancy rate with long-term residents
- Amenities include a clubhouse, pool, and recreation areas
- Opportunity to increase revenue through home sales and rent increases
- Strong market demand for affordable housing options

With a desirable location, a well-maintained property, and multiple avenues for growth, this manufactured housing community presents an attractive opportunity for investors seeking a stable and cash-flowing asset in a rapidly growing market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "9a2b020e-5c3z-4d46-z9a0-6b4c31e7f8g5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Net Leased Retail Portfolio", + "state": "Various", + "hasImages": true, + "price": 75000000, + "city": "Multiple", + "description": "

Geographically diversified portfolio of net leased retail properties located throughout the United States. This well-curated portfolio features strong credit tenants, long-term leases, and minimal landlord responsibilities, providing investors with a stable and predictable income stream.

Portfolio Highlights:

- 20 properties totaling 500,000 sq ft
- Tenants include national retailers, restaurants, and service providers
- Weighted average lease term of 10 years
- Contractual rental increases and tenant renewal options
- Opportunities for portfolio optimization and disposition

With a focus on credit tenants, long-term leases, and geographic diversification, this net leased retail portfolio presents an attractive opportunity for investors seeking a low-risk, income-oriented investment with the potential for capital appreciation.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "0b3c021f-6d4a-5e57-a9b0-7c5d42f8g9h6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Life Science Research Campus", + "state": "MA", + "hasImages": true, + "price": 150000000, + "city": "Cambridge", + "description": "

World-class life science research campus in the heart of Cambridge's renowned biotech cluster. This state-of-the-art property features advanced laboratory and office space, catering to leading biotech, pharmaceutical, and research institutions seeking to innovate and collaborate.

Campus Features:

- 500,000 sq ft of lab and office space
- Flexible floor plans accommodating various tenant needs
- Specialized infrastructure, including vivarium and clean rooms
- On-site amenities, such as cafes, fitness centers, and conference facilities
- Proximity to top universities, hospitals, and research centers

With a prime location, cutting-edge facilities, and strong demand from life science tenants, this research campus presents an exceptional opportunity for investors to acquire a critical asset in one of the world's most important biotech hubs.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "1c4d132g-7e5b-6f69-b1c2-8d6e53g9h0i7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Urban Redevelopment", + "state": "IL", + "hasImages": true, + "price": 200000000, + "city": "Chicago", + "description": "

Transformative Mixed-Use Urban Redevelopment

Large-scale mixed-use redevelopment project in a prime Chicago location. This transformative property will feature a dynamic blend of residential, office, retail, and entertainment spaces, creating a vibrant and sustainable urban community.

Project Features:

- 1,000 residential units, including apartments and condominiums
- 500,000 sq ft of Class A office space
- 200,000 sq ft of retail, dining, and entertainment venues
- Public parks, plazas, and green spaces
- Integrated transportation and pedestrian-friendly design

With a visionary master plan, a prime urban location, and strong market fundamentals, this mixed-use redevelopment project presents a unique opportunity for investors to participate in the creation of a landmark destination that will reshape the city's landscape for generations to come.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "3e6f354i-9g7d-8h92-d3e4-0f8g75i2j3k9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Class A Office Tower", + "state": "TX", + "hasImages": true, + "price": 100000000, + "city": "Dallas", + "description": "

Iconic Class A office tower in the heart of Dallas' vibrant downtown district. This premier property features state-of-the-art amenities, sweeping city views, and a prestigious tenant roster, solidifying its position as a top-tier office destination.

Tower Features:

- 500,000 sq ft of rentable office space
- Efficient floor plates and flexible layout options
- Luxurious lobby and common areas
- Advanced security and building management systems
- Unparalleled access to downtown amenities and transportation

With a prime location, exceptional quality, and strong market fundamentals, this Class A office tower presents an attractive opportunity for investors seeking a trophy asset in one of the nation's most dynamic office markets.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4f7g465j-0h8e-9i03-e4f5-1g9h86j3k4l0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Master-Planned Industrial Park", + "state": "TX", + "hasImages": true, + "price": 75000000, + "city": "Houston", + "description": "

Premier Master-Planned Industrial Park

Strategically located master-planned industrial park in the heart of Houston's thriving industrial corridor. This well-designed property features a mix of warehouses, distribution centers, and flex spaces, catering to a wide range of industrial tenants and users.

Industrial Park Features:

- 1,000,000 sq ft of industrial space
- Variety of building sizes and configurations
- Modern construction with high clear heights and ample truck courts
- Excellent access to major highways, ports, and rail lines
- Opportunity for build-to-suit development and expansion

With a prime location, flexible options, and strong demand from logistics and manufacturing tenants, this master-planned industrial park presents a unique opportunity for investors to acquire a large-scale, multi-tenant industrial asset in one of the nation's top distribution hubs.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "5g8h576k-1i9f-0j14-f5g6-2h0i97k3l4m1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant Portfolio", + "state": "TX", + "hasImages": true, + "price": 30000000, + "city": "Austin", + "description": "

Exceptional portfolio of waterfront restaurants located along Austin's scenic Lake Travis. These popular dining destinations feature stunning views, quality cuisine, and loyal customer followings, making them a sought-after investment opportunity in the growing Austin market.

Portfolio Highlights:

- 5 waterfront restaurants totaling 50,000 sq ft
- Prime locations in high-traffic lakefront areas
- Diverse concepts, including fine dining and casual eateries
- Consistent revenue growth and profitability
- Opportunities for operational enhancements and expansion

With a focus on irreplaceable locations, strong brand value, and multiple revenue streams, this waterfront restaurant portfolio presents an attractive opportunity for investors seeking a scalable and resilient investment in Austin's thriving dining scene.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "6h9i687l-2j0g-1k13-g6h7-3i1j08l4m5n2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Trophy Retail Asset", + "state": "TX", + "hasImages": true, + "price": 50000000, + "city": "San Antonio", + "description": "

High-profile trophy retail asset located in the heart of San Antonio's premier shopping district. This iconic property features a flagship luxury retailer, attracting affluent shoppers and tourists from around the world.

Retail Asset Features:

- 100,000 sq ft of retail space
- Long-term lease with a prestigious global tenant
- Significant frontage and visibility along a prime retail corridor
- Luxury buildout and finishes
- Potential for rental growth and tenant expansion

With an irreplaceable location, a world-renowned tenant, and a trophy quality asset, this retail property presents a rare opportunity for investors to acquire a generational asset in one of Texas' most visited shopping destinations.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "7i0j798m-3k1h-2l24-h7i8-4j2k19m5n6o3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Ski Resort Development Site", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "McAllen", + "description": "

Prime Ski Resort Development Site

Expansive development site ideally situated for a ski resort near McAllen, Texas. This unique property features stunning natural beauty, varied terrain, and convenient access to major metropolitan areas, making it an ideal location for a year-round ski resort destination.

Development Site Features:

- 1,000 acres of developable land
- Elevations ranging from 6,000 to 8,000 feet
- Abundant snowfall and favorable weather conditions
- Proximity to McAllen and other major cities
- Potential for residential, commercial, and recreational development

With a rare combination of natural assets, accessibility, and market demand, this ski resort development site presents an extraordinary opportunity for visionary investors to create a one-of-a-kind destination in an untapped market.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "8j1k909n-4l2i-3m35-i8j9-5k3l20n6o7p4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Development Opportunity", + "state": "TX", + "hasImages": true, + "price": 5000000, + "city": "Fort Worth", + "description": "

Prime development opportunity for a self-storage facility in a rapidly growing Fort Worth suburb. This well-located site benefits from strong residential growth, high visibility, and limited self-storage competition in the immediate area.

Development Opportunity Highlights:

- 5-acre site zoned for self-storage use
- Excellent visibility and access from major thoroughfares
- Strong demographic trends and residential growth in the area
- Potential for a multi-story, climate-controlled facility
- Feasibility study and conceptual plans available

With a prime location, strong market fundamentals, and a clear path to development, this self-storage development opportunity presents an attractive option for investors seeking to capitalize on the growing demand for self-storage in the Dallas-Fort Worth metroplex.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "9k2l020o-5m3j-4n46-j9k0-6l4m31o7p8q5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Student Housing Value-Add Opportunity", + "state": "TX", + "hasImages": true, + "price": 20000000, + "city": "College Station", + "description": "

Attractive student housing value-add opportunity near the Texas A&M University campus in College Station. This well-maintained property presents a prime opportunity to enhance value through targeted renovations, amenity upgrades, and operational improvements.

Property Features:

- 200-unit, 600-bed student housing community
- Mix of studio, 1, 2, and 3-bedroom floor plans
- Stable occupancy and rental history
- Significant upside potential through interior and exterior renovations
- Walking distance to campus and nearby amenities

With a prime location, a strong student housing market, and multiple avenues for value creation, this student housing value-add opportunity presents an attractive investment for investors seeking to capitalize on the growing demand for high-quality student accommodations near a top-tier university.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "0l3m021p-6n4k-5o57-k0l1-7m5n42p8q9r6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Power Center", + "state": "TX", + "hasImages": true, + "price": 40000000, + "city": "Plano", + "description": "

Dominant Retail Power Center

High-performing retail power center in the affluent Dallas suburb of Plano. This premier property features a strong mix of national retailers, restaurant chains, and service providers, drawing from a large and affluent trade area.

Power Center Features:

- 250,000 sq ft of retail space
- Anchored by major discount department stores and category-leading retailers
- Diverse inline tenant mix, including dining and service options
- Excellent visibility and access from a high-traffic intersection
- Consistently high occupancy and tenant retention

With a dominant market position, a quality tenant roster, and a location in one of the most desirable retail submarkets in the country, this retail power center presents a compelling opportunity for investors seeking a stable, cash-flowing retail asset with long-term value.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "1m4n132q-7o5l-6p69-l1m2-8n6o53q9r0s7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Full-Service Hotel and Conference Center", + "state": "TX", + "hasImages": true, + "price": 60000000, + "city": "Austin", + "description": "

Upscale full-service hotel and conference center in the vibrant city of Austin. This well-appointed property caters to business and leisure travelers, offering luxurious accommodations, state-of-the-art meeting facilities, and top-notch amenities in a prime location.

Hotel Features:

- 300 well-appointed guest rooms and suites
- 50,000 sq ft of flexible meeting and event space
- Multiple dining options, including a rooftop bar
- Outdoor pool, fitness center, and spa
- Close proximity to downtown attractions and corporate demand drivers

With a strong brand affiliation, a diverse revenue mix, and a location in one of the fastest-growing cities in the nation, this full-service hotel and conference center presents an attractive investment opportunity for investors seeking a high-quality, income-generating hospitality asset.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "2n5o243r-8p6m-7q80-m2n3-9o7p64r1s2t8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Net Leased Medical Office Building", + "state": "TX", + "hasImages": true, + "price": 12000000, + "city": "San Antonio", + "description": "

Fully leased medical office building in a prominent San Antonio medical district. This modern facility is leased to a strong credit tenant on a long-term net lease, providing investors with a stable and predictable income stream.

Property Features:

- 40,000 sq ft state-of-the-art medical office building
- 100% leased to a major healthcare system
- 15-year net lease with annual rental increases
- Strategically located near hospitals and medical centers
- Minimal landlord responsibilities and capital expenditures

With a long-term net lease, a strong healthcare tenant, and a location in a growing medical market, this net leased medical office building presents an attractive opportunity for investors seeking a low-risk, income-oriented investment with built-in growth potential.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "3o6p354s-9q7n-8r92-n3o4-0p8q75s2t3u9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Cold Storage Facility", + "state": "TX", + "hasImages": true, + "price": 25000000, + "city": "Houston", + "description": "

State-of-the-Art Cold Storage Facility

Modern cold storage facility strategically located near the Port of Houston. This well-maintained property features advanced refrigeration systems, ample storage capacity, and convenient access to major transportation routes, serving the growing demand for cold chain logistics in the region.

Facility Features:

- 200,000 sq ft of refrigerated warehouse space
- Multiple temperature zones for various product types
- 40 dock-high loading doors and rail service
- Efficient layout and modern material handling equipment
- Strong tenant base and lease term

With a prime location, state-of-the-art facilities, and growing demand from food, beverage, and pharmaceutical industries, this cold storage facility presents an attractive opportunity for investors seeking a mission-critical asset in the rapidly expanding cold chain logistics sector.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "4p7q465t-0r8o-9s03-o4p5-1q9r86t3u4v0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Multifamily Development Site", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Dallas", + "description": "

Prime development site for a luxury multifamily project in the prestigious Uptown Dallas neighborhood. This rare opportunity offers the potential to create a landmark residential community in one of the city's most desirable locations.

Development Site Features:

- 2-acre site zoned for high-density multifamily use
- Potential for up to 400 luxury apartment units
- Unparalleled access to Uptown's dining, shopping, and entertainment
- Close proximity to major employment centers and public transit
- Strong market fundamentals and demographic trends

With an irreplaceable location, favorable zoning, and strong demand for high-end urban living, this luxury multifamily development site presents an exceptional opportunity for developers seeking to create a trophy asset in the heart of Dallas.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "6r9s687v-2t0q-1u13-q6r7-3s1t08v4w5x2", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center", + "state": "TX", + "hasImages": true, + "price": 18000000, + "city": "Austin", + "description": "

Newly Constructed Grocery-Anchored Shopping Center

Highly attractive grocery-anchored shopping center in a rapidly growing Austin suburb. This newly constructed property features a diverse mix of national and regional tenants, providing essential goods and services to the surrounding community.

Shopping Center Features:

- 80,000 sq ft of retail space
- Anchored by a high-performing organic grocery store
- Strong lineup of complementary retailers and service providers
- Prominent location in a high-growth residential area
- Ample parking and easy access from major thoroughfares

With a new construction quality, a recession-resistant anchor tenant, and an ideal location in a booming market, this grocery-anchored shopping center presents a compelling opportunity for investors seeking a stable and growth-oriented retail investment in Austin.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "7s0t798w-3u1r-2v24-r7s8-4t2u19w5x6y3", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Condominium Portfolio", + "state": "TX", + "hasImages": true, + "price": 10000000, + "city": "Houston", + "description": "

Well-maintained portfolio of medical office condominiums in a prominent Houston medical district. This unique investment opportunity features multiple condominium units leased to a diverse mix of healthcare providers, offering stable cash flow and the potential for long-term appreciation.

Portfolio Features:

- 10 medical office condominiums totaling 25,000 sq ft
- 100% leased to established medical practices
- Staggered lease expirations and rental escalations
- Prime location within walking distance of major hospitals
- Professional property management in place

With a strong tenant base, a desirable location, and the flexibility of condominium ownership, this medical office condominium portfolio presents an attractive opportunity for investors seeking a diversified and recession-resistant investment in the growing Houston healthcare market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "8t1u909x-4v2s-3w35-s8t9-5u3v20x6y7z4", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Full-Service Car Wash and Auto Detailing", + "state": "TX", + "hasImages": true, + "price": 3000000, + "city": "Dallas", + "description": "

Highly profitable full-service car wash and auto detailing business in a densely populated Dallas suburb. This well-established operation features a loyal customer base, multiple revenue streams, and a reputation for providing exceptional service in a growing market.

Business Features:

- Modern 150-foot tunnel wash with state-of-the-art equipment
- 6 detailing bays for interior and exterior services
- Robust monthly membership program
- Convenient location with high visibility and traffic counts
- Consistent revenue growth and strong margins

With a proven business model, a prime location, and strong market demand, this full-service car wash and auto detailing business presents an excellent opportunity for investors or owner-operators seeking a profitable and scalable investment in the thriving Dallas market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9u2v020y-5w3t-4x46-t9u0-6v4w31y7z8a5", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Resort-Style Apartment Community", + "state": "TX", + "hasImages": true, + "price": 75000000, + "city": "Austin", + "description": "

Prestigious Luxury Apartment Community

Exceptionally well-appointed luxury apartment community in a prime Austin location. This resort-style property features upscale amenities, premium finishes, and a desirable location near major employers and entertainment destinations, appealing to a discerning resident base.

Community Features:

- 350 luxury apartment homes
- Spacious 1, 2, and 3-bedroom floor plans
- High-end interior finishes and appliances
- Extensive community amenities, including a pool, fitness center, and clubhouse
- Convenient access to downtown Austin and major thoroughfares

With a strong market position, a affluent resident profile, and a location in one of the nation's most desirable cities, this luxury apartment community presents a compelling investment opportunity for investors seeking a high-quality, income-generating multifamily asset in Austin.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "0v3w021z-6x4u-5y57-u0v1-7w5x42z8a9b6", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Net Leased Quick Service Restaurant", + "state": "TX", + "hasImages": true, + "price": 2500000, + "city": "San Antonio", + "description": "

Fully leased quick service restaurant property in a high-traffic San Antonio retail corridor. This well-located property is leased to a national fast-food chain on a long-term net lease, providing investors with a stable and hands-off investment opportunity.

Property Features:

- 2,500 sq ft freestanding restaurant building
- 10-year net lease with corporate guarantee
- Scheduled rental increases and renewal options
- Prominent location with excellent visibility and accessibility
- Minimal landlord responsibilities and expenses

With a long-term net lease, a creditworthy tenant, and a location in a dynamic retail market, this net leased quick service restaurant presents an attractive opportunity for investors seeking a turn-key, income-producing investment with strong intrinsic value.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "1w4x132a-7y5v-6z69-v1w2-8x6y53a9b0c7", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Flex Industrial Business Park", + "state": "TX", + "hasImages": true, + "price": 20000000, + "city": "Houston", + "description": "

Well-maintained flex industrial business park in a thriving Houston industrial submarket. This multi-tenant property features a diverse mix of warehouse, manufacturing, and office spaces, catering to a wide range of industrial users and providing stable cash flow for investors.

Business Park Features:

- 150,000 sq ft of flex industrial space
- Variety of suite sizes and configurations
- Ample parking and truck courts
- Convenient access to major highways and transportation hubs
- Strong occupancy history and tenant retention

With a flexible design, a desirable location, and strong demand from a variety of industrial users, this flex industrial business park presents an attractive opportunity for investors seeking a diversified and income-oriented investment in the robust Houston industrial market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "2x5y243b-8z6w-7a80-w2x3-9y7z64b1c2d8", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Value-Add Retail Strip Center", + "state": "TX", + "hasImages": true, + "price": 8000000, + "city": "Fort Worth", + "description": "

Prime Value-Add Retail Opportunity

Well-located retail strip center with significant value-add potential in a growing Fort Worth suburb. This under-managed property presents a compelling opportunity to increase value through strategic leasing, property enhancements, and operational improvements.

Property Features:

- 50,000 sq ft of retail space
- Below-market occupancy with near-term lease expirations
- Potential to attract new tenants and increase rental rates
- Prominent location in a high-growth residential area
- Ample parking and good visibility from major roadways

With a prime location, a value-add investment profile, and strong market fundamentals, this retail strip center presents an excellent opportunity for investors seeking to reposition an underperforming asset and create significant value in the dynamic Fort Worth retail market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "3y6z354c-9a7x-8b92-x3y4-0z8a75c2d3e9", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Master-Planned Single Family Build-for-Rent Community", + "state": "TX", + "hasImages": true, + "price": 50000000, + "city": "Austin", + "description": "

Innovative build-for-rent single family home community in a rapidly growing Austin suburb. This well-designed property offers residents the benefits of single family living with the flexibility and convenience of renting, capitalizing on the growing demand for build-for-rent housing in the market.

Community Features:

- 150 detached single family homes
- Modern 3 and 4-bedroom floor plans
- Professional property management and maintenance
- Resort-style amenities, including a pool, fitness center, and clubhouse
- Prime location with convenient access to major employers and transportation

With a differentiated product offering, a desirable suburban location, and strong market demand for rental housing, this build-for-rent single family community presents a unique opportunity for investors to capitalize on the rapidly growing build-for-rent asset class in Austin.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "4z7a465d-0b8y-9c03-y4z5-1a9b86d3e4f0", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Trophy Office Building", + "state": "TX", + "hasImages": true, + "price": 150000000, + "city": "Dallas", + "description": "

Iconic trophy office building in the heart of Dallas' vibrant Uptown district. This landmark property features a stunning architectural design, first-class amenities, and an unmatched location, attracting elite tenants and commanding premium rental rates.

Building Features:

- 500,000 sq ft of Class A+ office space
- LEED Platinum certification and state-of-the-art building systems
- Exquisite lobby and common areas with high-end finishes
- Floor-to-ceiling windows with panoramic city views
- Direct access to luxury dining, retail, and residential offerings

With an irreplaceable location, an iconic stature, and a premier tenant roster, this trophy office building presents a generational opportunity for investors to acquire a true landmark asset in the heart of Dallas' most desirable office submarket.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "5a8b576e-1c9z-0d14-z5a6-2b0c97e3f4g1", + "temporary": false, + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Value-Add Multifamily Opportunity", + "state": "TX", + "hasImages": true, + "price": 25000000, + "city": "Houston", + "description": "

Attractive Value-Add Multifamily Investment

Well-located multifamily property with significant value-add potential in a desirable Houston submarket. This under-improved asset presents a compelling opportunity to drive rental growth and enhance value through targeted capital improvements and operational enhancements.

Property Features:

- 200-unit garden-style apartment community
- Mix of one, two, and three-bedroom floor plans
- Proven value-add program with strong rental premiums
- Convenient location near major employment centers and transportation
- Below-market rents with potential for significant increases

With a prime location, a clear value-add strategy, and strong market fundamentals, this multifamily property presents an attractive opportunity for investors to capitalize on the growing demand for quality rental housing in Houston while creating substantial value through strategic renovations and repositioning.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "f8c3de3d-1fea-4d7c-a8b0-90f3e6753c7f", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Prime Retail Space in Houston Galleria Area", + "state": "TX", + "hasImages": true, + "price": 2500000, + "city": "Houston", + "description": "

Exceptional opportunity to acquire a high-visibility retail space in the heart of Houston's prestigious Galleria area. This prime location offers excellent exposure and foot traffic, making it ideal for a variety of retail businesses.

Property Highlights:

- 5,000 square feet of retail space
- High-end finishes and modern design
- Ample parking available
- Easy access to major highways and public transportation
- Surrounded by upscale residential communities and office buildings

Don't miss this chance to establish your business in one of Houston's most desirable retail locations.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "2b6e9f44-e5f1-4c2f-a9c8-92d5c5d8f5e3", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Apartment Complex in Austin", + "state": "TX", + "hasImages": true, + "price": 18500000, + "city": "Austin", + "description": "

Presenting a stunning luxury apartment complex in the vibrant city of Austin. This well-maintained property features 120 units with a mix of one, two, and three-bedroom floorplans, catering to a diverse tenant base.

Amenities include:

- Resort-style swimming pool with sundeck
- State-of-the-art fitness center
- Clubhouse with entertaining spaces
- Covered parking and garages available
- Pet-friendly with on-site dog park

Situated in a prime location near major employers, top-rated schools, and popular entertainment destinations, this apartment complex offers an attractive investment opportunity with strong rental demand and growth potential.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "6c1f9d8a-4b7e-43d5-9f2d-5e6b8c1d9f4a", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Thriving Marina on Lake Travis", + "state": "TX", + "hasImages": true, + "price": 8750000, + "city": "Lago Vista", + "description": "

Own a piece of paradise with this well-established marina on the shores of Lake Travis. The property features 150 boat slips, a fuel dock, and a full-service ship store, offering a comprehensive boating experience for residents and visitors alike.

Marina highlights:

- 150 boat slips accommodating various vessel sizes
- Fuel dock with high-speed pumps
- Well-stocked ship store with boating essentials and merchandise
- Boat rental services available
- On-site restaurant with lake views
- Proximity to popular lake activities and attractions

With a loyal customer base and strong revenue history, this marina presents a unique opportunity for investors seeking a profitable venture in the thriving Lake Travis region.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "8a5d2e1f-b7c4-4f9d-a8c7-6d5e4f3b2c1a", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Warehouse with Office Space", + "state": "TX", + "hasImages": true, + "price": 6250000, + "city": "Dallas", + "description": "

Fantastic industrial property featuring a well-maintained warehouse with adjoining office space. This versatile property is perfect for businesses seeking a centralized location for storage, distribution, and administrative operations.

Property features:

- 50,000 square feet of warehouse space
- 10,000 square feet of office space
- 22-foot clear height ceilings
- Multiple loading docks and drive-in doors
- Ample parking for employees and visitors
- Easy access to major highways and Dallas-Fort Worth International Airport

Take advantage of this opportunity to acquire a turn-key industrial property in the heart of Dallas' thriving business district.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "3f5e7d9c-2b1a-4f8d-9e1c-8a7b6c5d4e3f", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Hunting Ranch with Abundant Wildlife", + "state": "TX", + "hasImages": true, + "price": 4500000, + "city": "Kerrville", + "description": "

Escape to the great outdoors with this exceptional hunting ranch nestled in the Texas Hill Country. Spanning 1,500 acres, the property boasts diverse terrain, including rolling hills, lush valleys, and pristine waterways, providing an ideal habitat for various wildlife species.

Ranch highlights:

- 1,500 acres of prime hunting land
- Abundant native wildlife, including white-tailed deer, turkey, and quail
- Multiple hunting blinds and feeders strategically placed throughout the property
- Comfortable lodge accommodating up to 12 guests
- Stocked fishing pond and creek access
- Located just minutes from the charming town of Kerrville

Whether you're a passionate hunter, outdoor enthusiast, or seeking a serene retreat, this hunting ranch offers endless opportunities for recreation and relaxation in the heart of Texas.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "a1b2c3d4-e5f6-7g8h-9i0j-1k2l3m4n5o6p", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Restaurant in San Antonio's River Walk", + "state": "TX", + "hasImages": true, + "price": 3200000, + "city": "San Antonio", + "description": "

Acquire a thriving upscale restaurant located in the heart of San Antonio's iconic River Walk. This prestigious establishment boasts a prime location, attracting both locals and tourists alike.

Restaurant features:

- Seating capacity for 150 guests
- Elegant interior design with modern fixtures
- Fully equipped commercial kitchen
- Outdoor patio seating overlooking the River Walk
- Strong sales and profitability
- Loyal customer base and excellent online reviews

Take advantage of this rare opportunity to own a successful restaurant in one of San Antonio's most desirable dining destinations.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "2a3b4c5d-6e7f-8g9h-0i1j-2k3l4m5n6o7p", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Timberland Investment Property", + "state": "TX", + "hasImages": true, + "price": 7500000, + "city": "Lufkin", + "description": "

Invest in this expansive timberland property, spanning 2,000 acres in the heart of East Texas. The property features a diverse mix of mature pine and hardwood trees, offering a sustainable and profitable investment opportunity.

Property highlights:

- 2,000 acres of well-managed timberland
- Diverse species mix, including pine and hardwood
- Existing timber contracts in place
- Excellent road system throughout the property
- Potential for recreational leasing (hunting, camping, etc.)
- Located near major timber processing facilities

Capitalize on the growing demand for timber products and secure your financial future with this exceptional timberland investment property.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "3b4c5d6e-7f8g-9h0i-1j2k-3l4m5n6o7p8q", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Full-Service Car Wash in Houston", + "state": "TX", + "hasImages": true, + "price": 1800000, + "city": "Houston", + "description": "

Own a profitable full-service car wash in the bustling city of Houston. This well-established business offers a range of services, including exterior washing, interior cleaning, and detailing.

Car wash features:

- Automated tunnel wash system
- 4 self-serve vacuum stations
- 2 detailing bays
- Vending machines with car care products
- Ample parking and easy access
- High volume of repeat customers

With a strong brand reputation and a prime location, this car wash presents an excellent investment opportunity for entrepreneurs seeking a turnkey business in the automotive service industry.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "4c5d6e7f-8g9h-0i1j-2k3l-4m5n6o7p8q9r", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Multi-Tenant Office Building in Austin", + "state": "TX", + "hasImages": true, + "price": 12500000, + "city": "Austin", + "description": "

Acquire this well-maintained multi-tenant office building in the thriving city of Austin. The property features a diverse mix of professional tenants, providing a stable and reliable income stream.

Building features:

- 50,000 square feet of rentable office space
- 95% occupancy rate with long-term leases
- Class A finishes and amenities
- Convenient location in Austin's central business district
- On-site parking garage
- Strong tenant retention and rental history

Invest in this exceptional office building and benefit from Austin's robust economy and growing professional workforce.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "5d6e7f8g-9h0i-1j2k-3l4m-5n6o7p8q9r0s", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center in Plano", + "state": "TX", + "hasImages": true, + "price": 22000000, + "city": "Plano", + "description": "

Acquire this high-performing grocery-anchored shopping center in the affluent city of Plano. The property features a strong anchor tenant and a complementary mix of national and local retailers.

Shopping center highlights:

- 120,000 square feet of retail space
- Anchored by a major grocery chain
- 98% occupancy rate with long-term leases
- Diverse tenant mix, including restaurants, services, and specialty shops
- Excellent visibility and access from major thoroughfares
- Affluent demographics and high traffic counts

Benefit from the stability and growth potential of this grocery-anchored shopping center in one of the most desirable retail markets in Texas.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "6e7f8g9h-0i1j-2k3l-4m5n-6o7p8q9r0s1t", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Bed and Breakfast in Fredericksburg", + "state": "TX", + "hasImages": true, + "price": 2750000, + "city": "Fredericksburg", + "description": "

Own a charming luxury bed and breakfast in the heart of Fredericksburg, Texas. This beautifully restored property offers a unique and intimate lodging experience for guests visiting the Texas Hill Country.

Property features:

- 8 well-appointed guest rooms with en-suite bathrooms
- Elegant common areas, including a dining room and library
- Gourmet kitchen for preparing breakfasts and special events
- Landscaped gardens and outdoor seating areas
- Strong occupancy rates and positive guest reviews
- Prime location near Fredericksburg's main attractions

Acquire this turnkey bed and breakfast and capitalize on the growing popularity of Fredericksburg as a premier travel destination in Texas.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "7f8g9h0i-1j2k-3l4m-5n6o-7p8q9r0s1t2u", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Flex Space in Dallas", + "state": "TX", + "hasImages": true, + "price": 5500000, + "city": "Dallas", + "description": "

Invest in this versatile industrial flex space located in the dynamic city of Dallas. The property offers a combination of warehouse, manufacturing, and office space, catering to a wide range of business needs.

Property highlights:

- 40,000 square feet of flexible industrial space
- Combination of warehouse, manufacturing, and office areas
- 24-foot clear height ceilings in warehouse
- Multiple loading docks and drive-in doors
- Ample parking and outdoor storage
- Strategic location near major highways and Dallas Love Field Airport

Take advantage of the growing demand for industrial flex space in Dallas and acquire this adaptable property for your business or investment portfolio.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "8g9h0i1j-2k3l-4m5n-6o7p-8q9r0s1t2u3v", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Golf Course and Country Club in The Woodlands", + "state": "TX", + "hasImages": true, + "price": 18500000, + "city": "The Woodlands", + "description": "

Acquire this prestigious golf course and country club in the upscale community of The Woodlands. The property features a championship 18-hole golf course, clubhouse, and an array of amenities for members and guests.

Property features:

- Challenging 18-hole golf course designed by a renowned architect
- Elegant clubhouse with dining facilities, pro shop, and locker rooms
- Tennis courts, swimming pool, and fitness center
- Banquet and event spaces for weddings and corporate functions
- Established membership base and strong revenue streams
- Located in the heart of The Woodlands, a premier master-planned community

Own this exceptional golf course and country club and cater to the discerning tastes of The Woodlands' affluent residents and visitors.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "9h0i1j2k-3l4m-5n6o-7p8q-9r0s1t2u3v4w", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development Opportunity in Austin", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Austin", + "description": "

Seize this rare opportunity to develop a mixed-use project in the rapidly growing city of Austin. The property is located in a prime urban location, zoned for a combination of residential, retail, and office uses.

Development highlights:

- 2-acre site in Austin's vibrant East Side neighborhood
- Zoned for up to 250 residential units and 50,000 square feet of commercial space
- Excellent visibility and access from major thoroughfares
- Surrounded by trendy restaurants, shops, and entertainment venues
- Strong demand for urban living and walkable communities in Austin
- Potential for attractive returns on investment

Acquire this prime development site and create a landmark mixed-use project in one of Austin's most desirable neighborhoods.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "0i1j2k3l-4m5n-6o7p-8q9r-0s1t2u3v4w5x", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant and Bar in Galveston", + "state": "TX", + "hasImages": true, + "price": 4200000, + "city": "Galveston", + "description": "

Own a spectacular waterfront restaurant and bar in the popular coastal city of Galveston. This well-established venue offers breathtaking views of the Gulf of Mexico and a prime location on the Galveston Seawall.

Restaurant features:

- 8,000 square feet of indoor and outdoor dining space
- Seating capacity for 200 guests
- Expansive outdoor deck with unobstructed water views
- Fully equipped commercial kitchen and bar
- Private event space for weddings and corporate functions
- Strong sales and profitability with a loyal customer base

Acquire this exceptional waterfront restaurant and bar and capitalize on Galveston's thriving tourism industry and growing popularity as a dining and entertainment destination.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "1j2k3l4m-5n6o-7p8q-9r0s-1t2u3v4w5x6y", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Facility in San Antonio", + "state": "TX", + "hasImages": true, + "price": 7800000, + "city": "San Antonio", + "description": "

Invest in this well-maintained self-storage facility located in the growing city of San Antonio. The property features a variety of storage unit sizes and amenities, catering to the diverse storage needs of residential and commercial customers.

Facility highlights:

- 75,000 square feet of rentable storage space
- 600 storage units ranging from 5x5 to 10x30
- Climate-controlled and non-climate-controlled units available
- Gated entry with 24/7 access
- On-site management office and retail store
- Consistent occupancy rates and revenue growth

Capitalize on the strong demand for self-storage in San Antonio and acquire this turnkey facility with a proven track record of success.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "2k3l4m5n-6o7p-8q9r-0s1t-2u3v4w5x6y7z", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Cattle Ranch with Mineral Rights in West Texas", + "state": "TX", + "hasImages": true, + "price": 12500000, + "city": "Midland", + "description": "

Acquire this expansive cattle ranch spanning 5,000 acres in the heart of West Texas. The property features lush pastures, well-maintained infrastructure, and valuable mineral rights, offering multiple revenue streams for the discerning investor.

Ranch features:

- 5,000 acres of prime ranch land
- Capacity for 500 head of cattle
- Extensive water infrastructure, including wells and stock tanks
- Comfortable ranch house and staff quarters
- Barns, corrals, and equipment storage facilities
- Mineral rights included with the sale

Own this exceptional cattle ranch and benefit from the strong demand for beef and the potential for additional income from mineral leases in the prolific Permian Basin region.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "3l4m5n6o-7p8q-9r0s-1t2u-3v4w5x6y7z8a", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Building in Houston's Texas Medical Center", + "state": "TX", + "hasImages": true, + "price": 14500000, + "city": "Houston", + "description": "

Invest in this state-of-the-art medical office building located in the prestigious Texas Medical Center in Houston. The property features a diverse mix of healthcare tenants and offers excellent visibility and access for patients and staff.

Building features:

- 60,000 square feet of rentable medical office space
- 95% occupancy rate with long-term leases
- Class A finishes and modern medical infrastructure
- On-site parking garage and valet services
- Prime location within the Texas Medical Center
- Strong tenant base of established healthcare providers

Acquire this exceptional medical office building and benefit from the stable, long-term cash flows and the growing demand for healthcare services in Houston.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4m5n6o7p-8q9r-0s1t-2u3v-4w5x6y7z8a9b", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Convenience Store and Gas Station in Dallas", + "state": "TX", + "hasImages": true, + "price": 3500000, + "city": "Dallas", + "description": "

Own a thriving convenience store and gas station in the bustling city of Dallas. This well-established business enjoys a prime location, high traffic counts, and a loyal customer base.

Business features:

- 4,000 square feet of retail space
- 8 gas pumps with high-quality fuel offerings
- Well-stocked convenience store with groceries, snacks, and beverages
- Beer and wine sales for added revenue
- High volume of daily customers and fuel sales
- Excellent visibility and easy access from major roadways

Acquire this profitable convenience store and gas station and benefit from the strong cash flows and the essential nature of the business in the dense Dallas market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "5n6o7p8q-9r0s-1t2u-3v4w-5x6y7z8a9b0c", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Recreational Vehicle (RV) Park near Lake Conroe", + "state": "TX", + "hasImages": true, + "price": 6200000, + "city": "Willis", + "description": "

Invest in this well-maintained recreational vehicle (RV) park located near the picturesque Lake Conroe. The property offers a variety of amenities and activities for RV enthusiasts and outdoor lovers.

Park features:

- 150 RV sites with full hookups
- Clubhouse with laundry facilities and recreational rooms
- Swimming pool, hot tub, and fitness center
- On-site convenience store and propane sales
- Boat and RV storage available
- Close proximity to Lake Conroe and other outdoor attractions

Own this exceptional RV park and cater to the growing demand for RV travel and outdoor recreation in the scenic Lake Conroe area.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "6o7p8q9r-0s1t-2u3v-4w5x-6y7z8a9b0c1d", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Historic Office Building in Downtown San Antonio", + "state": "TX", + "hasImages": true, + "price": 9500000, + "city": "San Antonio", + "description": "

Acquire this stunning historic office building in the heart of downtown San Antonio. The property has been meticulously restored and updated with modern amenities while preserving its unique architectural charm.

Building features:

- 40,000 square feet of rentable office space
- Elegant lobby with original marble finishes
- High ceilings and large windows for abundant natural light
- Modern HVAC, electrical, and plumbing systems
- Fiber-optic internet connectivity
- Prime location near the River Walk and Alamo

Own a piece of San Antonio's rich history and benefit from the strong demand for unique, high-quality office space in the city's vibrant downtown district.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "7p8q9r0s-1t2u-3v4w-5x6y-7z8a9b0c1d2e", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Automotive Repair and Service Center in Austin", + "state": "TX", + "hasImages": true, + "price": 2800000, + "city": "Austin", + "description": "

Invest in this well-established automotive repair and service center in the growing city of Austin. The business has a loyal customer base and a reputation for quality workmanship and customer service.

Business features:

- 8,000 square feet of shop and office space
- 10 service bays equipped with lifts and modern diagnostic tools
- Experienced team of ASE-certified technicians
- Strong relationships with parts suppliers and dealerships
- Consistent revenue growth and profitability
- Excellent location with high visibility and easy access

Acquire this successful automotive repair and service center and capitalize on the strong demand for reliable vehicle maintenance and repair services in the thriving Austin market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "8q9r0s1t-2u3v-4w5x-6y7z-8a9b0c1d2e3f", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Warehouse Distribution Center near Houston Port", + "state": "TX", + "hasImages": true, + "price": 18000000, + "city": "Pasadena", + "description": "

Acquire this strategically located warehouse distribution center near the Port of Houston. The property offers excellent access to major transportation routes and is well-suited for businesses engaged in international trade and distribution.

Property features:

- 200,000 square feet of warehouse space
- 32-foot clear height ceilings
- 50 loading docks with levelers and seals
- ESFR sprinkler system
- Ample truck court and trailer parking
- Close proximity to the Port of Houston and major highways

Invest in this exceptional warehouse distribution center and take advantage of Houston's thriving international trade and logistics industry.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9r0s1t2u-3v4w-5x6y-7z8a-9b0c1d2e3f4g", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Shopping Center in Frisco", + "state": "TX", + "hasImages": true, + "price": 35000000, + "city": "Frisco", + "description": "

Invest in this premier retail shopping center located in the affluent and fast-growing city of Frisco. The property features a strong mix of national and regional tenants, providing a stable and diverse income stream.

Shopping center features:

- 150,000 square feet of rentable retail space
- Anchor tenants include a grocery store and a major fitness chain
- 95% occupancy rate with long-term leases
- Excellent visibility and access from major thoroughfares
- Ample parking with over 700 spaces
- Located in a high-growth area with strong demographics

Acquire this exceptional retail shopping center and benefit from the strong demand for quality retail space in one of the most desirable markets in North Texas.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "0s1t2u3v-4w5x-6y7z-8a9b-0c1d2e3f4g5h", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Hunting and Fishing Lodge in South Texas", + "state": "TX", + "hasImages": true, + "price": 5500000, + "city": "Laredo", + "description": "

Own this exceptional hunting and fishing lodge located on a sprawling 2,000-acre ranch in South Texas. The property offers diverse wildlife and prime hunting opportunities, as well as access to pristine fishing waters.

Lodge features:

- Luxurious 8,000-square-foot main lodge with 10 guest rooms
- Separate owner's residence and staff quarters
- Well-appointed great room, dining area, and commercial kitchen
- Outdoor entertainment areas with fire pits and grilling stations
- Hunting blinds, feeders, and game management infrastructure
- Private fishing lake stocked with bass and catfish

Acquire this remarkable hunting and fishing lodge and offer guests an unforgettable outdoor experience in the wild beauty of South Texas.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "1t2u3v4w-5x6y-7z8a-9b0c-1d2e3f4g5h6i", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Boutique Hotel in Downtown Austin", + "state": "TX", + "hasImages": true, + "price": 22500000, + "city": "Austin", + "description": "

Acquire this chic boutique hotel located in the heart of downtown Austin. The property offers a unique and luxurious experience for discerning travelers, with stylish accommodations and top-notch amenities.

Hotel features:

- 75 elegantly appointed guest rooms and suites
- Rooftop pool and lounge with stunning city views
- Trendy restaurant and craft cocktail bar
- Spa and fitness center
- Meeting and event spaces
- Prime location near Austin's top attractions and nightlife

Invest in this exceptional boutique hotel and cater to the growing demand for upscale accommodations in Austin's vibrant downtown district.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "2u3v4w5x-6y7z-8a9b-0c1d-2e3f4g5h6i7j", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center in Sugar Land", + "state": "TX", + "hasImages": true, + "price": 28000000, + "city": "Sugar Land", + "description": "

Acquire this well-established grocery-anchored shopping center in the affluent Houston suburb of Sugar Land. The property features a strong mix of national and regional tenants, providing a stable and diversified income stream.

Shopping center features:

- 120,000 square feet of rentable retail space
- Anchored by a high-performing grocery store
- 98% occupancy rate with long-term leases
- Excellent visibility and access from major thoroughfares
- Ample parking with over 600 spaces
- Located in a high-income area with strong demographics

Invest in this exceptional grocery-anchored shopping center and benefit from the strong demand for quality retail space in one of the most desirable markets in the Houston metropolitan area.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "3v4w5x6y-7z8a-9b0c-1d2e-3f4g5h6i7j8k", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Warehouse with Cold Storage in Dallas", + "state": "TX", + "hasImages": true, + "price": 12500000, + "city": "Dallas", + "description": "

Invest in this state-of-the-art industrial warehouse with cold storage capabilities, strategically located in the Dallas-Fort Worth Metroplex. The property is well-suited for businesses in the food and beverage, pharmaceutical, or e-commerce industries.

Warehouse features:

- 150,000 square feet of warehouse space
- 50,000 square feet of cold storage space
- 36-foot clear height ceilings
- 30 loading docks with levelers and seals
- ESFR sprinkler system
- Convenient access to major highways and airports

Acquire this exceptional industrial warehouse with cold storage and capitalize on the growing demand for temperature-controlled logistics facilities in the dynamic Dallas-Fort Worth market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "4w5x6y7z-8a9b-0c1d-2e3f-4g5h6i7j8k9l", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant and Bar in Corpus Christi", + "state": "TX", + "hasImages": true, + "price": 5800000, + "city": "Corpus Christi", + "description": "

Own this stunning waterfront restaurant and bar in the coastal city of Corpus Christi. The property offers breathtaking views of the Gulf of Mexico and a prime location on the popular Ocean Drive.

Restaurant features:

- 10,000 square feet of indoor and outdoor dining space
- Seating capacity for 250 guests
- Expansive outdoor patio with panoramic water views
- Fully equipped commercial kitchen and bar
- Private event space for weddings and corporate functions
- Strong sales and profitability with a loyal customer base

Acquire this exceptional waterfront restaurant and bar and benefit from the strong demand for unique dining experiences in the vibrant Corpus Christi market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "5x6y7z8a-9b0c-1d2e-3f4g-5h6i7j8k9l0m", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Apartment Complex in The Woodlands", + "state": "TX", + "hasImages": true, + "price": 65000000, + "city": "The Woodlands", + "description": "

Invest in this premier luxury apartment complex located in the highly sought-after master-planned community of The Woodlands. The property features upscale amenities and finishes, catering to the discerning tastes of affluent residents.

Apartment complex features:

- 300 luxury apartment units
- One-, two-, and three-bedroom floor plans
- Resort-style pool with cabanas and outdoor kitchen
- State-of-the-art fitness center and yoga studio
- Clubhouse with billiards, media room, and business center
- Walking distance to top-rated schools, shopping, and dining

Acquire this exceptional luxury apartment complex and benefit from the strong demand for high-end rental living in one of the most desirable communities in the Houston area.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "6y7z8a9b-0c1d-2e3f-4g5h-6i7j8k9l0m1n", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Condominiums in San Antonio", + "state": "TX", + "hasImages": true, + "price": 8500000, + "city": "San Antonio", + "description": "

Invest in these newly constructed medical office condominiums located in the heart of San Antonio's thriving medical district. The property offers modern, customizable spaces for healthcare professionals and practices.

Medical office condominium features:

- 40,000 square feet of medical office space
- Divisible into units ranging from 1,500 to 5,000 square feet
- State-of-the-art medical infrastructure and technology
- Abundant parking with reserved spaces for tenants
- Convenient location near major hospitals and healthcare facilities
- Strong demand for medical office space in the area

Acquire these exceptional medical office condominiums and provide healthcare professionals with the opportunity to own their practice space in a prime San Antonio location.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "7z8a9b0c-1d2e-3f4g-5h6i-7j8k9l0m1n2o", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Winery and Vineyard in Texas Hill Country", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Fredericksburg", + "description": "

Own this picturesque winery and vineyard nestled in the heart of Texas Hill Country. The property features a stunning tasting room, event spaces, and acres of mature vines, offering a complete wine country experience.

Winery and vineyard features:

- 50 acres of established vineyards
- State-of-the-art winemaking facility
- Elegant tasting room with panoramic views
- Outdoor event spaces for weddings and festivals
- Charming bed and breakfast for overnight guests
- Strong brand recognition and loyal customer base

Acquire this exceptional winery and vineyard and capitalize on the growing popularity of Texas wines and the thriving tourism industry in the Texas Hill Country.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "8a9b0c1d-2e3f-4g5h-6i7j-8k9l0m1n2o3p", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development in Midtown Houston", + "state": "TX", + "hasImages": true, + "price": 45000000, + "city": "Houston", + "description": "

Invest in this prime mixed-use development opportunity in the heart of Houston's vibrant Midtown district. The property is zoned for a combination of residential, retail, and office uses, offering the potential for a landmark project.

Development opportunity features:

- 2.5-acre site in the center of Midtown Houston
- Zoned for up to 500 residential units and 100,000 square feet of commercial space
- Proximity to top employers, entertainment venues, and public transportation
- Strong demand for urban living and walkable communities in the area
- Potential for attractive returns on investment

Acquire this exceptional mixed-use development opportunity and create a transformative project in one of Houston's most dynamic and sought-after neighborhoods.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "9b0c1d2e-3f4g-5h6i-7j8k-9l0m1n2o3p4q", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Beachfront Hotel and Resort in Galveston", + "state": "TX", + "hasImages": true, + "price": 55000000, + "city": "Galveston", + "description": "

Acquire this sprawling beachfront hotel and resort located on the stunning Gulf Coast of Galveston Island. The property offers a wide range of accommodations, amenities, and activities for guests seeking a memorable coastal getaway.

Hotel and resort features:

- 250 guest rooms and suites with balconies and Gulf views
- Multiple swimming pools, lazy river, and swim-up bar
- Full-service spa and fitness center
- Several dining options, including beachfront restaurants and bars
- Extensive event spaces for weddings, conferences, and gatherings
- Direct access to the beach and water sports activities

Invest in this exceptional beachfront hotel and resort and benefit from the strong and consistent demand for coastal accommodations in the popular Galveston Island market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "0c1d2e3f-4g5h-6i7j-8k9l-0m1n2o3p4q5r", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Facility in Plano", + "state": "TX", + "hasImages": true, + "price": 12000000, + "city": "Plano", + "description": "

Invest in this modern, well-maintained self-storage facility located in the affluent city of Plano. The property offers a variety of storage unit sizes and amenities, catering to the diverse storage needs of residents and businesses in the area.

Self-storage facility features:

- 100,000 square feet of rentable storage space
- 800 storage units ranging from 5x5 to 10x30
- Climate-controlled and non-climate-controlled units available
- State-of-the-art security system with 24/7 video surveillance
- Convenient online rental and payment options
- Consistent occupancy rates and revenue growth

Acquire this exceptional self-storage facility and capitalize on the strong demand for storage solutions in the growing and prosperous Plano market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "1d2e3f4g-5h6i-7j8k-9l0m-1n2o3p4q5r6s", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Strip Center in Round Rock", + "state": "TX", + "hasImages": true, + "price": 9500000, + "city": "Round Rock", + "description": "

Acquire this well-established retail strip center located in the rapidly growing city of Round Rock, just north of Austin. The property features a diverse mix of national and local tenants, providing a stable and reliable income stream.

Retail strip center features:

- 50,000 square feet of retail space
- Anchored by a popular grocery store and pharmacy
- 95% occupancy rate with long-term leases
- Excellent visibility and access from major thoroughfares
- Ample parking with over 250 spaces
- Strong demographics and residential growth in the area

Invest in this exceptional retail strip center and benefit from the strong demand for quality retail space in the thriving Round Rock market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "2e3f4g5h-6i7j-8k9l-0m1n-2o3p4q5r6s7t", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Golf Course and Country Club in Flower Mound", + "state": "TX", + "hasImages": true, + "price": 25000000, + "city": "Flower Mound", + "description": "

Own this stunning golf course and country club nestled in the upscale community of Flower Mound. The property features a championship 18-hole golf course, clubhouse, and an array of amenities for members and guests.

Golf course and country club features:

- Beautifully maintained 18-hole golf course
- Elegant clubhouse with dining rooms, pro shop, and locker facilities
- Tennis courts, swimming pool, and fitness center
- Event spaces for weddings, tournaments, and corporate outings
- Established membership base and strong revenue streams
- Surrounded by high-end residential communities

Acquire this exceptional golf course and country club and cater to the discerning tastes of Flower Mound's affluent residents and golf enthusiasts.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "3f4g5h6i-7j8k-9l0m-1n2o-3p4q5r6s7t8u", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Full-Service Car Wash in Frisco", + "state": "TX", + "hasImages": true, + "price": 4500000, + "city": "Frisco", + "description": "

Invest in this thriving full-service car wash located in the fast-growing city of Frisco. The business offers a range of services, including exterior washing, interior cleaning, and detailing, catering to the high-end vehicles in the area.

Car wash features:

- State-of-the-art car wash tunnel with high-tech equipment
- 6 detailing bays for premium services
- Comfortable customer lounge with Wi-Fi and refreshments
- Membership program for recurring revenue
- Highly trained staff delivering exceptional service
- Prime location in a high-traffic area

Acquire this successful full-service car wash and capitalize on the strong demand for premium vehicle care services in the affluentFrisco market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "4g5h6i7j-8k9l-0m1n-2o3p-4q5r6s7t8u9v", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Flex Space in San Antonio", + "state": "TX", + "hasImages": true, + "price": 7200000, + "city": "San Antonio", + "description": "

Invest in this versatile industrial flex space located in the growing industrial market of San Antonio. The property offers a combination of warehouse, manufacturing, and office space, adaptable to a variety of business needs.

Industrial flex space features:

- 60,000 square feet of flexible industrial space
- Combination of warehouse, manufacturing, and office areas
- 24-foot clear height ceilings in warehouse
- Multiple grade-level and dock-high doors
- Ample parking and outside storage
- Convenient access to major highways and the San Antonio International Airport

Acquire this exceptional industrial flex space and take advantage of the strong demand for adaptable industrial properties in the robust San Antonio market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "5h6i7j8k-9l0m-1n2o-3p4q-5r6s7t8u9v0w", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Marina and Yacht Club on Lake Travis", + "state": "TX", + "hasImages": true, + "price": 18500000, + "city": "Spicewood", + "description": "

Own this prestigious waterfront marina and yacht club located on the shores of Lake Travis. The property offers a full-service marina, elegant clubhouse, and a variety of amenities for boating enthusiasts and lake lovers.

Marina and yacht club features:

- 200 boat slips accommodating vessels up to 100 feet
- Full-service fuel dock and pump-out station
- Clubhouse with dining room, bar, and event spaces
- Swimming pool, fitness center, and tennis courts
- Boat rental and charter services
- Stunning views of Lake Travis and the surrounding hills

Acquire this exceptional waterfront marina and yacht club and cater to the exclusive tastes of the Lake Travis boating community.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "6i7j8k9l-0m1n-2o3p-4q5r-6s7t8u9v0w1x", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Timberland Investment Opportunity in East Texas", + "state": "TX", + "hasImages": true, + "price": 12000000, + "city": "Nacogdoches", + "description": "

Invest in this expansive timberland property located in the heart of East Texas. The property spans 3,000 acres of well-managed pine and hardwood forests, offering a sustainable and profitable investment opportunity.

Timberland investment features:

- 3,000 acres of prime timberland
- Diverse age classes of pine and hardwood species
- Professionally managed for optimal growth and harvest
- Extensive road system for easy access and timber extraction
- Potential for recreational leases (hunting, camping, etc.)
- Proximity to multiple timber mills and processing facilities

Acquire this exceptional timberland investment opportunity and benefit from the stable returns and long-term appreciation of a well-managed timber portfolio.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "7j8k9l0m-1n2o-3p4q-5r6s-7t8u9v0w1x2y", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Automotive Dealership Property in Dallas", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Dallas", + "description": "

Acquire this prime automotive dealership property located in the heart of Dallas. The property features a large showroom, service center, and ample parking, ideal for a thriving dealership operation.

Automotive dealership property features:

- 50,000 square feet of showroom and service space
- Modern facility with high-end finishes and amenities
- Fully equipped service center with 20 service bays
- Large outdoor display area for vehicle inventory
- High-traffic location with excellent visibility
- Strong demographics and vehicle sales in the area

Invest in this exceptional automotive dealership property and capitalize on the strong demand for vehicle sales and services in the dynamic Dallas market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "8k9l0m1n-2o3p-4q5r-6s7t-8u9v0w1x2y3z", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Apartment Community in Houston's River Oaks", + "state": "TX", + "hasImages": true, + "price": 75000000, + "city": "Houston", + "description": "

Acquire this luxurious apartment community located in Houston's prestigious River Oaks neighborhood. The property features high-end finishes, resort-style amenities, and spacious floor plans, attracting discerning residents.

Apartment community features:

- 250 luxury apartment units
- One-, two-, and three-bedroom floor plans
- Gourmet kitchens with top-of-the-line appliances
- Lavish clubhouse with fitness center, media room, and business center
- Infinity-edge swimming pool with cabanas and outdoor kitchen
- Concierge services and secure parking garage

Invest in this exceptional apartment community and benefit from the strong demand for high-end rental living in one of Houston's most sought-after neighborhoods.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "9l0m1n2o-3p4q-5r6s-7t8u-9v0w1x2y3z4a", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Net-Leased Pharmacy in San Antonio", + "state": "TX", + "hasImages": true, + "price": 6500000, + "city": "San Antonio", + "description": "

Acquire this stable, net-leased pharmacy property located in a prime San Antonio retail corridor. The property is leased to a nationally recognized pharmacy chain, offering a reliable and long-term investment opportunity.

Net-leased pharmacy features:

- 12,000 square feet of retail space
- Long-term net lease with a national pharmacy tenant
- Regular rent increases built into the lease
- Excellent visibility and access from a major thoroughfare
- Strong retail synergy with nearby shopping centers
- Attractive demographics and residential density in the area

Invest in this exceptional net-leased pharmacy property and enjoy the stability and predictable cash flow of a long-term lease with a creditworthy tenant.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "0m1n2o3p-4q5r-6s7t-8u9v-0w1x2y3z4a5b", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Private School Campus in Austin", + "state": "TX", + "hasImages": true, + "price": 18000000, + "city": "Austin", + "description": "

Acquire this well-established private school campus located in the thriving city of Austin. The property features modern educational facilities, spacious classrooms, and extensive recreational areas, catering to students from pre-K through 12th grade.

Private school campus features:

- 80,000 square feet of educational and administrative space
- 25 classrooms equipped with smart technology
- Science labs, art studios, and multimedia center
- Full-size gymnasium and athletic fields
- Auditorium and performing arts center
- Convenient location in a highly desirable Austin neighborhood

Invest in this exceptional private school campus and benefit from the growing demand for quality education in the dynamic Austin market.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "1n2o3p4q-5r6s-7t8u-9v0w-1x2y3z4a5b6c", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center in Katy", + "state": "TX", + "hasImages": true, + "price": 32000000, + "city": "Katy", + "description": "

Acquire this high-performing grocery-anchored shopping center located in the fast-growing suburb of Katy. The property features a strong mix of national and regional tenants, providing a stable and diversified income stream.

Shopping center features:

- 150,000 square feet of retail space
- Anchored by a top-performing grocery store
- 98% occupancy rate with long-term leases
- Excellent visibility and access from major thoroughfares
- Ample parking with over 750 spaces
- Strong demographics and residential growth in the area

Invest in this exceptional grocery-anchored shopping center and benefit from the strong demand for quality retail space in the thriving Katy market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "2o3p4q5r-6s7t-8u9v-0w1x-2y3z4a5b6c7d", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Distribution Warehouse Near Port of Houston", + "state": "TX", + "hasImages": true, + "price": 22000000, + "city": "Baytown", + "description": "

Acquire this strategically located distribution warehouse near the Port of Houston. The property offers excellent access to major transportation routes and is well-suited for businesses engaged in importing, exporting, and regional distribution.

Distribution warehouse features:

- 250,000 square feet of warehouse space
- 32-foot clear height ceilings
- 50 dock-high loading doors
- ESFR sprinkler system
- Large truck court and ample trailer parking
- Close proximity to the Port of Houston and major highways

Invest in this exceptional distribution warehouse and take advantage of Houston's booming international trade and logistics industry.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "3p4q5r6s-7t8u-9v0w-1x2y-3z4a5b6c7d8e", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Resort-Style Multifamily Complex in San Marcos", + "state": "TX", + "hasImages": true, + "price": 55000000, + "city": "San Marcos", + "description": "

Acquire this luxurious resort-style multifamily complex located in the vibrant college town of San Marcos. The property features upscale amenities and finishes, catering to the growing student and young professional population in the area.

Multifamily complex features:

- 350 luxury apartment units
- Mix of one-, two-, and three-bedroom floor plans
- Lavish clubhouse with fitness center, game room, and media lounge
- Resort-style pool with sundeck and outdoor grilling stations
- Walking distance to Texas State University and downtown San Marcos
- Strong rental demand and consistent occupancy rates

Invest in this exceptional multifamily complex and benefit from the strong and growing rental market in the San Marcos area.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "4q5r6s7t-8u9v-0w1x-2y3z-4a5b6c7d8e9f", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Medical Office Building in Houston's Texas Medical Center", + "state": "TX", + "hasImages": true, + "price": 38000000, + "city": "Houston", + "description": "

Acquire this state-of-the-art medical office building located in the world-renowned Texas Medical Center in Houston. The property features a diverse mix of healthcare tenants and offers excellent visibility and access for patients and staff.

Medical office building features:

- 100,000 square feet of rentable medical office space
- Anchored by a prominent healthcare system
- 95% occupancy rate with long-term leases
- Advanced medical infrastructure and technology
- Abundant parking with valet services
- Prime location within the Texas Medical Center

Invest in this exceptional medical office building and benefit from the strong and growing demand for healthcare services in the Texas Medical Center.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "5r6s7t8u-9v0w-1x2y-3z4a-5b6c7d8e9f0g", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development Opportunity in Downtown Dallas", + "state": "TX", + "hasImages": true, + "price": 65000000, + "city": "Dallas", + "description": "

Acquire this prime mixed-use development opportunity in the heart of downtown Dallas. The property is zoned for a combination of residential, retail, and office uses, offering the potential for a landmark project in the city's central business district.

Development opportunity features:

- 3-acre site in the center of downtown Dallas
- Zoned for up to 750 residential units and 200,000 square feet of commercial space
- Proximity to major employers, cultural attractions, and public transportation
- Strong demand for urban living and walkable communities in the area
- Potential for attractive returns on investment

Invest in this exceptional mixed-use development opportunity and create a transformative project in one of Dallas' most dynamic and sought-after neighborhoods.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "6s7t8u9v-0w1x-2y3z-4a5b-6c7d8e9f0g1h", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Winery and Vineyard in the Texas Hill Country", + "state": "TX", + "hasImages": true, + "price": 12500000, + "city": "Fredericksburg", + "description": "

Acquire this picturesque winery and vineyard nestled in the heart of the Texas Hill Country. The property features a state-of-the-art winemaking facility, tasting room, and acres of mature vines, offering a turnkey opportunity in the thriving Texas wine industry.

Winery and vineyard features:

- 40 acres of established vineyards
- Modern winemaking facility with advanced equipment
- Elegant tasting room with stunning hill country views
- Event space for weddings, corporate events, and wine dinners
- Strong brand recognition and loyal customer base
- Located in the popular tourist destination of Fredericksburg

Invest in this exceptional winery and vineyard and capitalize on the growing demand for Texas wines and the booming tourism industry in the Hill Country.

", + "type": "101", + "imageOrder": [] + }, + { + "id": "7t8u9v0w-1x2y-3z4a-5b6c-7d8e9f0g1h2i", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Power Center in Plano", + "state": "TX", + "hasImages": true, + "price": 80000000, + "city": "Plano", + "description": "

Acquire this dominant retail power center located in the affluent city of Plano. The property features a strong mix of national anchor tenants and high-performing junior anchors, providing a stable and resilient income stream.

Retail power center features:

- 400,000 square feet of retail space
- Anchored by leading home improvement, electronics, and discount retailers
- 98% occupancy rate with long-term leases
- Ideal location in the heart of Plano's retail corridor
- Ample parking with over 2,000 spaces
- Affluent demographics and high traffic counts

Invest in this exceptional retail power center and benefit from the strong and consistent demand for quality retail space in the prosperous Plano market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "8u9v0w1x-2y3z-4a5b-6c7d-8e9f0g1h2i3j", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Cold Storage Warehouse in San Antonio", + "state": "TX", + "hasImages": true, + "price": 28000000, + "city": "San Antonio", + "description": "

Acquire this state-of-the-art cold storage warehouse located in the rapidly growing industrial market of San Antonio. The property features advanced refrigeration systems and is well-suited for food distribution, pharmaceutical storage, and other cold chain logistics operations.

Cold storage warehouse features:

- 200,000 square feet of cold storage space
- Multiple temperature-controlled zones
- 40-foot clear height ceilings
- 30 dock-high loading doors with sealers and levelers
- Advanced refrigeration and monitoring systems
- Convenient access to major highways and the San Antonio International Airport

Invest in this exceptional cold storage warehouse and capitalize on the growing demand for temperature-controlled logistics facilities in the robust San Antonio market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9v0w1x2y-3z4a-5b6c-7d8e-9f0g1h2i3j4k", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant and Event Space in Kemah", + "state": "TX", + "hasImages": true, + "price": 6500000, + "city": "Kemah", + "description": "

Acquire this stunning waterfront restaurant and event space located in the popular coastal town of Kemah. The property offers breathtaking views of Galveston Bay and a prime location in the heart of the Kemah Boardwalk entertainment district.

Restaurant and event space features:

- 12,000 square feet of indoor and outdoor dining space
- Seating capacity for 300 guests
- Expansive waterfront deck with unobstructed bay views
- Fully equipped commercial kitchen and bar
- Flexible event space for weddings, corporate events, and private parties
- Strong revenue from restaurant operations and event bookings

Invest in this exceptional waterfront restaurant and event space and benefit from the strong demand for unique dining experiences and event venues in the vibrant Kemah market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "0w1x2y3z-4a5b-6c7d-8e9f-0g1h2i3j4k5l", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Historic Office Building in Downtown Fort Worth", + "state": "TX", + "hasImages": true, + "price": 15000000, + "city": "Fort Worth", + "description": "

Acquire this beautifully restored historic office building located in the heart of downtown Fort Worth. The property combines classic architecture with modern amenities, offering a unique and desirable office environment for tenants.

Historic office building features:

- 75,000 square feet of rentable office space
- Elegant lobbies with original marble and brass finishes
- High ceilings and large windows for abundant natural light
- Updated HVAC, electrical, and plumbing systems
- Fiber-optic internet connectivity
- Prime location near Sundance Square and courthouse district

Invest in this exceptional historic office building and benefit from the strong demand for distinctive, high-quality office space in the thriving Fort Worth central business district.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "1x2y3z4a-5b6c-7d8e-9f0g-1h2i3j4k5l6m", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Self-Storage Facility in Carrollton", + "state": "TX", + "hasImages": true, + "price": 16000000, + "city": "Carrollton", + "description": "

Acquire this well-maintained self-storage facility located in the growing city of Carrollton, a popular suburb of Dallas. The property offers a variety of storage unit sizes and amenities, catering to the diverse storage needs of residents and businesses in the area.

Self-storage facility features:

- 120,000 square feet of rentable storage space
- 950 storage units ranging from 5x5 to 10x30
- Climate-controlled and non-climate-controlled units available
- Advanced security system with gated access and video surveillance
- Convenient online rental and payment options
- Consistently high occupancy rates and revenue growth

Invest in this exceptional self-storage facility and capitalize on the strong demand for storage solutions in the growing Carrollton market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "2y3z4a5b-6c7d-8e9f-0g1h-2i3j4k5l6m7n", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Retail Shopping Center in Pearland", + "state": "TX", + "hasImages": true, + "price": 24000000, + "city": "Pearland", + "description": "

Acquire this high-performing retail shopping center located in the rapidly growing city of Pearland, just south of Houston. The property features a diverse mix of national and regional tenants, providing a stable and attractive income stream.

Retail shopping center features:

- 80,000 square feet of retail space
- Anchored by a popular grocery store and fitness center
- 95% occupancy rate with long-term leases
- Excellent visibility and access from major thoroughfares
- Ample parking with over 400 spaces
- Strong demographics and residential growth in the area

Invest in this exceptional retail shopping center and benefit from the strong demand for quality retail space in the thriving Pearland market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "3z4a5b6c-7d8e-9f0g-1h2i-3j4k5l6m7n8o", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Trophy Office Tower in Uptown Dallas", + "state": "TX", + "hasImages": true, + "price": 150000000, + "city": "Dallas", + "description": "

Acquire this iconic trophy office tower located in the prestigious Uptown Dallas district. The property features world-class amenities, stunning views, and a prime location in one of Dallas' most desirable office submarkets.

Trophy office tower features:

- 500,000 square feet of Class A office space
- Sleek, modern design with high-end finishes
- Floor-to-ceiling windows with panoramic city views
- State-of-the-art fitness center and conference facilities
- Outdoor plaza with seating areas and public art
- Walking distance to upscale restaurants, shops, and residential towers

Invest in this exceptional trophy office tower and benefit from the strong demand for premium office space in the dynamic Uptown Dallas market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4a5b6c7d-8e9f-0g1h-2i3j-4k5l6m7n8o9p", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Flex Campus in North Houston", + "state": "TX", + "hasImages": true, + "price": 45000000, + "city": "Houston", + "description": "

Acquire this versatile industrial flex campus located in the fast-growing North Houston submarket. The property offers a mix of warehouse, manufacturing, and office space, catering to a wide range of business needs.

Industrial flex campus features:

- 300,000 square feet of flexible industrial space
- Combination of warehouse, manufacturing, and office areas
- 28-foot clear height ceilings in warehouse
- Abundant loading docks and grade-level doors
- Ample parking and outside storage
- Convenient access to major highways and George Bush Intercontinental Airport

Invest in this exceptional industrial flex campus and capitalize on the strong demand for adaptable industrial properties in the thriving North Houston market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "5b6c7d8e-9f0g-1h2i-3j4k-5l6m7n8o9p0q", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Senior Living Community in The Woodlands", + "state": "TX", + "hasImages": true, + "price": 75000000, + "city": "The Woodlands", + "description": "

Acquire this upscale luxury senior living community located in the master-planned community of The Woodlands. The property offers a continuum of care, including independent living, assisted living, and memory care, catering to the growing senior population in the area.

Luxury senior living community features:

- 200 luxury senior living units
- Mix of independent living, assisted living, and memory care options
- Elegant dining venues, fitness center, and spa
- Outdoor walking paths, gardens, and putting green
- 24-hour staffing and on-site medical services
- Located in the heart of The Woodlands, near shopping, dining, and healthcare facilities

Invest in this exceptional luxury senior living community and benefit from the strong demand for high-quality senior housing in the affluent Woodlands market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "6c7d8e9f-0g1h-2i3j-4k5l-6m7n8o9p0q1r", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Golf Resort and Residential Community in Austin", + "state": "TX", + "hasImages": true, + "price": 95000000, + "city": "Austin", + "description": "

Acquire this stunning golf resort and residential community located in the scenic Texas Hill Country, just outside of Austin. The property features a championship golf course, luxurious clubhouse, and upscale residential lots, offering a premium lifestyle for residents and guests.

Golf resort and residential community features:

- 18-hole championship golf course designed by a renowned architect
- Elegant clubhouse with fine dining, pro shop, and event spaces
- Resort-style pool, tennis courts, and fitness center
- Luxury residential lots with sweeping golf course and hill country views
- Convenient access to downtown Austin and Austin-Bergstrom International Airport
- Strong demand for luxury golf and residential properties in the Austin market

Invest in this exceptional golf resort and residential community and capitalize on the growing popularity of luxury lifestyle developments in the thriving Austin area.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "7d8e9f0g-1h2i-3j4k-5l6m-7n8o9p0q1r2s", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Ski Resort and Mountain Lodge in New Mexico", + "state": "NM", + "hasImages": true, + "price": 60000000, + "city": "Taos", + "description": "

Acquire this iconic ski resort and mountain lodge located in the stunning Sangre de Cristo Mountains of Taos, New Mexico. The property offers world-class skiing, luxurious accommodations, and year-round outdoor recreation, attracting visitors from around the globe.

Ski resort and mountain lodge features:

- 1,500 skiable acres with diverse terrain for all skill levels
- Modern ski lift infrastructure and snowmaking capabilities
- Luxurious mountain lodge with 150 guest rooms and suites
- Full-service spa, fitness center, and indoor pool
- Multiple dining options, including a fine dining restaurant and slope-side cafes
- Year-round activities, including hiking, mountain biking, and golf

Invest in this exceptional ski resort and mountain lodge and benefit from the strong and growing demand for premier ski destinations in the Rocky Mountain region.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "8e9f0g1h-2i3j-4k5l-6m7n-8o9p0q1r2s3t", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Margaritaville Resort and Residential Development", + "state": "TX", + "hasImages": true, + "price": 120000000, + "city": "Conroe", + "description": "

Acquire this exciting Margaritaville-branded resort and residential development located on the shores of Lake Conroe, just north of Houston. The property features a mix of resort accommodations, residential units, and world-class amenities, offering a unique and highly desirable lifestyle experience.

Margaritaville resort and residential development features:

- 250-room Margaritaville-branded resort hotel
- 150 luxury residential condominiums
- 20,000 square feet of retail and dining space
- Expansive waterfront pool complex with lazy river and swim-up bar
- Full-service spa, fitness center, and entertainment venues
- Marina with boat slips and watersports rentals

Invest in this exceptional Margaritaville resort and residential development and capitalize on the strong demand for branded lifestyle properties in the growing Lake Conroe market.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "9f0g1h2i-3j4k-5l6m-7n8o-9p0q1r2s3t4u", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Data Center Campus in Dallas-Fort Worth", + "state": "TX", + "hasImages": true, + "price": 180000000, + "city": "Plano", + "description": "

Acquire this state-of-the-art data center campus located in the heart of the Dallas-Fort Worth Metroplex. The property features advanced infrastructure, robust connectivity, and ample expansion potential, catering to the growing demand for data storage and processing in the region.

Data center campus features:

- 500,000 square feet of data center space
- Tier III+ infrastructure with redundant power and cooling systems
- Carrier-neutral facility with multiple fiber providers
- 24/7 security, including biometric access control and video surveillance
- 50 MW of available power capacity
- Room for expansion on the 20-acre campus

Invest in this exceptional data center campus and benefit from the strong and growing demand for critical digital infrastructure in the Dallas-Fort Worth market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "0g1h2i3j-4k5l-6m7n-8o9p-0q1r2s3t4u5v", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Private Island Resort off the Texas Gulf Coast", + "state": "TX", + "hasImages": true, + "price": 75000000, + "city": "Corpus Christi", + "description": "

Acquire this stunning private island resort located just off the Texas Gulf Coast near Corpus Christi. The property features luxurious accommodations, pristine beaches, and an array of exclusive amenities, offering an unparalleled tropical getaway experience.

Private island resort features:

- 50 luxury beachfront villas and suites
- Overwater spa and fitness center
- Multiple dining options, including a fine dining restaurant and beachside bars
- Private marina with yacht charters and watersports rentals
- Helipad for convenient access from the mainland
- Surrounded by crystal-clear waters and abundant marine life

Invest in this exceptional private island resort and capitalize on the strong demand for exclusive, high-end vacation experiences along the Texas Gulf Coast.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "1h2i3j4k-5l6m-7n8o-9p0q-1r2s3t4u5v6w", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Ski Resort in Aspen, Colorado", + "state": "CO", + "hasImages": true, + "price": 150000000, + "city": "Aspen", + "description": "

Acquire this iconic luxury ski resort nestled in the heart of the Rocky Mountains in Aspen, Colorado. The property features world-class skiing, luxurious accommodations, and five-star amenities, attracting discerning guests from around the globe.

Luxury ski resort features:

- 500 acres of skiable terrain with diverse trails for all skill levels
- 200 luxurious guest rooms, suites, and private residences
- Multiple dining options, including acclaimed restaurants and slope-side cafes
- Full-service spa, fitness center, and heated outdoor pools
- Ski-in/ski-out access and private ski valet services
- Year-round recreational activities and cultural events

Invest in this exceptional luxury ski resort and benefit from the strong and resilient demand for high-end mountain resort destinations in the prestigious Aspen market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "2i3j4k5l-6m7n-8o9p-0q1r-2s3t4u5v6w7x", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Beachfront Resort Hotel in Maui, Hawaii", + "state": "HI", + "hasImages": true, + "price": 120000000, + "city": "Lahaina", + "description": "

Acquire this stunning beachfront resort hotel on the world-famous Ka'anapali Beach in Maui, Hawaii. The property offers luxurious accommodations, exceptional amenities, and unparalleled views of the Pacific Ocean, providing guests with the ultimate Hawaiian island getaway.

Beachfront resort hotel features:

- 400 elegantly appointed guest rooms and suites
- Multiple swimming pools, including an adults-only infinity pool
- Full-service spa, fitness center, and yoga studio
- Several dining options, ranging from casual beachside fare to fine dining
- Extensive meeting and event space for weddings and conferences
- Direct access to white sand beaches and world-class golf courses

Invest in this exceptional beachfront resort hotel and capitalize on the strong and consistent demand for luxury accommodations in the highly desirable Maui market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "3j4k5l6m-7n8o-9p0q-1r2s-3t4u5v6w7x8y", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Class A Office Tower in Midtown Manhattan, New York", + "state": "NY", + "hasImages": true, + "price": 500000000, + "city": "New York", + "description": "

Acquire this premier Class A office tower located in the heart of Midtown Manhattan, New York City. The property features state-of-the-art amenities, efficient floor plates, and unparalleled views of the city skyline, offering a prestigious address for top-tier tenants.

Class A office tower features:

- 1,000,000 square feet of Class A office space
- 95% occupancy rate with a diverse mix of creditworthy tenants
- LEED Platinum certified with advanced sustainability features
- Expansive lobby with 24/7 concierge and security services
- Multiple high-speed elevators and advanced building systems
- Prime Midtown location with access to transportation and amenities

Invest in this exceptional Class A office tower and benefit from the strong tenant demand and long-term value appreciation potential in the highly coveted Midtown Manhattan office market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4k5l6m7n-8o9p-0q1r-2s3t-4u5v6w7x8y9z", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Distribution Center in Inland Empire, California", + "state": "CA", + "hasImages": true, + "price": 85000000, + "city": "Ontario", + "description": "

Acquire this state-of-the-art industrial distribution center strategically located in the Inland Empire region of Southern California. The property offers modern facilities, expansive warehouse space, and excellent access to major transportation routes, serving the growing logistics and e-commerce industries.

Industrial distribution center features:

- 800,000 square feet of modern warehouse space
- 36-foot clear height ceilings with ESFR sprinkler system
- Cross-dock configuration with ample loading positions
- Large truck court and trailer parking
- LEED Silver certified with energy-efficient systems
- Proximity to major highways, intermodal facilities, and ports

Invest in this exceptional industrial distribution center and capitalize on the strong and expanding demand for high-quality logistics space in the highly sought-after Inland Empire market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "5l6m7n8o-9p0q-1r2s-3t4u-5v6w7x8y9z0a", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center in Chicago Suburbs, Illinois", + "state": "IL", + "hasImages": true, + "price": 50000000, + "city": "Naperville", + "description": "

Acquire this well-established grocery-anchored shopping center located in the affluent Chicago suburb of Naperville, Illinois. The property features a strong mix of national and regional tenants, providing a stable and resilient income stream in a highly desirable retail submarket.

Grocery-anchored shopping center features:

- 200,000 square feet of retail space
- Anchored by a high-performing grocery store and pharmacy
- 98% occupancy rate with a balanced mix of long-term leases
- Prominent location in a densely populated, high-income trade area
- Ample parking and easy access from major thoroughfares
- Consistent sales growth and tenant retention

Invest in this exceptional grocery-anchored shopping center and benefit from the reliable cash flows and long-term value appreciation potential in the highly attractive Naperville retail market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "6m7n8o9p-0q1r-2s3t-4u5v-6w7x8y9z0a1b", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Mixed-Use Development in Seattle, Washington", + "state": "WA", + "hasImages": true, + "price": 200000000, + "city": "Seattle", + "description": "

Acquire this premier waterfront mixed-use development opportunity in the heart of downtown Seattle, Washington. The property offers a rare chance to create a landmark project combining luxury residential, Class A office, and high-end retail components, all with stunning views of Puget Sound and the Olympic Mountains.

Waterfront mixed-use development features:

- 5-acre site with 1,000 feet of waterfront frontage
- Zoning allows for up to 1,000,000 square feet of mixed-use development
- Ideal for luxury condominiums, Class A office space, and high-end retail
- Proximity to Pike Place Market, Seattle Art Museum, and other attractions
- Excellent access to public transportation and major highways
- Strong demand for premier waterfront living and working environments

Invest in this exceptional waterfront mixed-use development opportunity and create a transformative project in one of Seattle's most desirable and dynamic locations.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "7n8o9p0q-1r2s-3t4u-5v6w-7x8y9z0a1b2c", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Resort and Spa in Scottsdale, Arizona", + "state": "AZ", + "hasImages": true, + "price": 95000000, + "city": "Scottsdale", + "description": "

Acquire this luxurious resort and spa located in the prestigious Scottsdale market of Arizona. The property features elegant accommodations, world-class amenities, and a prime location adjacent to championship golf courses, offering guests a quintessential desert oasis experience.

Luxury resort and spa features:

- 250 beautifully appointed guest rooms and suites
- Full-service spa with private treatment rooms and salon
- Multiple dining options, including fine dining and poolside restaurants
- Championship golf course and tennis courts
- Expansive outdoor pools with cabanas and swim-up bar
- Over 50,000 square feet of flexible meeting and event space

Invest in this exceptional luxury resort and spa and benefit from the strong and growing demand for high-end accommodations in the highly desirable Scottsdale market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "8o9p0q1r-2s3t-4u5v-6w7x-8y9z0a1b2c3d", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development Opportunity in Midtown Atlanta, Georgia", + "state": "GA", + "hasImages": true, + "price": 120000000, + "city": "Atlanta", + "description": "

Acquire this prime mixed-use development opportunity in the heart of Midtown Atlanta, Georgia. The property offers a chance to create a transformative project combining Class A office, high-end residential, and street-level retail components in one of Atlanta's most dynamic and vibrant neighborhoods.

Mixed-use development opportunity features:

- 3-acre site in the heart of Midtown Atlanta
- Zoning allows for up to 1,500,000 square feet of mixed-use development
- Ideal for Class A office, luxury apartments, and high-end retail
- Proximity to Georgia Tech, Piedmont Park, and other attractions
- Excellent access to public transportation and major highways
- Strong demand for premier office, residential, and retail space in Midtown

Invest in this exceptional mixed-use development opportunity and create a landmark project in one of Atlanta's most sought-after and rapidly growing submarkets.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "9p0q1r2s-3t4u-5v6w-7x8y-9z0a1b2c3d4e", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Ski-In/Ski-Out Resort Hotel in Park City, Utah", + "state": "UT", + "hasImages": true, + "price": 75000000, + "city": "Park City", + "description": "

Acquire this premier ski-in/ski-out resort hotel located in the heart of Park City, Utah. The property offers luxurious accommodations, exceptional mountain access, and a wide range of amenities, making it a top destination for skiers and outdoor enthusiasts.

Ski-in/ski-out resort hotel features:

- 150 well-appointed guest rooms and suites
- Direct ski-in/ski-out access to Park City Mountain Resort
- Full-service spa, fitness center, and heated outdoor pool
- Multiple dining options, including a signature restaurant and après-ski bar
- Extensive meeting and event space for weddings and conferences
- Close proximity to historic Main Street and other local attractions

Invest in this exceptional ski-in/ski-out resort hotel and benefit from the strong and consistent demand for high-quality mountain accommodations in the world-renowned Park City market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "0q1r2s3t-4u5v-6w7x-8y9z-0a1b2c3d4e5f", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Life Science Research Campus in Boston Suburbs, Massachusetts", + "state": "MA", + "hasImages": true, + "price": 350000000, + "city": "Cambridge", + "description": "

Acquire this state-of-the-art life science research campus located in the highly sought-after Cambridge submarket of Boston, Massachusetts. The property features advanced laboratory facilities, collaborative office space, and a prime location in the heart of the region's thriving biotech and pharmaceutical cluster.

Life science research campus features:

- 500,000 square feet of laboratory and office space
- Fully built-out and move-in ready for life science tenants
- Flexible floorplates with robust infrastructure and redundant systems
- LEED Gold certified with advanced sustainability features
- Amenities include cafes, fitness centers, and outdoor collaboration areas
- Walking distance to top universities, research hospitals, and public transportation

Invest in this exceptional life science research campus and capitalize on the strong and growing demand for premier laboratory space in the world-renowned Cambridge life science market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "1r2s3t4u-5v6w-7x8y-9z0a-1b2c3d4e5f6g", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Retail Center in Miami, Florida", + "state": "FL", + "hasImages": true, + "price": 180000000, + "city": "Miami", + "description": "

Acquire this upscale retail center located in the heart of Miami, Florida. The property features a curated mix of luxury and contemporary retailers, exceptional architecture, and a prime location in one of Miami's most affluent and fashionable neighborhoods.

Upscale retail center features:

- 300,000 square feet of high-end retail space
- Anchored by a flagship luxury department store
- Tenant mix includes designer boutiques, art galleries, and upscale dining
- Iconic architectural design with lush landscaping and water features
- Ample parking with valet service and exclusive VIP areas
- Strong demographics and tourist traffic in the surrounding area

Invest in this exceptional upscale retail center and benefit from the strong and resilient demand for luxury shopping experiences in the highly desirable Miami market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "2s3t4u5v-6w7x-8y9z-0a1b-2c3d4e5f6g7h", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Trophy Office Tower in Downtown Los Angeles, California", + "state": "CA", + "hasImages": true, + "price": 450000000, + "city": "Los Angeles", + "description": "

Acquire this iconic trophy office tower located in the heart of downtown Los Angeles, California. The property features world-class amenities, sweeping city views, and a prestigious tenant roster, offering a rare investment opportunity in one of the nation's premier office markets.

Trophy office tower features:

- 1,000,000 square feet of Class A office space
- 95% occupancy rate with long-term leases to creditworthy tenants
- LEED Platinum certified with advanced sustainability features
- Expansive lobby with high-end finishes and 24/7 security
- Rooftop helipad and exclusive tenant amenity floor
- Unparalleled views of the Los Angelesskyline and Hollywood Hills

Invest in this exceptional trophy office tower and benefit from the strong tenant demand, stable cash flows, and long-term value appreciation potential in the dynamic downtown Los Angeles office market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "3t4u5v6w-7x8y-9z0a-1b2c-3d4e5f6g7h8i", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Apartment Community in Las Vegas, Nevada", + "state": "NV", + "hasImages": true, + "price": 120000000, + "city": "Las Vegas", + "description": "

Acquire this luxurious apartment community located in the upscale Summerlin neighborhood of Las Vegas, Nevada. The property features resort-style amenities, spacious floor plans, and a prime location near top employers, high-end shopping, and world-class entertainment.

Luxury apartment community features:

- 500 apartment units with one-, two-, and three-bedroom floor plans
- Average unit size of 1,100 square feet with high-end finishes
- Expansive clubhouse with fitness center, yoga studio, and media lounge
- Resort-style pool with cabanas, outdoor kitchens, and fire pits
- Walking distance to upscale retail, dining, and entertainment options
- Strong rental demand and consistent rent growth in the Summerlin submarket

Invest in this exceptional luxury apartment community and capitalize on the strong and growing demand for high-end rental living in the highly desirable Las Vegas market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "4u5v6w7x-8y9z-0a1b-2c3d-4e5f6g7h8i9j", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Hotel Development Opportunity in Naples, Florida", + "state": "FL", + "hasImages": true, + "price": 150000000, + "city": "Naples", + "description": "

Acquire this prime waterfront hotel development opportunity located on the pristine beaches of Naples, Florida. The property offers a rare chance to develop a luxury resort hotel with unobstructed Gulf of Mexico views in one of the nation's most exclusive and sought-after coastal markets.

Waterfront hotel development opportunity features:

- 5-acre beachfront site with 500 feet of Gulf of Mexico frontage
- Zoning allows for up to 250 luxury hotel rooms and suites
- Ideal for a world-class resort with upscale amenities and dining
- Proximity to high-end shopping, golf courses, and cultural attractions
- Strong demand for luxury accommodations in the Naples market
- Potential for attractive returns on investment and long-term value appreciation

Invest in this exceptional waterfront hotel development opportunity and create a landmark luxury resort in one of Florida's most desirable and exclusive coastal destinations.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "5v6w7x8y-9z0a-1b2c-3d4e-5f6g7h8i9j0k", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Historic Office Building in Downtown Washington, D.C.", + "state": "DC", + "hasImages": true, + "price": 225000000, + "city": "Washington", + "description": "

Acquire this stunning historic office building located in the heart of downtown Washington, D.C. The property features classic architecture, modern amenities, and a prime location just steps from the White House, offering a prestigious address for government relations and lobbying firms.

Historic office building features:

- 250,000 square feet of beautifully renovated office space
- Elegant lobbies and common areas with historic details
- State-of-the-art building systems and infrastructure
- Rooftop terrace with panoramic views of the Washington Monument
- On-site retail and dining amenities
- Unparalleled access to government agencies, embassies, and influential organizations

Invest in this exceptional historic office building and benefit from the strong and stable demand for prestigious office space in the heart of the nation's capital.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "6w7x8y9z-0a1b-2c3d-4e5f-6g7h8i9j0k1l", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Ski Resort and Mountain Lodge in Vail, Colorado", + "state": "CO", + "hasImages": true, + "price": 180000000, + "city": "Vail", + "description": "

Acquire this iconic ski resort and mountain lodge located in the world-renowned destination of Vail, Colorado. The property features luxurious accommodations, ski-in/ski-out access, and a wide range of upscale amenities, offering an unparalleled mountain resort experience.

Ski resort and mountain lodge features:

- 200 luxurious guest rooms and suites with mountain views
- Direct ski-in/ski-out access to Vail Mountain's legendary ski terrain
- Full-service spa, fitness center, and heated outdoor pools
- Multiple dining options, including a signature fine dining restaurant
- Extensive meeting and event space for weddings and conferences
- Close proximity to Vail Village's shops, galleries, and nightlife

Invest in this exceptional ski resort and mountain lodge and benefit from the strong and resilient demand for luxury mountain resort experiences in the iconic Vail market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "7x8y9z0a-1b2c-3d4e-5f6g-7h8i9j0k1l2m", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center in Portland Suburbs, Oregon", + "state": "OR", + "hasImages": true, + "price": 40000000, + "city": "Lake Oswego", + "description": "

Acquire this well-established grocery-anchored shopping center located in the affluent Portland suburb of Lake Oswego, Oregon. The property features a strong mix of national and regional tenants, providing a stable and resilient income stream in a highly desirable retail submarket.

Grocery-anchored shopping center features:

- 150,000 square feet of retail space
- Anchored by a high-performing organic grocery store
- 100% occupancy rate with a balanced mix of long-term leases
- Prominent location in a densely populated, high-income trade area
- Ample parking and easy access from major thoroughfares
- Consistent sales growth and tenant retention

Invest in this exceptional grocery-anchored shopping center and benefit from the reliable cash flows and long-term value appreciation potential in the highly attractive Lake Oswego retail market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "8y9z0a1b-2c3d-4e5f-6g7h-8i9j0k1l2m3n", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Master-Planned Industrial Park in Charlotte, North Carolina", + "state": "NC", + "hasImages": true, + "price": 95000000, + "city": "Charlotte", + "description": "

Acquire this strategically located master-planned industrial park in the rapidly growing Charlotte metropolitan area of North Carolina. The property offers a variety of fully improved industrial sites, ready for immediate development or build-to-suit opportunities.

Master-planned industrial park features:

- 500-acre master-planned industrial park
- Fully entitled and infrastructured sites ranging from 5 to 50 acres
- Ideal for distribution, manufacturing, and logistics operations
- Triple Freeport tax exemption and other business incentives available
- Excellent access to I-85, I-485, and Charlotte Douglas International Airport
- Strong labor pool and growing industrial demand in the region

Invest in this exceptional master-planned industrial park and capitalize on the tremendous growth potential in the booming Charlotte industrial market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "9z0a1b2c-3d4e-5f6g-7h8i-9j0k1l2m3n4o", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Mixed-Use Development in Baltimore, Maryland", + "state": "MD", + "hasImages": true, + "price": 250000000, + "city": "Baltimore", + "description": "

Acquire this prime waterfront mixed-use development opportunity in the heart of Baltimore's Inner Harbor. The property offers a rare chance to create a landmark project combining luxury residential, Class A office, and high-end retail components, all with stunning views of the Baltimore skyline and waterfront.

Waterfront mixed-use development features:

- 10-acre site with 1,500 feet of waterfront frontage
- Zoning allows for up to 2,000,000 square feet of mixed-use development
- Ideal for luxury condominiums, Class A office space, and high-end retail
- Proximity to Baltimore's top attractions, including the National Aquarium and Camden Yards
- Excellent access to public transportation and major highways
- Strong demand for premier waterfront living and working environments

Invest in this exceptional waterfront mixed-use development opportunity and create a transformative project in one of Baltimore's most desirable and dynamic locations.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "0a1b2c3d-4e5f-6g7h-8i9j-0k1l2m3n4o5p", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Oceanfront Resort in Lahaina, Maui, Hawaii", + "state": "HI", + "hasImages": true, + "price": 400000000, + "city": "Lahaina", + "description": "

Acquire this iconic luxury oceanfront resort located on the world-famous Ka'anapali Beach in Lahaina, Maui, Hawaii. The property features exquisite accommodations, unparalleled amenities, and direct access to one of the most beautiful beaches in the world, offering a quintessential Hawaiian paradise experience.

Luxury oceanfront resort features:

- 500 elegantly appointed guest rooms and suites with ocean views
- Multiple swimming pools, including an adults-only infinity pool and a 120-foot waterslide
- Full-service spa, fitness center, and yoga studio
- Five dining options, ranging from casual beachside fare to world-class fine dining
- Extensive meeting and event space for weddings, conferences, and corporate retreats
- Direct access to Ka'anapali Beach and championship golf courses

Invest in this exceptional luxury oceanfront resort and benefit from the strong and consistent demand for high-end accommodations in the highly sought-after Maui market, one of the world's most desirable tropical destinations.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "1b2c3d4e-5f6g-7h8i-9j0k-1l2m3n4o5p6q", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Class A Office Tower", + "state": "IL", + "hasImages": true, + "price": 350000000, + "city": "Chicago", + "description": "

Acquire this prestigious Class A office tower located in the heart of Chicago's bustling downtown. The property boasts state-of-the-art amenities, efficient floor plates, and stunning views of the city skyline, making it a highly desirable location for top-tier tenants.

Class A office tower features:

- 800,000 square feet of premier office space
- LEED Platinum certification for sustainability
- Expansive lobby with 24/7 concierge and security
- Rooftop terrace with outdoor meeting spaces and views of Lake Michigan
- Direct access to public transportation and nearby amenities
- Strong tenant roster with long-term leases

Invest in this exceptional Class A office tower and capitalize on the strong demand for high-quality office space in one of the nation's most vibrant and economically robust cities.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "2c3d4e5f-6g7h-8i9j-0k1l-2m3n4o5p6q7r", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Multifamily Community", + "state": "CA", + "hasImages": true, + "price": 200000000, + "city": "San Diego", + "description": "

Acquire this upscale luxury multifamily community situated in the highly desirable coastal city of San Diego. The property features resort-style amenities, spacious floor plans, and a prime location near top employers, entertainment, and beaches.

Luxury multifamily community features:

- 400 apartment units with studio, one-, two-, and three-bedroom floor plans
- Expansive clubhouse with fitness center, yoga studio, and media lounge
- Resort-style pool with sundeck, cabanas, and outdoor kitchens
- Pet-friendly with on-site dog park and pet spa
- Walking distance to trendy restaurants, shops, and nightlife
- Easy access to major highways and public transportation

Invest in this exceptional luxury multifamily community and benefit from the strong rental demand and growth potential in the thriving San Diego market.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "3d4e5f6g-7h8i-9j0k-1l2m-3n4o5p6q7r8s", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Mixed-Use Development Opportunity", + "state": "NY", + "hasImages": true, + "price": 500000000, + "city": "New York City", + "description": "

Acquire this prime waterfront mixed-use development opportunity in the vibrant Battery Park City neighborhood of New York City. The property offers a rare chance to create a landmark project combining luxury residential, Class A office, and high-end retail components, all with stunning views of the Hudson River and the Statue of Liberty.

Waterfront mixed-use development features:

- 8-acre site with 1,000 feet of waterfront frontage
- Zoning allows for up to 1,500,000 square feet of mixed-use development
- Ideal for luxury condominiums, Class A office space, and high-end retail
- Proximity to world-class amenities, including parks, museums, and transportation hubs
- Strong demand for premier waterfront living and working environments
- Potential for attractive returns on investment and long-term value appreciation

Invest in this exceptional waterfront mixed-use development opportunity and create a transformative project in one of New York City's most desirable and dynamic neighborhoods.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "4e5f6g7h-8i9j-0k1l-2m3n-4o5p6q7r8s9t", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Suburban Office Campus", + "state": "TX", + "hasImages": true, + "price": 120000000, + "city": "Dallas", + "description": "

Acquire this well-established suburban office campus located in the thriving Dallas-Fort Worth metroplex. The property features a mix of modern office buildings, ample parking, and beautifully landscaped outdoor spaces, offering a highly desirable work environment for tenants.

Suburban office campus features:

- 500,000 square feet of Class A office space across multiple buildings
- Efficient floor plates with flexible layouts for various tenant needs
- Lush landscaping, walking trails, and outdoor collaboration areas
- On-site amenities, including cafes, fitness centers, and conference facilities
- Convenient access to major highways and nearby residential communities
- Strong tenant roster with a mix of long-term leases and credit-worthy occupiers

Invest in this exceptional suburban office campus and benefit from the strong demand for high-quality office space in the rapidly growing Dallas-Fort Worth market.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "5f6g7h8i-9j0k-1l2m-3n4o-5p6q7r8s9t0u", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Grocery-Anchored Shopping Center", + "state": "AZ", + "hasImages": true, + "price": 75000000, + "city": "Phoenix", + "description": "

Acquire this high-performing grocery-anchored shopping center located in the rapidly growing Phoenix metropolitan area. The property features a strong mix of national and regional tenants, providing a stable and attractive income stream in a highly desirable retail submarket.

Grocery-anchored shopping center features:

- 250,000 square feet of retail space
- Anchored by a dominant grocery store with strong sales
- 98% occupancy rate with a balanced mix of long-term leases
- Prominent location in a densely populated, high-income trade area
- Ample parking and easy access from major thoroughfares
- Consistent sales growth and tenant retention

Invest in this exceptional grocery-anchored shopping center and benefit from the reliable cash flows and long-term value appreciation potential in the dynamic Phoenix retail market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "6g7h8i9j-0k1l-2m3n-4o5p-6q7r8s9t0u1v", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Distribution Center", + "state": "GA", + "hasImages": true, + "price": 80000000, + "city": "Atlanta", + "description": "

Acquire this state-of-the-art industrial distribution center strategically located in the booming Atlanta metropolitan area. The property features modern facilities, expansive warehouse space, and excellent access to major transportation routes, serving the growing logistics and e-commerce industries.

Industrial distribution center features:

- 750,000 square feet of modern warehouse space
- 36-foot clear height ceilings with ESFR sprinkler system
- Cross-dock configuration with ample loading positions
- Large truck court and trailer parking
- LEED Silver certification for energy efficiency
- Prime location near Hartsfield-Jackson Atlanta International Airport

Invest in this exceptional industrial distribution center and capitalize on the strong demand for high-quality logistics space in the rapidly expanding Atlanta market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "7h8i9j0k-1l2m-3n4o-5p6q-7r8s9t0u1v2w", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Hotel Development Opportunity", + "state": "WA", + "hasImages": true, + "price": 180000000, + "city": "Seattle", + "description": "

Acquire this prime waterfront hotel development opportunity located on the picturesque Elliott Bay in Seattle. The property offers a rare chance to develop a luxury hotel with unobstructed views of the Puget Sound and the Olympic Mountains, in one of the nation's most vibrant and economically robust cities.

Waterfront hotel development opportunity features:

- 2-acre site with 400 feet of waterfront frontage
- Zoning allows for up to 400 luxury hotel rooms and suites
- Ideal for a world-class hotel with upscale amenities and dining
- Proximity to Pike Place Market, Seattle Art Museum, and other attractions
- Strong demand for luxury accommodations in the Seattle market
- Potential for attractive returns on investment and long-term value appreciation

Invest in this exceptional waterfront hotel development opportunity and create a landmark luxury hotel in one of Seattle's most desirable and dynamic locations.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "8i9j0k1l-2m3n-4o5p-6q7r-8s9t0u1v2w3x", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Upscale Retail Center", + "state": "NV", + "hasImages": true, + "price": 150000000, + "city": "Las Vegas", + "description": "

Acquire this upscale retail center located in the heart of Las Vegas, Nevada. The property features a curated mix of luxury and lifestyle retailers, exceptional architecture, and a prime location on the Las Vegas Strip, attracting high-end consumers and tourists from around the world.

Upscale retail center features:

- 400,000 square feet of high-end retail space
- Anchored by a flagship luxury department store
- Tenant mix includes designer boutiques, fine dining, and entertainment venues
- Iconic architectural design with indoor and outdoor shopping experiences
- Ample parking with valet service and exclusive VIP areas
- Strong sales performance and tenant retention

Invest in this exceptional upscale retail center and benefit from the strong and resilient demand for luxury shopping experiences in the internationally renowned Las Vegas market.

", + "type": "100", + "imageOrder": [] + }, + { + "id": "9j0k1l2m-3n4o-5p6q-7r8s-9t0u1v2w3x4y", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Life Science Research Campus", + "state": "MA", + "hasImages": true, + "price": 450000000, + "city": "Cambridge", + "description": "

Acquire this world-class life science research campus located in the heart of Cambridge's Kendall Square, the global epicenter of the biotech industry. The property features state-of-the-art laboratory facilities, collaborative office spaces, and a prime location surrounded by top universities, research hospitals, and biotech companies.

Life science research campus features:

- 600,000 square feet of laboratory and office space
- Fully built-out and move-in ready for life science tenants
- Flexible floor plates with robust infrastructure and redundant systems
- LEED Gold certification for sustainability and energy efficiency
- Amenities include cafes, fitness centers, and outdoor collaboration areas
- Direct access to public transportation and nearby amenities

Invest in this exceptional life science research campus and capitalize on the strong and growing demand for premier laboratory space in the world-renowned Cambridge life science cluster.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "0k1l2m3n-4o5p-6q7r-8s9t-0u1v2w3x4y5z", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Luxury Resort and Spa", + "state": "HI", + "hasImages": true, + "price": 300000000, + "city": "Wailea", + "description": "

Acquire this iconic luxury resort and spa located on the pristine beaches of Wailea, Maui, Hawaii. The property features exquisite accommodations, world-class amenities, and unparalleled views of the Pacific Ocean, offering a quintessential Hawaiian paradise experience for discerning guests.

Luxury resort and spa features:

- 400 elegantly appointed guest rooms and suites with ocean views
- Multiple swimming pools, including an adults-only infinity pool
- Full-service spa with private treatment rooms, yoga studio, and fitness center
- Five dining options, ranging from casual beachside fare to fine dining
- Extensive meeting and event space for weddings and corporate retreats
- Direct access to championship golf courses and pristine beaches

Invest in this exceptional luxury resort and spa and benefit from the strong and consistent demand for high-end accommodations in the highly sought-after Wailea market, one of Hawaii's most desirable luxury destinations.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "1l2m3n4o-5p6q-7r8s-9t0u-1v2w3x4y5z6a", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Industrial Logistics Park", + "state": "FL", + "hasImages": true, + "price": 120000000, + "city": "Jacksonville", + "description": "

Acquire this strategically located industrial logistics park in the rapidly growing Jacksonville market, offering excellent access to major transportation routes and ports. The property features modern warehouse facilities, ample truck courts, and a variety of build-to-suit opportunities for logistics and distribution tenants.

Industrial logistics park features:

- 1,000,000 square feet of modern warehouse space
- 36-foot clear height ceilings with ESFR sprinkler system
- Cross-dock and front-load configurations available
- Ample truck courts and trailer parking
- Build-to-suit opportunities for up to 500,000 square feet
- Prime location near major highways, ports, and intermodal facilities

Invest in this exceptional industrial logistics park and capitalize on the strong demand for high-quality distribution space in the booming Jacksonville industrial market.

", + "type": "102", + "imageOrder": [] + }, + { + "id": "2m3n4o5p-6q7r-8s9t-0u1v-2w3x4y5z6a7b", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Mixed-Use Development Opportunity", + "state": "CO", + "hasImages": true, + "price": 200000000, + "city": "Denver", + "description": "

Acquire this prime mixed-use development opportunity in the vibrant River North Art District (RiNo) of Denver, Colorado. The property offers a rare chance to create a transformative project combining luxury residential, creative office, and destination retail components in one of Denver's most dynamic and rapidly growing neighborhoods.

Mixed-use development opportunity features:

- 5-acre site in the heart of the RiNo Art District
- Zoning allows for up to 1,000,000 square feet of mixed-use development
- Ideal for luxury apartments, creative office space, and destination retail
- Proximity to public transportation, parks, and cultural attractions
- Strong demand for urban living and working environments in RiNo
- Potential for attractive returns on investment and long-term value appreciation

Invest in this exceptional mixed-use development opportunity and create a landmark project in one of Denver's most sought-after and rapidly evolving neighborhoods.

", + "type": "104", + "imageOrder": [] + }, + { + "id": "3n4o5p6q-7r8s-9t0u-1v2w-3x4y5z6a7b8c", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Trophy Office Building", + "state": "DC", + "hasImages": true, + "price": 400000000, + "city": "Washington", + "description": "

Acquire this iconic trophy office building located in the heart of Washington, D.C.'s central business district. The property features a stunning architectural design, premium amenities, and unparalleled views of the nation's capital, offering a prestigious address for top-tier tenants.

Trophy office building features:

- 600,000 square feet of Class A+ office space
- LEED Platinum certification for sustainability and energy efficiency
- Grand lobby with 24/7 concierge and security services
- Rooftop terrace with panoramic views of the Washington Monument and Capitol Building
- Private club with fine dining, fitness center, and conference facilities
- Direct access to multiple Metro lines and nearby amenities

Invest in this exceptional trophy office building and benefit from the strong and stable demand for premier office space in the nation's capital, driven by the presence of government agencies, lobbyists, and prestigious private sector tenants.

", + "type": "103", + "imageOrder": [] + }, + { + "id": "4o5p6q7r-8s9t-0u1v-2w3x-4y5z6a7b8c9d", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Ski Resort and Mountain Lodge", + "state": "UT", + "hasImages": true, + "price": 250000000, + "city": "Park City", + "description": "

Acquire this premier ski resort and mountain lodge located in the heart of Park City, Utah, one of North America's most iconic winter sports destinations. The property features luxurious accommodations, ski-in/ski-out access to world-class ski terrain, and a wide range of upscale amenities, offering an unparalleled mountain resort experience.

Ski resort and mountain lodge features:

- 200 luxurious guest rooms and suites with mountain views
- Direct ski-in/ski-out access to Park City Mountain Resort
- Full-service spa, fitness center, and heated outdoor pool
- Multiple dining options, including a signature fine dining restaurant
- Extensive meeting and event space for weddings and corporate retreats
- Close proximity to historic Main Street and cultural attractions

Invest in this exceptional ski resort and mountain lodge and benefit from the strong and resilient demand for luxury mountain resort experiences in the world-renowned Park City market, attracting visitors from around the globe.

", + "type": "105", + "imageOrder": [] + }, + { + "id": "5p6q7r8s-9t0u-1v2w-3x4y-5z6a7b8c9d0e", + "userId": "", + "listingsCategory": "commercialProperty", + "title": "Waterfront Restaurant and Event Venue", + "state": "MD", + "hasImages": true, + "price": 15000000, + "city": "Annapolis", + "description": "

Acquire this stunning waterfront restaurant and event venue located in the historic district of Annapolis, Maryland, offering breathtaking views of the Chesapeake Bay and Annapolis Harbor. The property features a beautifully restored building, multiple dining areas, and a large outdoor terrace, making it a highly sought-after destination for dining, weddings, and special events.

Waterfront restaurant and event venue features:

- 10,000 square feet of indoor and outdoor dining and event space
- Seating capacity for up to 200 guests
- Expansive waterfront terrace with unobstructed views of the Chesapeake Bay
- Fully equipped commercial kitchen and bar
- Elegantly appointed private dining rooms for intimate gatherings
- Prime location in the heart of Annapolis' historic district

Invest in this exceptional waterfront restaurant and event venue and capitalize on the strong demand for unique dining experiences and memorable event spaces in the charming and historically significant Annapolis market, a popular destination for tourists and locals alike.

", + "type": "100", + "imageOrder": [] + } +] \ No newline at end of file diff --git a/crawler/postgres_business_import.ts b/crawler/postgres_business_import.ts index 52d96d6..aed6984 100644 --- a/crawler/postgres_business_import.ts +++ b/crawler/postgres_business_import.ts @@ -3,6 +3,7 @@ const { Pool } = pkg; import fsextra from 'fs-extra'; const { fstat, readFileSync, writeJsonSync } = fsextra; import { v4 as uuidv4 } from 'uuid'; +import { CommercialPropertyListing, User } from '../common-models/src/main.model'; // PostgreSQL Verbindungskonfiguration const pool = new Pool({ user: 'bizmatch', @@ -39,47 +40,119 @@ interface BusinessListing { created: Date; } -// Funktion zum Einlesen und Importieren von JSON-Daten -async function importJsonData(filePath: string): Promise { - try { - const data: string = readFileSync(filePath, 'utf8'); - const jsonData: BusinessListing[] = JSON.parse(data); // Erwartet ein Array von Objekten - const out: BusinessListing[] =[] - // Daten für jedes Listing in die Datenbank einfügen - for (const listing of jsonData) { - // const uuid = uuidv4(); - // listing.id=uuid; - const values = [ - listing.userId, listing.listingsCategory, listing.title, listing.description, - listing.type, listing.state, listing.city, listing.id, listing.price, listing.salesRevenue, - listing.leasedLocation, listing.established, listing.employees, - listing.reasonForSale, listing.supportAndTraining, listing.cashFlow, listing.brokerLicencing, - listing.internalListingNumber, listing.realEstateIncluded, listing.franchiseResale, - listing.draft, listing.internals, listing.created, new Date(), 0, null - ]; - const json_values = [ - listing.id, listing - ] - - await pool.query(`INSERT INTO businesses - (user_id, listings_category, title, description, type, state, city, id, price, sales_revenue, leased_location, - established, employees, reason_for_sale, support_and_training, cash_flow, broker_licencing, internal_listing_number, - real_estate_included, franchise_resale, draft, internals, created, updated, visits, last_visit) - VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19, $20, $21, $22, $23, $24, $25, $26)`, values); - - await pool.query('INSERT INTO businesses_json (id, data) VALUES ($1,$2)', json_values); - - // out.push(listing); - } - writeJsonSync('./data/businesses_.json',out); - console.log('All data imported successfully.'); - } catch (err) { - console.error('Error importing data:', err.message); - } finally { - // Schließen der Verbindung zum Pool - await pool.end(); +async function importBusinesses() { + const filePath = './data/businesses.json' + const data: string = readFileSync(filePath, 'utf8'); + const jsonData: BusinessListing[]|any = JSON.parse(data); // Erwartet ein Array von Objekten + await pool.query('drop table if exists businesses'); + await pool.query(`CREATE TABLE businesses ( + id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), + created TIMESTAMP, + updated TIMESTAMP, + visits INTEGER, + last_visit TIMESTAMP, + data jsonb + );`); + for (const listing of jsonData) { + const created = listing.created + delete listing.created; + delete listing.id; + delete listing.temporary + const json_values = [ + created, new Date(), 0, null, listing + ] + + await pool.query('INSERT INTO businesses (created, updated, visits, last_visit, data) VALUES ($1,$2,$3,$4,$5)', json_values); } + console.log('All data imported successfully.'); +} + +async function importUser() { + const filePath = './data/broker.json' + const data: string = readFileSync(filePath, 'utf8'); + const jsonData: User[] = JSON.parse(data); // Erwartet ein Array von Objekten + await pool.query('drop table if exists users'); + await pool.query(`CREATE TABLE users ( + id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), + created TIMESTAMP, + updated TIMESTAMP, + visits INTEGER, + last_visit TIMESTAMP, + data jsonb + );`); + for (const user of jsonData) { + delete user.id; + user.hasCompanyLogo=false; + user.hasProfile=false; + const json_values = [ + getRandomDateLastYear(), new Date(), 0, null, user + ] + + await pool.query('INSERT INTO users (created, updated, visits, last_visit, data) VALUES ($1,$2,$3,$4,$5)', json_values); + } + console.log('All data imported successfully.'); +} + +async function importCommercials() { + const filePath = './data/commercials.json' + const data: string = readFileSync(filePath, 'utf8'); + const jsonData: CommercialPropertyListing[]|any = JSON.parse(data); // Erwartet ein Array von Objekten + await pool.query('drop table if exists commercials'); + await pool.query(`CREATE TABLE commercials ( + id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), + created TIMESTAMP, + updated TIMESTAMP, + visits INTEGER, + last_visit TIMESTAMP, + data jsonb + );`); + for (const commercial of jsonData) { + commercial.hasImages=false; + commercial.imagePath=commercial.id; + delete commercial.id; + delete commercial.temporary; + const json_values = [ + getRandomDateLastYear(), new Date(), 0, null, commercial + ] + + await pool.query('INSERT INTO commercials (created, updated, visits, last_visit, data) VALUES ($1,$2,$3,$4,$5)', json_values); + } + console.log('All data imported successfully.'); +} + +function idUpdate(jsonData) { + const out: BusinessListing[] = [] + for (const listing of jsonData) { + + const uuid = uuidv4(); + listing.id = uuid; + out.push(listing); + } + writeJsonSync('./data/businesses_.json', out); + console.log('All data updated sucessfully.'); +} + +function getRandomDateLastYear(): Date { + const today = new Date(); + const lastYear = new Date(today.getFullYear() - 1, today.getMonth(), today.getDate()); + + // Generiere eine zufällige Zahl zwischen 0 und der Anzahl der Millisekunden in einem Jahr + const randomTime = Math.random() * (today.getTime() - lastYear.getTime()); + + // Erstelle ein neues Datum basierend auf dieser zufälligen Zeit + const randomDate = new Date(lastYear.getTime() + randomTime); + return randomDate; } // Passen Sie den Dateipfad an Ihre spezifischen Bedürfnisse an -importJsonData('./data/businesses_.json'); +try { + await importBusinesses(); + await importUser(); + await importCommercials(); +} catch (err) { + console.error('Error importing data:', err.message); +} finally { + // Schließen der Verbindung zum Pool + await pool.end(); +} + diff --git a/crawler/tsconfig.json b/crawler/tsconfig.json index 684a21e..7467a51 100644 --- a/crawler/tsconfig.json +++ b/crawler/tsconfig.json @@ -11,7 +11,7 @@ // "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */ /* Language and Environment */ - "target": "ES2017", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + "target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ // "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */ // "jsx": "preserve", /* Specify what JSX code is generated. */ // "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */