AuthorizationstringrequiredheaderRequired Bearer API key. Programmatic access to the World API needs a key; browsing nosible.world in a browser does not.
Example: Bearer nos_sk_...
Find semantically related events inside one dated World archive slice.
Explore the NOSIBLE World interface, inspect the World data dictionary, and browse the classification ontologies used by World.
AuthorizationstringrequiredheaderRequired Bearer API key. Programmatic access to the World API needs a key; browsing nosible.world in a browser does not.
Example: Bearer nos_sk_...
datedaterequiredpathArchive date in YYYY-MM-DD format.
Example: 2026-07-20
querystringrequiredbodyNatural-language semantic query.
Example: AI chip supply constraints
limitintegerbodyMaximum events to return.
Example: 20
embedding_modelenumbodyEmbedding model. The supported value is openai.
Example: openai
Use semantic search for concept-level recall when exact keywords are too brittle. Keep the query focused and compare similarity scores across a consistent date and limit. The route returns the same lite event records used by day search, plus explicit HNSW score metadata.
These are the fields you can build against. Nested names use dot notation; optional sections are called out in their descriptions.
totalintegerNumber of semantic matches returned after the similarity floor for this request.
Example: 20
countintegerNumber of event records in this response.
Example: 20
limitintegerApplied result cap.
Example: 20
offsetintegerApplied offset; this route currently starts at zero.
Example: 0
eventsobject[]Lite event records ranked by semantic similarity.
Example: [{ event_id, event, signals, coverage, _score, _hnsw_distance, _cosine_similarity }]
events[]._scorenumberRank-derived score, calculated as 1 / (rank + 1).
Example: 1
events[]._hnsw_distancenumberDistance returned by the HNSW index. Lower is better.
Example: 0.13
events[]._cosine_similaritynumberCosine similarity derived from HNSW distance. Higher is better; the endpoint applies its configured floor.
Example: 0.87
facetsobjectFacet counts; currently an empty object for this route.
Example: {}
query_took_msintegerTotal request duration in milliseconds.
Example: 84
embedding_msintegerTime spent creating the query embedding.
Example: 21
search_msintegerTime spent searching the date HNSW index.
Example: 48
embedding_modelstringEmbedding model requested.
Example: openai
models_usedstring[]Embedding models used to answer the request.
Example: ["openai"]
per_index_kintegerCandidate count requested from the per-date index.
Example: 60
min_cosine_similaritynumberConfigured similarity floor applied before results are returned.
Example: 0.35
matched_tokensstring[]Query token list echoed by the handler.
Example: ["AI infrastructure demand"]
errorsobject[]Non-fatal errors reported by the semantic stage.
Example: []
invalid_request — The date, filter, cursor, identifier, or request combination is invalid.access_denied — The requested archive date is outside the caller's World tier.not_found — The requested date, entity, ticker, or event does not exist in the accessible index.cursor_expired — The cursor was minted against a replaced index build. Restart pagination from the first page.rate_limited — The request exceeded the endpoint or account rate limit. Respect Retry-After when supplied.backend_not_configured — The World backend is not configured for this deployment.backend_error — The BFF could not obtain a valid response from the World backend.backend_timeout — The World backend or an upstream data source timed out.