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_...
Extract multilingual PERSON, ORG, GPE, LOC, and PRODUCT entities from text.
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_...
textstringrequiredbodyText to analyse. Maximum 8,000 characters.
Example: NVIDIA opened a new office in Johannesburg.
thresholdnumberbodyEntity confidence threshold from 0 to 1. Defaults to 0.6.
Example: 0.6
Use Named Entity Recognition to extract the fixed GLiNER label set from multilingual text before resolving entities or constructing World filters. Entity offsets are Python-style half-open character spans: start is inclusive and end is exclusive. Keep the original text unchanged when using the offsets.
These are the fields you can build against. Nested names use dot notation; optional sections are called out in their descriptions.
results[] .textstringThe exact input text for the result.
Example: NVIDIA opened a new office in Johannesburg.
results[] .entitiesobject[]Entities detected in the text, using PERSON, ORG, GPE, LOC, or PRODUCT labels.
Example: [{ "start": 0, "end": 6, "text": "NVIDIA", "label": "ORG", "score": 0.99 }]
results[].entities[].start/endintegerHalf-open character offsets into the exact input text.
Example: 0 / 6
results[].entities[].textstringThe entity surface text.
Example: NVIDIA
results[].entities[].labelenumOne of PERSON, ORG, GPE, LOC, or PRODUCT.
Example: ORG
results[].entities[].scorenumberModel confidence score.
Example: 0.99
model_provenance.nerstringNER checkpoint used by the model service.
Example: NOSIBLE/gliner-ner-v1
invalid_request — The request is syntactically valid JSON but a value, date, filter, or combination of fields is invalid.unauthorized — The required API key or Bearer credential is missing or invalid.validation_error — The request shape is understood but one or more values fail validation.rate_limited — The request exceeded the account or public-window rate limit. Respect Retry-After when supplied.upstream_error — An upstream retrieval service failed while processing the request.upstream_timeout — An upstream retrieval service did not respond within the request timeout.