From 7d10080069b6bf06959e8d70f4833681790a58c7 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Sun, 14 Apr 2024 22:52:19 +0200 Subject: [PATCH] Start Umbau zu postgres --- bizmatch-server/package.json | 3 + bizmatch-server/src/app.module.ts | 14 +- .../src/drizzle/businesses_json.model.ts | 12 + bizmatch-server/src/drizzle/drizzle.module.ts | 27 + bizmatch-server/src/drizzle/schema.ts | 15 + bizmatch-server/src/image/image.controller.ts | 24 +- .../listings/business-listings.controller.ts | 41 +- ...commercial-property-listings.controller.ts | 62 +- .../src/listings/listings.module.ts | 10 +- .../src/listings/listings.service.ts | 335 +- .../listings/unknown-listings.controller.ts | 26 +- bizmatch-server/src/redis/redis.module.ts | 33 +- .../request-duration.middleware.ts | 16 + bizmatch-server/src/user/user.service.ts | 6 +- .../pages/listings/listings.component.html | 2 +- .../app/pages/listings/listings.component.ts | 15 +- common-models/src/main.model.ts | 4 + crawler/data/businesses.json | 4977 ++++++++++++++++- crawler/data/businesses_.json | 1 + crawler/package.json | 5 +- crawler/postgres_business_import.ts | 85 + 21 files changed, 5441 insertions(+), 272 deletions(-) create mode 100644 bizmatch-server/src/drizzle/businesses_json.model.ts create mode 100644 bizmatch-server/src/drizzle/drizzle.module.ts create mode 100644 bizmatch-server/src/drizzle/schema.ts create mode 100644 bizmatch-server/src/request-duration/request-duration.middleware.ts create mode 100644 crawler/data/businesses_.json create mode 100644 crawler/postgres_business_import.ts diff --git a/bizmatch-server/package.json b/bizmatch-server/package.json index dc37ce7..5c38a36 100644 --- a/bizmatch-server/package.json +++ b/bizmatch-server/package.json @@ -29,6 +29,7 @@ "@nestjs/passport": "^10.0.3", "@nestjs/platform-express": "^10.0.0", "@nestjs/serve-static": "^4.0.1", + "drizzle-orm": "^0.30.8", "handlebars": "^4.7.8", "ky": "^1.2.0", "nest-winston": "^1.9.4", @@ -38,6 +39,7 @@ "passport-google-oauth20": "^2.0.0", "passport-jwt": "^4.0.1", "passport-local": "^1.0.0", + "pg": "^8.11.5", "redis": "^4.6.13", "redis-om": "^0.4.3", "reflect-metadata": "^0.2.0", @@ -58,6 +60,7 @@ "@types/passport-google-oauth20": "^2.0.14", "@types/passport-jwt": "^4.0.1", "@types/passport-local": "^1.0.38", + "@types/pg": "^8.11.5", "@types/supertest": "^6.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", diff --git a/bizmatch-server/src/app.module.ts b/bizmatch-server/src/app.module.ts index 966f4a3..de87d90 100644 --- a/bizmatch-server/src/app.module.ts +++ b/bizmatch-server/src/app.module.ts @@ -1,4 +1,4 @@ -import { Module } from '@nestjs/common'; +import { MiddlewareConsumer, Module } from '@nestjs/common'; import { AppController } from './app.controller.js'; import { AppService } from './app.service.js'; import { FileService } from './file/file.service.js'; @@ -23,11 +23,13 @@ import { ListingsModule } from './listings/listings.module.js'; import { SelectOptionsModule } from './select-options/select-options.module.js'; import { CommercialPropertyListingsController } from './listings/commercial-property-listings.controller.js'; import { ImageModule } from './image/image.module.js'; +import { RequestDurationMiddleware } from './request-duration/request-duration.middleware.js'; + const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); @Module({ - imports: [ConfigModule.forRoot(), MailModule, AuthModule, + imports: [ConfigModule.forRoot({isGlobal: true}), MailModule, AuthModule, ServeStaticModule.forRoot({ rootPath: join(__dirname, '..', 'pictures'), // `public` ist das Verzeichnis, wo Ihre statischen Dateien liegen }), @@ -52,9 +54,13 @@ const __dirname = path.dirname(__filename); ListingsModule, SelectOptionsModule, RedisModule, - ImageModule + ImageModule, ], controllers: [AppController, SubscriptionsController], providers: [AppService, FileService], }) -export class AppModule {} +export class AppModule { + configure(consumer: MiddlewareConsumer) { + consumer.apply(RequestDurationMiddleware).forRoutes('*'); + } +} diff --git a/bizmatch-server/src/drizzle/businesses_json.model.ts b/bizmatch-server/src/drizzle/businesses_json.model.ts new file mode 100644 index 0000000..f0386f1 --- /dev/null +++ b/bizmatch-server/src/drizzle/businesses_json.model.ts @@ -0,0 +1,12 @@ +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 new file mode 100644 index 0000000..1ad037d --- /dev/null +++ b/bizmatch-server/src/drizzle/drizzle.module.ts @@ -0,0 +1,27 @@ +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 { ConfigService } from '@nestjs/config'; +import { jsonb, varchar } from 'drizzle-orm/pg-core'; +import { PG_CONNECTION } from './schema.js'; +@Module({ + providers: [ + { + provide: PG_CONNECTION, + inject: [ConfigService], + useFactory: async (configService: ConfigService) => { + const connectionString = configService.get('DATABASE_URL'); + const pool = new Pool({ + connectionString, + // ssl: true, + }); + + return drizzle(pool, { schema }); + }, + }, + ], + exports: [PG_CONNECTION], +}) +export class DrizzleModule {} diff --git a/bizmatch-server/src/drizzle/schema.ts b/bizmatch-server/src/drizzle/schema.ts new file mode 100644 index 0000000..db1a4a1 --- /dev/null +++ b/bizmatch-server/src/drizzle/schema.ts @@ -0,0 +1,15 @@ +import { integer, serial, text, pgTable } from 'drizzle-orm/pg-core'; +import { relations } from 'drizzle-orm'; +import { jsonb, varchar } from 'drizzle-orm/pg-core'; + +export const PG_CONNECTION = 'PG_CONNECTION'; + +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/image/image.controller.ts b/bizmatch-server/src/image/image.controller.ts index 12a9232..c7531ff 100644 --- a/bizmatch-server/src/image/image.controller.ts +++ b/bizmatch-server/src/image/image.controller.ts @@ -21,7 +21,7 @@ export class ImageController { @UseInterceptors(FileInterceptor('file'),) async uploadPropertyPicture(@UploadedFile() file: Express.Multer.File,@Param('id') id:string) { const imagename = await this.fileService.storePropertyPicture(file,id); - await this.listingService.addImage(id,imagename); + // await this.listingService.addImage(id,imagename); } @Post('uploadProfile/:id') @@ -38,16 +38,16 @@ export class ImageController { @Get(':id') async getPropertyImagesById(@Param('id') id:string): Promise { - const result = await this.listingService.getCommercialPropertyListingById(id); - const listing = result as CommercialPropertyListing; - if (listing.imageOrder){ - return listing.imageOrder - } else { - const imageOrder = await this.fileService.getPropertyImages(id); - listing.imageOrder=imageOrder; - this.listingService.saveListing(listing); - return imageOrder; - } + // const result = await this.listingService.getCommercialPropertyListingById(id); + // const listing = result as CommercialPropertyListing; + // if (listing.imageOrder){ + // return listing.imageOrder + // } else { + // const imageOrder = await this.fileService.getPropertyImages(id); + // listing.imageOrder=imageOrder; + // this.listingService.saveListing(listing); + // return imageOrder; + // } } @Get('profileImages/:userids') async getProfileImagesForUsers(@Param('userids') userids:string): Promise { @@ -61,7 +61,7 @@ export class ImageController { @Delete('propertyPicture/:listingid/:imagename') async deletePropertyImagesById(@Param('listingid') listingid:string,@Param('imagename') imagename:string): Promise { this.fileService.deleteImage(`pictures/property/${listingid}/${imagename}`); - await this.listingService.deleteImage(listingid,imagename); + // await this.listingService.deleteImage(listingid,imagename); } @Delete('logo/:userid/') async deleteLogoImagesById(@Param('id') id:string): Promise { diff --git a/bizmatch-server/src/listings/business-listings.controller.ts b/bizmatch-server/src/listings/business-listings.controller.ts index 02a7c57..494a5ff 100644 --- a/bizmatch-server/src/listings/business-listings.controller.ts +++ b/bizmatch-server/src/listings/business-listings.controller.ts @@ -4,51 +4,52 @@ 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'; @Controller('listings/business') export class BusinessListingsController { - constructor(private readonly listingsService:ListingsService,@Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger) { + constructor(private readonly listingsService:ListingsService, + @Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger) { } @Get() findAll(): any { - return this.listingsService.getAllBusinessListings(); + this.logger.info(`start findAll Listing`); + return this.listingsService.findListings(); } @Get(':id') findById(@Param('id') id:string): any { - return this.listingsService.getBusinessListingById(id); + return this.listingsService.findById(id); } @Get('user/:userid') findByUserId(@Param('userid') userid:string): any { - return this.listingsService.getBusinessListingByUserId(userid); + return this.listingsService.findByUserId(userid); } @Post('search') - find(@Body() criteria: any): any { - return this.listingsService.findBusinessListings(criteria); + find(@Body() criteria: ListingCriteria): any { + return this.listingsService.findByState(criteria.state); } - /** - * @param listing creates a new listing - */ @Post() - save(@Body() listing: any){ + create(@Body() listing: any){ this.logger.info(`Save Listing`); - this.listingsService.saveListing(listing) + this.listingsService.createListing(listing) + } + @Put() + update(@Body() listing: any){ + this.logger.info(`Save Listing`); + this.listingsService.updateListing(listing.id,listing) } - - /** - * @param id deletes a listing - */ @Delete(':id') deleteById(@Param('id') id:string){ - this.listingsService.deleteBusinessListing(id) + this.listingsService.deleteListing(id) } - @Delete('deleteAll') - deleteAll(){ - this.listingsService.deleteAllBusinessListings() - } + // @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 6793eec..f7223c2 100644 --- a/bizmatch-server/src/listings/commercial-property-listings.controller.ts +++ b/bizmatch-server/src/listings/commercial-property-listings.controller.ts @@ -13,39 +13,39 @@ export class CommercialPropertyListingsController { } - @Get(':id') - findById(@Param('id') id:string): any { - return this.listingsService.getCommercialPropertyListingById(id); - } + // @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); - } + // @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) - } + // @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() - } + // /** + // * @param id deletes a listing + // */ + // @Delete(':id') + // deleteById(@Param('id') id:string){ + // this.listingsService.deleteCommercialPropertyListing(id) + // } + // @Delete('deleteAll') + // deleteAll(){ + // this.listingsService.deleteAllcommercialListings() + // } } diff --git a/bizmatch-server/src/listings/listings.module.ts b/bizmatch-server/src/listings/listings.module.ts index bb9815d..a80fde2 100644 --- a/bizmatch-server/src/listings/listings.module.ts +++ b/bizmatch-server/src/listings/listings.module.ts @@ -1,4 +1,4 @@ -import { Module } from '@nestjs/common'; +import { Injectable, Module, OnModuleInit } from '@nestjs/common'; import { BusinessListingsController } from './business-listings.controller.js'; import { ListingsService } from './listings.service.js'; import { CommercialPropertyListingsController } from './commercial-property-listings.controller.js'; @@ -8,9 +8,15 @@ import { UnknownListingsController } from './unknown-listings.controller.js'; import { UserModule } from '../user/user.module.js'; 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'; + @Module({ - imports: [RedisModule], + imports: [RedisModule,DrizzleModule + ], controllers: [BusinessListingsController, CommercialPropertyListingsController,UnknownListingsController,BrokerListingsController], providers: [ListingsService,FileService,UserService], exports: [ListingsService], diff --git a/bizmatch-server/src/listings/listings.service.ts b/bizmatch-server/src/listings/listings.service.ts index 39f49a4..2ba1d1a 100644 --- a/bizmatch-server/src/listings/listings.service.ts +++ b/bizmatch-server/src/listings/listings.service.ts @@ -10,177 +10,186 @@ import { import { convertStringToNullUndefined } from '../utils.js'; import { WINSTON_MODULE_PROVIDER } from 'nest-winston'; import { Logger } from 'winston'; -import { EntityData, EntityId, Repository, Schema, SchemaDefinition } from 'redis-om'; -import { REDIS_CLIENT } from '../redis/redis.module.js'; +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 { NodePgDatabase } from 'drizzle-orm/node-postgres'; +import * as schema from '../drizzle/schema.js'; @Injectable() export class ListingsService { - schemaNameBusiness:ListingCategory={name:'business'} - schemaNameCommercial:ListingCategory={name:'commercialProperty'} - businessListingRepository:Repository; - commercialPropertyListingRepository:Repository; - baseListingSchemaDef : SchemaDefinition = { - id: { type: 'string' }, - userId: { type: 'string' }, - listingsCategory: { type: 'string' }, - title: { type: 'string' }, - description: { type: 'string' }, - country: { type: 'string' }, - state:{ type: 'string' }, - city:{ type: 'string' }, - zipCode: { type: 'number' }, - type: { type: 'string' }, - price: { type: 'number' }, - favoritesForUser:{ type: 'string[]' }, - hideImage:{ type: 'boolean' }, - draft:{ type: 'boolean' }, - created:{ type: 'date' }, - updated:{ type: 'date' } - } - businessListingSchemaDef : SchemaDefinition = { - ...this.baseListingSchemaDef, - salesRevenue: { type: 'number' }, - cashFlow: { type: 'number' }, - employees: { type: 'number' }, - established: { type: 'number' }, - internalListingNumber: { type: 'number' }, - realEstateIncluded:{ type: 'boolean' }, - leasedLocation:{ type: 'boolean' }, - franchiseResale:{ type: 'boolean' }, - supportAndTraining: { type: 'string' }, - reasonForSale: { type: 'string' }, - brokerLicencing: { type: 'string' }, - internals: { type: 'string' }, - } - commercialPropertyListingSchemaDef : SchemaDefinition = { - ...this.baseListingSchemaDef, - imageNames:{ type: 'string[]' }, - } - businessListingSchema = new Schema(this.schemaNameBusiness.name,this.businessListingSchemaDef, { - dataStructure: 'JSON' - }) - commercialPropertyListingSchema = new Schema(this.schemaNameCommercial.name,this.commercialPropertyListingSchemaDef, { - dataStructure: 'JSON' - }) - constructor(@Inject(REDIS_CLIENT) private readonly redis: any, @Inject(WINSTON_MODULE_PROVIDER) private readonly logger: Logger){ - this.businessListingRepository = new Repository(this.businessListingSchema, redis); - this.commercialPropertyListingRepository = new Repository(this.commercialPropertyListingSchema, redis) - this.businessListingRepository.createIndex(); - this.commercialPropertyListingRepository.createIndex(); - } - 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; - } - async getBusinessListingById(id: string) { - return await this.businessListingRepository.fetch(id) - } - async getBusinessListingByUserId(userid:string){ - return await this.businessListingRepository.search().where('userId').equals(userid).return.all() - } - async deleteBusinessListing(id: string){ - return await this.businessListingRepository.remove(id); - } - async deleteCommercialPropertyListing(id: string){ - return await this.commercialPropertyListingRepository.remove(id); - } - async getAllBusinessListings(start?: number, end?: number) { - return await this.businessListingRepository.search().return.all() - } - async getAllCommercialListings(start?: number, end?: number) { - return await this.commercialPropertyListingRepository.search().return.all() - } - async findBusinessListings(criteria:ListingCriteria): Promise { - // let listings = await this.getAllBusinessListings(); - // return this.find(criteria,listings); - this.logger.info(`start findBusinessListings: ${JSON.stringify(criteria)}`); - const result = await this.redis.ft.search('business:index','*',{LIMIT:{from:0,size:50}}); - this.logger.info(`start findBusinessListings: ${JSON.stringify(criteria)}`); - return result.documents; - } - async findCommercialPropertyListings(criteria:ListingCriteria): Promise { - let listings = await this.getAllCommercialListings(); - return this.find(criteria,listings); - } - async deleteAllBusinessListings(){ - const ids = await this.getIdsForRepo(this.schemaNameBusiness.name); - this.businessListingRepository.remove(ids); - } - async deleteAllcommercialListings(){ - const ids = await this.getIdsForRepo(this.schemaNameCommercial.name); - this.commercialPropertyListingRepository.remove(ids); - } - async getIdsForRepo(repoName:string, maxcount=100000){ - let cursor = 0; - let ids = []; - do { - const reply = await this.redis.scan(cursor, { - MATCH: `${repoName}:*`, - COUNT: maxcount - }); - cursor = reply.cursor; - // Extrahiere die ID aus jedem Schlüssel und füge sie zur Liste hinzu - ids = ids.concat(reply.keys.map(key => key.split(':')[1]).filter(id=>id!='index')); - } while (cursor !== 0); - return ids; + + 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(); } - async find(criteria:ListingCriteria, listings: any[]): Promise { - listings=listings.filter(l=>l.listingsCategory===criteria.listingsCategory); - if (convertStringToNullUndefined(criteria.type)){ - console.log(criteria.type); - listings=listings.filter(l=>l.type===criteria.type); - } - if (convertStringToNullUndefined(criteria.state)){ - console.log(criteria.state); - listings=listings.filter(l=>l.state===criteria.state); - } - if (convertStringToNullUndefined(criteria.minPrice)){ - console.log(criteria.minPrice); - listings=listings.filter(l=>l.price>=Number(criteria.minPrice)); - } - if (convertStringToNullUndefined(criteria.maxPrice)){ - console.log(criteria.maxPrice); - listings=listings.filter(l=>l.price<=Number(criteria.maxPrice)); - } - if (convertStringToNullUndefined(criteria.realEstateChecked)){ - console.log(criteria.realEstateChecked); - listings=listings.filter(l=>l.realEstateIncluded); - } - if (convertStringToNullUndefined(criteria.category)){ - console.log(criteria.category); - listings=listings.filter(l=>l.category===criteria.category); - } - return listings + // ############################################################## + // ############################################################## + async createListing(newListing: { id: string; data: BusinessesJson }): Promise { + const [createdListing] = await this.conn.insert(businesses_json).values(newListing).returning(); + return createdListing as BusinessesJson; } - async updateImageOrder(id:string,imageOrder: ImageProperty[]){ - const listing = await this.getCommercialPropertyListingById(id) as unknown as CommercialPropertyListing - listing.imageOrder=imageOrder; - this.saveListing(listing); + async updateListing(id: string, data: BusinessListing): Promise { + const [updateListing] = await this.conn.update(businesses_json).set(data).where(eq(businesses_json.id, id)).returning(); + return updateListing as BusinessesJson; } - 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 deleteListing(id: string): Promise { + await this.conn.delete(businesses_json).where(eq(businesses_json.id, id)); } - 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); + + async findByPriceRange(minPrice: number, maxPrice: number): Promise { + return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'price' BETWEEN ${minPrice} AND ${maxPrice}`); } + + async findByState(state: string): Promise { + return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'state' = ${state}`); + } + async findById(id: string): Promise { + return this.conn.select().from(businesses_json).where(sql`${businesses_json.id} = ${id}`); + } + async findByUserId(userId: string): Promise { + return this.conn.select().from(businesses_json).where(sql`${businesses_json.data}->>'userId' = ${userId}`); + } + // 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; + // } + // async getBusinessListingById(id: string) { + // return await this.businessListingRepository.fetch(id) + // } + // async getBusinessListingByUserId(userid:string){ + // return await this.businessListingRepository.search().where('userId').equals(userid).return.all() + // } + // async deleteBusinessListing(id: string){ + // return await this.businessListingRepository.remove(id); + // } + // async deleteCommercialPropertyListing(id: string){ + // return await this.commercialPropertyListingRepository.remove(id); + // } + // async getAllBusinessListings(start?: number, end?: number) { + // return await this.businessListingRepository.search().return.all() + // } + // async getAllCommercialListings(start?: number, end?: number) { + // return await this.commercialPropertyListingRepository.search().return.all() + // } + // async findBusinessListings(criteria:ListingCriteria): Promise { + // // let listings = await this.getAllBusinessListings(); + // // return this.find(criteria,listings); + // const from=criteria.start?criteria.start:0 + // const size=criteria.length?criteria.length:24 + // this.logger.info(`start findBusinessListings: ${JSON.stringify(criteria)}`); + // const result = await this.redis.ft.search('business:index','*',{LIMIT:{from,size}}); + // this.logger.info(`start findBusinessListings: ${JSON.stringify(criteria)}`); + // return result + // } + // async findCommercialPropertyListings(criteria:ListingCriteria): Promise { + // let listings = await this.getAllCommercialListings(); + // return this.find(criteria,listings); + // } + // async deleteAllBusinessListings(){ + // const ids = await this.getIdsForRepo(this.schemaNameBusiness.name); + // this.businessListingRepository.remove(ids); + // } + // async deleteAllcommercialListings(){ + // const ids = await this.getIdsForRepo(this.schemaNameCommercial.name); + // this.commercialPropertyListingRepository.remove(ids); + // } + // async getIdsForRepo(repoName:string, maxcount=100000){ + // let cursor = 0; + // let ids = []; + // do { + // const reply = await this.redis.scan(cursor, { + // MATCH: `${repoName}:*`, + // COUNT: maxcount + // }); + // cursor = reply.cursor; + // // Extrahiere die ID aus jedem Schlüssel und füge sie zur Liste hinzu + // ids = ids.concat(reply.keys.map(key => key.split(':')[1]).filter(id=>id!='index')); + // } while (cursor !== 0); + // return ids; + // } + + // async find(criteria:ListingCriteria, listings: any[]): Promise { + // listings=listings.filter(l=>l.listingsCategory===criteria.listingsCategory); + // if (convertStringToNullUndefined(criteria.type)){ + // console.log(criteria.type); + // listings=listings.filter(l=>l.type===criteria.type); + // } + // if (convertStringToNullUndefined(criteria.state)){ + // console.log(criteria.state); + // listings=listings.filter(l=>l.state===criteria.state); + // } + // if (convertStringToNullUndefined(criteria.minPrice)){ + // console.log(criteria.minPrice); + // listings=listings.filter(l=>l.price>=Number(criteria.minPrice)); + // } + // if (convertStringToNullUndefined(criteria.maxPrice)){ + // console.log(criteria.maxPrice); + // listings=listings.filter(l=>l.price<=Number(criteria.maxPrice)); + // } + // if (convertStringToNullUndefined(criteria.realEstateChecked)){ + // console.log(criteria.realEstateChecked); + // listings=listings.filter(l=>l.realEstateIncluded); + // } + // if (convertStringToNullUndefined(criteria.category)){ + // console.log(criteria.category); + // listings=listings.filter(l=>l.category===criteria.category); + // } + // 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 3020d8d..9e91dd5 100644 --- a/bizmatch-server/src/listings/unknown-listings.controller.ts +++ b/bizmatch-server/src/listings/unknown-listings.controller.ts @@ -12,18 +12,18 @@ export class UnknownListingsController { } - @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); - } + // @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-server/src/redis/redis.module.ts b/bizmatch-server/src/redis/redis.module.ts index e665ce8..761809a 100644 --- a/bizmatch-server/src/redis/redis.module.ts +++ b/bizmatch-server/src/redis/redis.module.ts @@ -3,22 +3,23 @@ import { Module } from '@nestjs/common'; @Module({ providers: [ - { - provide: 'REDIS_OPTIONS', - useValue: { - url: 'redis://localhost:6379' - } - }, - { - inject: ['REDIS_OPTIONS'], - provide: 'REDIS_CLIENT', - useFactory: async (options: { url: string }) => { - const client = createClient(options); - await client.connect(); - return client; - } - }], - exports:['REDIS_CLIENT'] + // { + // provide: 'REDIS_OPTIONS', + // useValue: { + // url: 'redis://localhost:6379' + // } + // }, + // { + // inject: ['REDIS_OPTIONS'], + // provide: 'REDIS_CLIENT', + // useFactory: async (options: { url: string }) => { + // const client = createClient(options); + // await client.connect(); + // return client; + // } + // } + ], + // exports:['REDIS_CLIENT'] }) export class RedisModule {} export const REDIS_CLIENT = "REDIS_CLIENT"; diff --git a/bizmatch-server/src/request-duration/request-duration.middleware.ts b/bizmatch-server/src/request-duration/request-duration.middleware.ts new file mode 100644 index 0000000..00f2c81 --- /dev/null +++ b/bizmatch-server/src/request-duration/request-duration.middleware.ts @@ -0,0 +1,16 @@ +import { Injectable, NestMiddleware, Logger } from '@nestjs/common'; +import { Request, Response, NextFunction } from 'express'; + +@Injectable() +export class RequestDurationMiddleware implements NestMiddleware { + private readonly logger = new Logger(RequestDurationMiddleware.name); + + use(req: Request, res: Response, next: NextFunction) { + const start = Date.now(); + res.on('finish', () => { + const duration = Date.now() - start; + this.logger.log(`${req.method} ${req.url} - ${duration}ms`); + }); + next(); + } +} diff --git a/bizmatch-server/src/user/user.service.ts b/bizmatch-server/src/user/user.service.ts index 2cda06f..036225b 100644 --- a/bizmatch-server/src/user/user.service.ts +++ b/bizmatch-server/src/user/user.service.ts @@ -25,9 +25,9 @@ export class UserService { }, { dataStructure: 'JSON' }) - constructor(@Inject(REDIS_CLIENT) private readonly redis: any,private fileService:FileService){ - this.userRepository = new Repository(this.userSchema, redis) - this.userRepository.createIndex(); + constructor(private fileService:FileService){ + // this.userRepository = new Repository(this.userSchema, redis) + // this.userRepository.createIndex(); } async getUserById( id:string){ const user = await this.userRepository.fetch(id) as UserEntity; diff --git a/bizmatch/src/app/pages/listings/listings.component.html b/bizmatch/src/app/pages/listings/listings.component.html index 6c9cc27..5c51808 100644 --- a/bizmatch/src/app/pages/listings/listings.component.html +++ b/bizmatch/src/app/pages/listings/listings.component.html @@ -56,7 +56,7 @@
- @for (listing of filteredListings; track listing.id) { + @for (listing of listings; track listing.id) {
diff --git a/bizmatch/src/app/pages/listings/listings.component.ts b/bizmatch/src/app/pages/listings/listings.component.ts index b04cb6a..edfadb0 100644 --- a/bizmatch/src/app/pages/listings/listings.component.ts +++ b/bizmatch/src/app/pages/listings/listings.component.ts @@ -73,10 +73,11 @@ export class ListingsComponent { if (this.category==='business' || this.category==='commercialProperty'){ this.users=[] this.listings=await this.listingsService.getListings(this.criteria); + this.setStates(); - this.filteredListings=[...this.listings]; + //this.filteredListings=[...this.listings]; this.totalRecords=this.listings.length - this.filteredListings=[...this.listings].splice(this.first,this.rows); + //this.filteredListings=[...this.listings].splice(this.first,this.rows); this.cdRef.markForCheck(); this.cdRef.detectChanges(); } else { @@ -112,9 +113,13 @@ export class ListingsComponent { this.cdRef.detectChanges(); } onPageChange(event: any) { - this.first = event.first; - this.rows = event.rows; - this.filteredListings=[...this.listings].splice(this.first,this.rows); + //this.first = event.first; + //this.rows = event.rows; + //this.filteredListings=[...this.listings].splice(this.first,this.rows); + this.criteria.start=event.first; + this.criteria.length=event.rows; + this.criteria.page=event.page; + this.criteria.pageCount=event.pageCount; } imageErrorHandler(listing: ListingType) { listing.hideImage = true; // Bild ausblenden, wenn es nicht geladen werden kann diff --git a/common-models/src/main.model.ts b/common-models/src/main.model.ts index e800c8a..7b42de2 100644 --- a/common-models/src/main.model.ts +++ b/common-models/src/main.model.ts @@ -68,6 +68,10 @@ export type ListingType = | CommercialPropertyListing; export interface ListingCriteria { + start:number, + length:number, + page:number, + pageCount:number, type:string, state:string, minPrice:string, diff --git a/crawler/data/businesses.json b/crawler/data/businesses.json index 3c0e8f4..35d2cca 100644 --- a/crawler/data/businesses.json +++ b/crawler/data/businesses.json @@ -161,7 +161,7 @@ "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", + "state": "TX", "city": "N/A", "id": "07HRPPQYPJ6BMXS44WP8G7THB7", "price": 200000, @@ -5014,5 +5014,4980 @@ "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": "6c2044b5-7f8a-4c6a-9b1a-1f8912e1a2d7", + "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": "ad9e4d5c-d5a5-4b5c-9c5d-5a4b3c2d1e0f", + "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": "8f7e6d5c-4b3a-2c1d-0e9f-8g7h6i5j4k3l", + "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": "2m1n0o9p-8q7r-6s5t-4u3v-2w1x0y9z8a7", + "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": "6b5c4d3e-2f1g-0h9i-8j7k-6l5m4n3o2p1", + "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": "0q9r8s7t-6u5v-4w3x-2y1z-0a9b8c7d6e5", + "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": "4f3g2h1i-0j9k-8l7m-6n5o-4p3q2r1s0t9", + "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": "8u7v6w5x-4y3z-2a1b-0c9d-8e7f6g5h4i3", + "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": "2j1k0l9m-8n7o-6p5q-4r3s-2t1u0v9w8x7", + "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": "6y5z4a3b-2c1d-0e9f-8g7h-6i5j4k3l2m1", + "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": "0n9o8p7q-6r5s-4t3u-2v1w-0x9y8z7a6b5", + "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": "4c3d2e1f-0g9h-8i7j-6k5l-4m3n2o1p0q9", + "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": "8r7s6t5u-4v3w-2x1y-0z9a-8b7c6d5e4f3", + "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": "2g1h0i9j-8k7l-6m5n-4o3p-2q1r0s9t8u7", + "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": "6v5w4x3y-2z1a-0b9c-8d7e-6f5g4h3i2j1", + "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": "0k9l8m7n-6o5p-4q3r-2s1t-0u9v8w7x6y5", + "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": "4z3a2b1c-0d9e-8f7g-6h5i-4j3k2l1m0n9", + "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": "8o7p6q5r-4s3t-2u1v-0w9x-8y7z6a5b4c3", + "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": "2d1e0f9g-8h7i-6j5k-4l3m-2n1o0p9q8r7", + "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": "6s5t4u3v-2w1x-0y9z-8a7b-6c5d4e3f2g1", + "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": "0h9i8j7k-6l5m-4n3o-2p1q-0r9s8t7u6v5", + "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": "4w3x2y1z-0a9b-8c7d-6e5f-4g3h2i1j0k9", + "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": "8l7m6n5o-4p3q-2r1s-0t9u-8v7w6x5y4z3", + "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": "2a1b0c9d-8e7f-6g5h-4i3j-2k1l0m9n8o7", + "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": "6p5q4r3s-2t1u-0v9w-8x7y-6z5a4b3c2d1", + "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": "0e9f8g7h-6i5j-4k3l-2m1n-0o9p8q7r6s5", + "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": "4t3u2v1w-0x9y-8z7a-6b5c-4d3e2f1g0h9", + "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": "8i7j6k5l-4m3n-2o1p-0q9r-8s7t6u5v4w3", + "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": "2x1y0z9a-8b7c-6d5e-4f3g-2h1i0j9k8l7", + "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": "6m5n4o3p-2q1r-0s9t-8u7v-6w5x4y3z2a1", + "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": "0b9c8d7e-6f5g-4h3i-2j1k-0l9m8n7o6p5", + "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": "4q3r2s1t-0u9v-8w7x-6y5z-4a3b2c1d0e9", + "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": "8f7g6h5i-4j3k-2l1m-0n9o-8p7q6r5s4t3", + "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": "2u1v0w9x-8y7z-6a5b-4c3d-2e1f0g9h8i7", + "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": "6j5k4l3m-2n1o-0p9q-8r7s-6t5u4v3w2x1", + "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": "0y9z8a7b-6c5d-4e3f-2g1h-0i9j8k7l6m5", + "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": "4n3o2p1q-0r9s-8t7u-6v5w-4x3y2z1a0b9", + "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": "8c7d6e5f-4g3h-2i1j-0k9l-8m7n6o5p4q3", + "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": "2r1s0t9u-8v7w-6x5y-4z3a-2b1c0d9e8f7", + "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": "6g5h4i3j-2k1l-0m9n-8o7p-6q5r4s3t2u1", + "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": "0v9w8x7y-6z5a-4b3c-2d1e-0f9g8h7i6j5", + "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": "4k3l2m1n-0o9p-8q7r-6s5t-4u3v2w1x0y9", + "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": "8z7a6b5c-4d3e-2f1g-0h9i-8j7k6l5m4n3", + "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": "2o1p0q9r-8s7t-6u5v-4w3x-2y1z0a9b8c7", + "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": "6d5e4f3g-2h1i-0j9k-8l7m-6n5o4p3q2r1", + "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": "0s9t8u7v-6w5x-4y3z-2a1b-0c9d8e7f6g5", + "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": "4h3i2j1k-0l9m-8n7o-6p5q-4r3s2t1u0v9", + "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": "8w7x6y5z-4a3b-2c1d-0e9f-8g7h6i5j4k3", + "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": "2l1m0n9o-8p7q-6r5s-4t3u-2v1w0x9y8z7", + "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": "6a5b4c3d-2e1f-0g9h-8i7j-6k5l4m3n2o1", + "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": "0p9q8r7s-6t5u-4v3w-2x1y-0z9a8b7c6d5", + "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": "4e3f2g1h-0i9j-8k7l-6m5n-4o3p2q1r0s9", + "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": "8t7u6v5w-4x3y-2z1a-0b9c-8d7e6f5g4h3", + "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": "2i1j0k9l-8m7n-6o5p-4q3r-2s1t0u9v8w7", + "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": "6x5y4z3a-2b1c-0d9e-8f7g-6h5i4j3k2l1", + "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": "0m9n8o7p-6q5r-4s3t-2u1v-0w9x8y7z6a5", + "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": "4b3c2d1e-0f9g-8h7i-6j5k-4l3m2n1o0p9", + "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": "8q7r6s5t-4u3v-2w1x-0y9z-8a7b6c5d4e3", + "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": "2f1g0h9i-8j7k-6l5m-4n3o-2p1q0r9s8t7", + "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": "6u5v4w3x-2y1z-0a9b-8c7d-6e5f4g3h2i1", + "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": "0j9k8l7m-6n5o-4p3q-2r1s-0t9u8v7w6x5", + "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": "4y3z2a1b-0c9d-8e7f-6g5h-4i3j2k1l0m9", + "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": "8n7o6p5q-4r3s-2t1u-0v9w-8x7y6z5a4b3", + "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": "2c1d0e9f-8g7h-6i5j-4k3l-2m1n0o9p8q7", + "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": "6r5s4t3u-2v1w-0x9y-8z7a-6b5c4d3e2f1", + "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": "0g9h8i7j-6k5l-4m3n-2o1p-0q9r8s7t6u5", + "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": "4v3w2x1y-0z9a-8b7c-6d5e-4f3g2h1i0j9", + "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": "8k7l6m5n-4o3p-2q1r-0s9t-8u7v6w5x4y3", + "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": "2z1a0b9c-8d7e-6f5g-4h3i-2j1k0l9m8n7", + "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": "6o5p4q3r-2s1t-0u9v-8w7x-6y5z4a3b2c1", + "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": "0d9e8f7g-6h5i-4j3k-2l1m-0n9o8p7q6r5", + "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": "4s3t2u1v-0w9x-8y7z-6a5b-4c3d2e1f0g9", + "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": "8h7i6j5k-4l3m-2n1o-0p9q-8r7s6t5u4v3", + "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": "2w1x0y9z-8a7b-6c5d-4e3f-2g1h0i9j8k7", + "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": "6l5m4n3o-2p1q-0r9s-8t7u-6v5w4x3y2z1", + "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": "0a9b8c7d-6e5f-4g3h-2i1j-0k9l8m7n6o5", + "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": "4p3q2r1s-0t9u-8v7w-6x5y-4z3a2b1c0d9", + "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": "8e7f6g5h-4i3j-2k1l-0m9n-8o7p6q5r4s3", + "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": "2t1u0v9w-8x7y-6z5a-4b3c-2d1e0f9g8h7", + "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": "6i5j4k3l-2m1n-0o9p-8q7r-6s5t4u3v2w1", + "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": "0x9y8z7a-6b5c-4d3e-2f1g-0h9i8j7k6l5", + "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": "4m3n2o1p-0q9r-8s7t-6u5v-4w3x2y1z0a9", + "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": "8b7c6d5e-4f3g-2h1i-0j9k-8l7m6n5o4p3", + "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": "2q1r0s9t-8u7v-6w5x-4y3z-2a1b0c9d8e7", + "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": "6f5g4h3i-2j1k-0l9m-8n7o-6p5q4r3s2t1", + "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": "0u9v8w7x-6y5z-4a3b-2c1d-0e9f8g7h6i5", + "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": "4j3k2l1m-0n9o-8p7q-6r5s-4t3u2v1w0x9", + "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": "8y7z6a5b-4c3d-2e1f-0g9h-8i7j6k5l4m3", + "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": "2n1o0p9q-8r7s-6t5u-4v3w-2x1y0z9a8b7", + "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": "6c5d4e3f-2g1h-0i9j-8k7l-6m5n4o3p2q1", + "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": "0r9s8t7u-6v5w4x-3y2z-1a0b-9c8d7e6f5", + "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": "4g3h2i1j-0k9l-8m7n-6o5p-4q3r2s1t0u9", + "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": "8v7w6x5y-4z3a-2b1c-0d9e-8f7g6h5i4j3", + "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": "2k1l0m9n-8o7p-6q5r-4s3t-2u1v0w9x8y7", + "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": "6z5a4b3c-2d1e-0f9g-8h7i-6j5k4l3m2n1", + "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": "0o9p8q7r-6s5t-4u3v-2w1x-0y9z8a7b6c5", + "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": "4d3e2f1g-0h9i-8j7k-6l5m-4n3o2p1q0r9", + "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": "8s7t6u5v-4w3x-2y1z-0a9b-8c7d6e5f4g3", + "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": "2h1i0j9k-8l7m-6n5o-4p3q-2r1s0t9u8v7", + "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": "6w5x4y3z-2a1b-0c9d-8e7f-6g5h4i3j2k1", + "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": "0l9m8n7o-6p5q-4r3s-2t1u-0v9w8x7y6z5", + "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": "4a3b2c1d-0e9f-8g7h-6i5j-4k3l2m1n0o9", + "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": "8p7q6r5s-4t3u-2v1w-0x9y-8z7a6b5c4d3", + "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": "2e1f0g9h-8i7j-6k5l-4m3n-2o1p0q9r8s7", + "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": "6t5u4v3w-2x1y-0z9a-8b7c-6d5e4f3g2h1", + "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": "0i9j8k7l-6m5n-4o3p-2q1r-0s9t8u7v6w5", + "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": "4x3y2z1a-0b9c-8d7e-6f5g-4h3i2j1k0l9", + "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": "8m7n6o5p-4q3r-2s1t-0u9v-8w7x6y5z4a3", + "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": "2b1c0d9e-8f7g-6h5i-4j3k-2l1m0n9o8p7", + "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": "6q5r4s3t-2u1v-0w9x-8y7z-6a5b4c3d2e1", + "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": "0f9g8h7i-6j5k-4l3m-2n1o-0p9q8r7s6t5", + "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": "4u3v2w1x-0y9z-8a7b-6c5d-4e3f2g1h0i9", + "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": "8j7k6l5m-4n3o-2p1q-0r9s-8t7u6v5w4x3", + "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": "2y1z0a9b-8c7d-6e5f-4g3h-2i1j0k9l8m7", + "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": "6n5o4p3q-2r1s-0t9u-8v7w-6x5y4z3a2b1", + "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": "0c9d8e7f-6g5h-4i3j-2k1l-0m9n8o7p6q5", + "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": "4r3s2t1u-0v9w-8x7y-6z5a-4b3c2d1e0f9", + "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": "8g7h6i5j-4k3l-2m1n-0o9p-8q7r6s5t4u3", + "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": "2v1w0x9y-8z7a-6b5c-4d3e-2f1g0h9i8j7", + "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": "6k5l4m3n-2o1p-0q9r-8s7t-6u5v4w3x2y1", + "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": "0z9a8b7c-6d5e-4f3g-2h1i-0j9k8l7m6n5", + "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": "4o3p2q1r-0s9t-8u7v-6w5x-4y3z2a1b0c9", + "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": "8d7e6f5g-4h3i-2j1k-0l9m-8n7o6p5q4r3", + "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": "2s1t0u9v-8w7x-6y5z-4a3b-2c1d0e9f8g7", + "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": "6h5i4j3k-2l1m-0n9o-8p7q-6r5s4t3u2v1", + "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": "0w9x8y7z-6a5b-4c3d-2e1f-0g9h8i7j6k5", + "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": "4l3m2n1o-0p9q-8r7s-6t5u-4v3w2x1y0z9", + "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": "8a7b6c5d-4e3f-2g1h-0i9j-8k7l6m5n4o3", + "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": "2p1q0r9s-8t7u-6v5w-4x3y-2z1a0b9c8d7", + "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": "6e5f4g3h-2i1j-0k9l-8m7n-6o5p4q3r2s1", + "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": "0t9u8v7w-6x5y-4z3a-2b1c-0d9e8f7g6h5", + "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": "4i3j2k1l-0m9n-8o7p-6q5r-4s3t2u1v0w9", + "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": "8x7y6z5a-4b3c-2d1e-0f9g-8h7i6j5k4l3", + "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": "2m1n0o9p-8q7r-6s5t-4u3v-2w1x0y9z8a7", + "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": "6b5c4d3e-2f1g-0h9i-8j7k-6l5m4n3o2p1", + "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": "0q9r8s7t-6u5v-4w3x-2y1z-0a9b8c7d6e5", + "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": "4f3g2h1i-0j9k-8l7m-6n5o-4p3q2r1s0t9", + "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": "8u7v6w5x-4y3z-2a1b-0c9d-8e7f6g5h4i3", + "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": "2j1k0l9m-8n7o-6p5q-4r3s-2t1u0v9w8x7", + "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": "6y5z4a3b-2c1d-0e9f-8g7h-6i5j4k3l2m1", + "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": "c7d2c1f4-9a5d-4f9a-b8e1-6f5e8d3b6c4a", + "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": "e6b2d8a1-3c5f-4e9d-a7b2-8c1d6e5f4a9b", + "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": "f1c4b9d2-7e8a-4d5b-9c1e-3a6d8f5b4c7e", + "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": "a2b3c4d5-e6f7-4g8h-9i0j-1k2l3m4n5o6p", + "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": "b3c4d5e6-f7g8-4h9i-0j1k-2l3m4n5o6p7q", + "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": "c4d5e6f7-g8h9-4i0j-1k2l-3m4n5o6p7q8r", + "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": "d5e6f7g8-h9i0-4j1k-2l3m-4n5o6p7q8r9s", + "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": "e6f7g8h9-i0j1-4k2l-3m4n-5o6p7q8r9s0t", + "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": "f7g8h9i0-j1k2-4l3m-4n5o-6p7q8r9s0t1u", + "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": "g8h9i0j1-k2l3-4m4n-5o6p-7q8r9s0t1u2v", + "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": "h9i0j1k2-l3m4-4n5o-6p7q-8r9s0t1u2v3w", + "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": "i0j1k2l3-m4n5-4o6p-7q8r-9s0t1u2v3w4x", + "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": "j1k2l3m4-n5o6-4p7q-8r9s-0t1u2v3w4x5y", + "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": "k2l3m4n5-o6p7-4q8r-9s0t-1u2v3w4x5y6z", + "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": "l3m4n5o6-p7q8-4r9s-0t1u-2v3w4x5y6z7a", + "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": "m4n5o6p7-q8r9-4s0t-1u2v-3w4x5y6z7a8b", + "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": "n5o6p7q8-r9s0-4t1u-2v3w-4x5y6z7a8b9c", + "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": "o6p7q8r9-s0t1-4u2v-3w4x-5y6z7a8b9c0d", + "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": "p7q8r9s0-t1u2-4v3w-4x5y-6z7a8b9c0d1e", + "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": "q8r9s0t1-u2v3-4w4x-5y6z-7a8b9c0d1e2f", + "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": "r9s0t1u2-v3w4-4x5y-6z7a-8b9c0d1e2f3g", + "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": "c742d1f4-a874-4f6c-9a5e-1a5f5c2e0d3b", + "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": "f5c7a3d9-2b1e-4a8c-9d1f-8c3e6b5a4d7f", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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": "a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6", + "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": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p", + "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" } ] \ No newline at end of file diff --git a/crawler/data/businesses_.json b/crawler/data/businesses_.json new file mode 100644 index 0000000..fe51488 --- /dev/null +++ b/crawler/data/businesses_.json @@ -0,0 +1 @@ +[] diff --git a/crawler/package.json b/crawler/package.json index 5a5c698..a9659eb 100644 --- a/crawler/package.json +++ b/crawler/package.json @@ -11,17 +11,20 @@ "author": "", "license": "ISC", "devDependencies": { - "typescript": "^5.2.2" + "typescript": "^5.4.5" }, "dependencies": { + "@types/node": "^20.12.7", "currency.js": "^2.0.4", "fs-extra": "^11.2.0", "inquirer": "^9.2.17", "ioredis": "^5.3.2", "node-fetch": "^3.3.2", + "pg": "^8.11.5", "puppeteer": "^22.1.0", "redis": "^4.6.13", "redis-om": "^0.4.3", + "uuidv4": "^6.2.13", "winston": "^3.13.0", "yargs": "^17.7.2" } diff --git a/crawler/postgres_business_import.ts b/crawler/postgres_business_import.ts new file mode 100644 index 0000000..52d96d6 --- /dev/null +++ b/crawler/postgres_business_import.ts @@ -0,0 +1,85 @@ +import pkg from 'pg'; +const { Pool } = pkg; +import fsextra from 'fs-extra'; +const { fstat, readFileSync, writeJsonSync } = fsextra; +import { v4 as uuidv4 } from 'uuid'; +// PostgreSQL Verbindungskonfiguration +const pool = new Pool({ + user: 'bizmatch', + host: 'localhost', + database: 'bizmatch', + password: 'xieng7Seih', + port: 5432, +}); + +// Typdefinition für das JSON-Objekt +interface BusinessListing { + userId?: string; + listingsCategory: string; + title: string; + description: string; + type: string; + state: string; + city: string; + id: string; + price: number; + salesRevenue: number; + leasedLocation: boolean; + established: number; + employees: number; + reasonForSale: string; + supportAndTraining: string; + cashFlow: number; + brokerLicencing: string; + internalListingNumber: number; + realEstateIncluded: boolean; + franchiseResale: boolean; + draft: boolean; + internals: string; + 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(); + } +} + +// Passen Sie den Dateipfad an Ihre spezifischen Bedürfnisse an +importJsonData('./data/businesses_.json');