Searches for an array of merchants. This endpoint is typically used for transaction list views. You send in multiple transactions at once in a single request.
An optional array of response fields that will be force returned from our internal sources. This is useful if you want to cache fields such as the name or website during an extended call.
Allowed values are: name, website, img, category, categories
Example: ["name","website"]
Responses
200
A JSON object containing one property per transaction enriched.
The keys of this object are the ID that was provided, previously passed in as the `"id"` property in each transaction array element.
The value of this property is the array of merchants that were found when searching for that specific transaction
application/json
400
Returned when the request is malformed. Double check that you are sending the correct parameters in the request, and that they are valid.
This error is also thrown when a trial account has expired or exceeded its usage limits.
application/json
401
Returned when the API key is invalid. Double check that you are sending the correct API key in the `X-Api-Key` header.
application/json
403
Returned when the API key is missing. Double check that you are sending the API key in the `X-Api-Key` header.
text/html
404
Returned when the endpoint is not found. Double check that you are sending the request to the correct endpoint.
500
Returned when the request has failed due to an internal server error. Please retry the request later.