🚀 We have launched a new version of the API. Read more about it in the [changelog](./changelog#new-version-of-the-api-). 🚀
LogoLogo
Legacy DocsSign in
DocumentationChangelog
DocumentationChangelog
  • Get Started
    • Introduction
    • Get your API keys
    • Support
    • Privacy policy
    • Status
  • Transaction Enrichment
    • Overview
    • Entities Identification
    • Categorization
    • Recurrence
  • Bank Statements
    • Overview
    • Fast verification
  • Core resources
    • Batches
    • Entities
    • Account Holders
    • Webhooks
    • Personalization
    • Reporting wrong results
  • API Reference
    • Authentication
    • Errors
    • Request IDs
    • Pagination
    • Rate limits
Legacy DocsSign in
API ReferenceEntities

POST
https://api.ntropy.com/v3/entities/resolve
POST
/v3/entities/resolve
1from ntropy_sdk import SDK
2
3sdk = SDK("cd1H...Wmhl")
4entity = sdk.entities.resolve(name="Starbucks")
Try it
1{
2 "id": "d4bc3c80-ec1a-3da2-836e-2a4ca4758be5",
3 "name": "Starbucks",
4 "website": "starbucks.com",
5 "logo": "https://logos.ntropy.com/starbucks.com",
6 "mccs": [
7 5814
8 ]
9}
Resolves a query into an entity by querying our entity resolution system. The parameters `name` and `website` are mutually exclusive. Calls to this endpoint using the `name` parameter are billed the same way transactions are.
Was this page helpful?
Previous

Find recurring groups in a transaction history

Next
Built with

Headers

X-Api-KeystringRequired
X-Application-IdstringRequired

Request

This endpoint expects an object.
namestringOptional
The name of the entity to resolve
websitestringOptional
The website of the entity to resolve
locationstringOptional
An unstructured location string of the entity to resolve

Response

Entity
idstring or null
The unique UUID identifier of the entity
namestring or null
The name of the entity
websitestring or null
The website URL of the entity
logostring or null
Logo's URL
mccslist of integers or null

A list of Merchant Category Codes

Errors

Resolves an entity
Find recurring groups in a transaction history

🚀 We have launched a new version of the API. Read more about it in the changelog. 🚀

Resolves a query into an entity by querying our entity resolution system. The parameters name and website are mutually exclusive. Calls to this endpoint using the name parameter are billed the same way transactions are.