For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Support
API ReferenceDocsRelease notes
API ReferenceDocsRelease notes
  • Analytics API Reference
        • POSTExtract entities
        • GETList entity types
        • POSTAdd gazetteer entries
        • GETEntities supported languages
        • GETIndoc coref supported languages
Support
LogoLogo
Login
Login
Analytics API ReferenceText AnalyticsEntity Extractor

List entity types

GET
/entities/info
GET
/rest/v1/entities/info
$curl https://analytics.babelstreet.com/rest/v1/entities/info \
> -H "X-BabelStreetAPI-Key: <apiKey>"
200Retrieved
1{
2 "languages": [
3 {
4 "language": "string",
5 "processors": [
6 {
7 "processor": "string",
8 "subsources": [
9 {
10 "subsource": "string",
11 "entity_types": [
12 "string"
13 ]
14 }
15 ]
16 }
17 ]
18 }
19 ]
20}
Returns list of supported entity types in the model. If you provide a profileId, it returns the list of entity types in the model used by the profileId. By default, the response lists all entity types by processor type.
Was this page helpful?
Previous

Add gazetteer entries

Next
Built with

Authentication

X-BabelStreetAPI-Keystring
API Key authentication via header
OR
X-RosetteAPI-Keystring
API Key authentication via header

Query parameters

profileIdstringOptional

The id of the custom profile you are querying. This parameter is optional and for on-premise installations only.

perSubsourceSupportedEntityTypesbooleanOptional
When set to true returns the entity types by subsource in addition to by processor.

Response

OK
languageslist of objects