https://www.dongnae.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Dongnae",
"name_for_model": "Dongnae",
"description_for_model": "A tool that allows the user to search for rental homes (apartments, villas, and officetels) in South Korea, specifying e.g. city, monthly rent (price), deposit, area size, etc.",
"description_for_human": "Find a rental apartment, villa and officetel in South Korea.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://dongnae.com/api/doc",
"is_user_authenticated": false
},
"logo_url": "https://dongnae.com/icon-192x192.png",
"legal_info_url": "https://dongnae.com/privacy",
"contact_email": "engineering@dongnae.com"
}
{
"openapi": "3.0.0",
"servers": [
{
"url": "https://dongnae.com/api"
}
],
"info": {
"title": "Find real estate properties in South Korea API",
"description": "Plugin for finding information about real estate in South Korea. Use for finding a list of current apartments, villas, officetels for rent based on search criteria. Real estate search can optionally include other criteria about the home such as a range for monthly rent, a range of deposit, or a range of area size. The plugin will return a list of homes with data about each home. The plugin can also be used to find information about a specific home based on searching by the home's address or the property id returned in the list of search results. Specific home search works for homes that are for rent. The plugin can NOT be used to find information for user queries that include references to protected classes like race, religion, sex, color, disability, national origin, familial status, gender identity, and sexual orientation due to fair housing regulations.",
"version": "1.0.0"
},
"paths": {
"/searchFlexes": {
"post": {
"operationId": "searchFlexes",
"summary": "Get the properties that matches the user's request",
"description": "Get the property info of monthly rent, deposit, area size, availability date, number of beds and bathrooms, pictures, complex name, property type, building number, floor, facing direction, broker fee, etc.",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlexQueryRequest"
}
}
}
},
"responses": {
"200": {
"description": "Organization",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FlexQueryResponse"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"HTTPValidationError": {
"title": "HTTPValidationError",
"type": "object",
"properties": {
"detail": {
"title": "Detail",
"type": "string"
}
}
},
"FlexModel": {
"title": "FlexModel",
"type": "object",
"properties": {
"branchNumber": {
"title": "branchNumber",
"type": "integer"
},
"brokerFee": {
"title": "brokerFee",
"type": "integer"
},
"buildingName": {
"title": "buildingName",
"type": "string"
},
"url": {
"description": "The URL to access the listing page",
"type": "string"
},
"address": {
"title": "address",
"description": "Comes from Complex.address",
"type": "string"
},
"contractLengthMonth": {
"title": "contractLengthMonth",
"type": "integer"
},
"engUrl": {
"title": "engUrl",
"type": "string"
},
"id": {
"title": "id",
"type": "integer"
},
"immediateMoveInText": {
"title": "immediateMoveInText",
"type": "string"
},
"interiors": {
"title": "interiors",
"type": "array",
"items": {
"title": "listerListingInterior",
"type": "object",
"properties": {
"interior": {
"type": "array",
"items": {
"title": "ListerListingInteriorType",
"type": "string",
"enum": [
"AIRCON",
"LAUNDRY",
"FRIDGE",
"BATHTUB",
"DOOR_LOCK",
"INTERNET",
"CCTV",
"INTER_PHONE",
"TERRACE",
"RECYCLE_PLACE",
"SECURITY_GUARD",
"ELEVATOR",
"SHARED_LAUNDRY",
"GYM"
]
}
}
}
}
},
"listerRealProperty": {
"$ref": "#/components/schemas/ListerRealPropertyModel"
},
"matterportLink": {
"title": "matterportLink",
"type": "string"
},
"minDeposit": {
"title": "minDeposit",
"type": "integer"
},
"minRent": {
"title": "minRent",
"type": "integer"
},
"moveInAvailableFrom": {
"$ref": "#/components/schemas/DateRange"
},
"strengths": {
"title": "strengths",
"type": "array",
"items": {
"title": "strength",
"type": "string"
}
},
"weaknesses": {
"title": "weaknesses",
"type": "array",
"items": {
"title": "weakness",
"type": "string"
}
}
}
},
"FlexQueryRequest": {
"title": "FlexQueryRequest",
"type": "object",
"properties": {
"minRent": {
"$ref": "#/components/schemas/NumericRange"
},
"minDeposit": {
"$ref": "#/components/schemas/NumericRange"
},
"pyeong": {
"$ref": "#/components/schemas/DecimalRange"
},
"si": {
"title": "si",
"type": "array",
"items": {
"type": "string"
}
},
"gu": {
"title": "gu",
"type": "array",
"items": {
"type": "string"
}
},
"dong": {
"title": "dong",
"type": "array",
"items": {
"type": "string"
}
},
"moveInAvailableFrom": {
"$ref": "#/components/schemas/DateRange"
}
},
"additionalProperties": false
},
"DecimalRange": {
"title": "DecimalRange",
"type": "object",
"required": [
"lte",
"gte"
],
"properties": {
"lte": {
"title": "lowerThanOrEqual",
"type": "number",
"default": 999999999,
"minimum": 0,
"maximum": 999999999
},
"gte": {
"title": "greaterThanOrEqual",
"type": "number",
"default": 0,
"minimum": 0,
"maximum": 999999999
}
}
},
"NumericRange": {
"title": "NumericRange",
"type": "object",
"required": [
"lte",
"gte"
],
"properties": {
"lte": {
"title": "lowerThanOrEqual",
"type": "integer",
"default": 999999999,
"minimum": 0,
"maximum": 999999999
},
"gte": {
"title": "greaterThanOrEqual",
"type": "integer",
"default": 0,
"minimum": 0,
"maximum": 999999999
}
}
},
"DateRange": {
"title": "DateRange",
"type": "object",
"required": [
"lte",
"gte"
],
"properties": {
"lte": {
"title": "lowerThanOrEqual",
"type": "string",
"default": "2050-01-01",
"format": "date"
},
"gte": {
"title": "greaterThanOrEqual",
"type": "string",
"default": "1970-01-01",
"format": "date"
}
}
},
"FlexQueryResponse": {
"title": "FlexQueryResponse",
"type": "array",
"items": {
"$ref": "#/components/schemas/FlexModel"
}
},
"ListerRealPropertyModel": {
"title": "ListerRealPropertyModel",
"type": "object",
"properties": {
"id": {
"title": "id",
"type": "string"
},
"areaHouseCount": {
"title": "areaHouseCount",
"type": "integer"
},
"bathCount": {
"title": "bathCount",
"type": "integer"
},
"buildingAge": {
"title": "buildingAge",
"type": "integer"
},
"complexParkingCount": {
"title": "complexParkingCount",
"type": "integer"
},
"constructedBy": {
"title": "constructedBy",
"type": "string"
},
"constructedDate": {
"title": "constructedDate",
"type": "string"
},
"directionType": {
"title": "directionType",
"type": "string",
"enum": [
"EAST",
"WEST",
"SOUTH",
"NORTH",
"NORTHEAST",
"SOUTHEAST",
"NORTHWEST",
"SOUTHWEST"
]
},
"exclusiveArea": {
"title": "exclusiveArea",
"type": "string"
},
"exclusivePyeong": {
"title": "exclusivePyeong",
"type": "number"
},
"floor": {
"title": "floor",
"type": "string"
},
"latitude": {
"title": "latitude",
"type": "number"
},
"longitude": {
"title": "longitude",
"type": "number"
},
"maintenanceFee": {
"title": "maintenanceFee",
"type": "integer"
},
"roomCount": {
"title": "roomCount",
"type": "integer"
},
"sunfacePointType": {
"title": "sunfacePointType",
"type": "string",
"enum": [
"LIVING_ROOM",
"MAIN_ROOM"
]
},
"supplyArea": {
"title": "supplyArea",
"type": "string"
},
"supplyPyeong": {
"title": "supplyPyeong",
"type": "number"
}
}
},
"MediumModel": {
"title": "MediumModel",
"type": "object",
"properties": {
"id": {
"title": "id",
"type": "string"
},
"url": {
"title": "url",
"type": "string"
},
"mediumType": {
"title": "mediumType",
"type": "string",
"enum": [
"IMAGE",
"MATTERPORT",
"VIDEO",
"OTHER"
]
}
}
}
}
},
"tags": []
}
Discover other plugins from the real estate category

