Skip to main content
GET
/
api
/
v2
/
me
Get the authenticated store
curl --request GET \
  --url https://take.app/api/v2/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "alias": "<string>",
  "phone": "<string>",
  "email": "jsmith@example.com",
  "country": "<string>",
  "currency": "<string>",
  "timezone": "<string>",
  "address": {
    "address1": "<string>",
    "address2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "country": "<string>",
    "latitude": 123,
    "longitude": 123
  },
  "tax": {
    "inclusive": true,
    "percent": 123
  },
  "service_charge": {
    "name": "<string>",
    "rate": 123,
    "amount": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://platform.take.app/llms.txt

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

Authorizations

Authorization
string
header
required

Merchant API V2 token. Pass as Authorization: Bearer <token>.

Response

Store

id
string
required
object
enum<string>
required
Available options:
store
name
string
required
alias
string
required
phone
string
required

International phone number, digits only, no leading "+".

email
string<email> | null
required
country
string
required
currency
string
required
timezone
string
required
address
object
required
tax
object
required
service_charge
object
required