Skip to main content
GET
/
partner
/
public
/
exchanges
List exchange offices in the branch
curl --request GET \
  --url https://api.example.com/api/v1/partner/public/exchanges \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "Main Office",
    "exchangeActive": true,
    "contacts": {
      "address": "123 Currency St",
      "phoneNumber": "+380671234567",
      "chat": "https://t.me/example",
      "location": {}
    },
    "schedule": [
      {
        "dayOfWeek": 1,
        "openTime": "09:00",
        "closeTime": "18:00",
        "isClosed": false
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Partner API key. Format: sk_branch_<32chars>, sk_personal_<32chars>, or pk_<32chars> (public, read-only)

Response

List of exchange offices

id
integer
Example:

1

name
string
Example:

"Main Office"

exchangeActive
boolean
Example:

true

contacts
object
schedule
object[]