Skip to main content
GET
/
v1
/
users
/
{userId}
Get user
curl --request GET \
  --url https://api.mareaalcalina.com/v1/users/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "userId": "<string>",
  "email": "jsmith@example.com",
  "displayName": "<string>",
  "verificationStatus": "pending",
  "plan": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "verifiedAt": "2023-11-07T05:31:56Z",
  "lastUserEvents": [
    {
      "type": "<string>",
      "at": "<string>",
      "reason": "<string>"
    }
  ]
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

Marea API key. mk_dev_* keys are developer-scoped (bootstrap, list users, register webhook). mk_user_* keys are user-scoped (manage that one user's storefronts/products).

Headers

Accept-Language
string

BCP-47 locale tag for localized error messages (es, en, pt). Defaults to es.

Example:

"es-MX"

Path Parameters

userId
string
required

Response

Success.

userId
string
required
email
string<email>
required
displayName
string | null
verificationStatus
enum<string> | null
Available options:
pending,
verified
plan
number | null
createdAt
string<date-time> | null
verifiedAt
string<date-time> | null
lastUserEvents
object[] | null