Redfin
Have questions about the housing market? Find the answers to help you win in today's market.
0 Comments

Manorlead
Get a list of listings for rent or sale in cities across Canada and the US based on your search criteria.
0 Comments

Rentable Apartments
Get apartment options in a city of your choice, scoped to your needs and budget.
0 Comments
Wahi
Hey Ontario, ask and get so in the know on the latest listings, property insights and more.
0 Comments

Lighthouse
Browse apartments, get free locator assistance and earn $1,000 cash back on rent
0 Comments

Zumper Rental Search
Find a rental home in the US and Canada.
0 Comments

Marble Property Management
Manage and find rentals.
0 Comments

Mallorca Magic Property Search
Discover your dream property in Mallorca with our AI-Power. Find the perfect match from over 75,000 listings!
0 Comments

LIFULL HOME'S
Encounter the life you want. Search listings, view property and neighborhood details in Japan.
0 Comments

Zumper Rentals
Meet Zumper, your key to effortless apartment and house rentals in the US and Canada!
0 Comments

TopHap
Enriched real estate data and location-based tools.
0 Comments

Ask Marcie
For viewing house listings in Park City, Utah.
0 Comments

UK House Prices
Provides information on UK House Prices and Sales.
0 Comments

Property Finder UK
Find properties for sale or rent in the UK.
0 Comments

Apartment List
Search for apartments in the US with personalized recommendations, just for you.
0 Comments