Skip to main content
POST
/
v1
/
merchants
/
resolve
Resolve merchants
curl --request POST \
  --url https://api.swippee.com/v1/merchants/resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "terminals": [
    "2222000000000000"
  ],
  "names": [
    "Example Cafe"
  ]
}
'
{
  "data": {
    "count": 123,
    "matched": 123,
    "results": [
      {
        "input": "<string>",
        "matched": true,
        "merchant": "<string>",
        "mcc": "<string>",
        "category": "<string>",
        "city": "<string>",
        "terminal": "<string>"
      }
    ]
  },
  "meta": {
    "source": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.swippee.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your API key from the dashboard, sent as Authorization: Bearer swippee_sk_live_....

Body

application/json
terminals
string[]
Example:
["2222000000000000"]
names
string[]
Example:
["Example Cafe"]

Response

Resolved merchants

data
object
meta
object