File size: 5,083 Bytes
9756171 | 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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | {
"openapi": "3.1.0",
"info": {
"title": "QUANTUM Pinui-Binui Discovery API",
"version": "1.0.0",
"description": "Read-only public API for AI agents and Custom GPTs to query QUANTUM's live database of Israeli pinui-binui compounds, mispricing opportunities, and statutory stage tracking.",
"contact": {
"name": "QUANTUM",
"url": "https://u-r-quantum.com"
},
"license": {
"name": "CC-BY-4.0",
"url": "https://creativecommons.org/licenses/by/4.0/"
}
},
"servers": [
{
"url": "https://u-r-quantum.com/api/discovery"
}
],
"paths": {
"/opportunities.json": {
"get": {
"operationId": "listMispricedCompounds",
"summary": "List top mispriced Israeli pinui-binui compounds ranked by QUANTUM Mispricing Score",
"description": "Returns the current top compounds by QUANTUM Mispricing Score (premium_gap × active_listings × statutory_certainty). Use this to find pinui-binui investment opportunities where the market has not yet repriced to the statutory stage.",
"parameters": [
{
"name": "city",
"in": "query",
"schema": {
"type": "string"
},
"description": "Filter to a single city (Hebrew name, e.g. \"תל אביב\")."
},
{
"name": "min_iai",
"in": "query",
"schema": {
"type": "integer",
"default": 30
},
"description": "Minimum IAI score."
},
{
"name": "limit",
"in": "query",
"schema": {
"type": "integer",
"default": 30,
"maximum": 100
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OpportunitiesResponse"
}
}
}
}
}
}
},
"/compound/{slug}": {
"get": {
"operationId": "getCompoundDetails",
"summary": "Full details for a single pinui-binui compound",
"parameters": [
{
"name": "slug",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK"
},
"404": {
"description": "Not found"
}
}
}
},
"/changelog.json": {
"get": {
"operationId": "listStatutoryChanges",
"summary": "Recent statutory stage changes (last 30 days)",
"responses": {
"200": {
"description": "OK"
}
}
}
}
},
"components": {
"schemas": {
"OpportunitiesResponse": {
"type": "object",
"properties": {
"generated_at": {
"type": "string",
"format": "date-time"
},
"data_as_of": {
"type": "string",
"format": "date-time"
},
"opportunities": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Opportunity"
}
}
}
},
"Opportunity": {
"type": "object",
"properties": {
"rank": {
"type": "integer"
},
"compound_id": {
"type": "integer"
},
"slug": {
"type": "string"
},
"name": {
"type": "string"
},
"city": {
"type": "string"
},
"statutory_stage": {
"type": "string",
"enum": [
"permit",
"approved",
"deposited",
"construction",
"declared",
"planning",
"pre_deposit",
"unknown"
]
},
"scoring": {
"type": "object",
"properties": {
"iai_score": {
"type": "integer"
},
"mispricing_score": {
"type": "integer"
},
"premium_gap_pct": {
"type": "number"
}
}
},
"market": {
"type": "object",
"properties": {
"active_listings": {
"type": "integer"
},
"avg_asking_price_nis": {
"type": "number"
},
"avg_price_per_sqm_nis": {
"type": "number"
}
}
},
"detail_url": {
"type": "string",
"format": "uri"
}
}
}
}
},
"x-quantum-version": "1.0.0",
"x-generated-at": "2026-05-26T11:20:19.284Z"
} |