Skip to main content
GET
/
v1
/
users
List bootstrapped users
curl --request GET \
  --url https://api.mareaalcalina.com/v1/users \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "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>"
        }
      ]
    }
  ],
  "nextCursor": "<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"

Query Parameters

limit
integer
Required range: 1 <= x <= 50
cursor
string

Response

Success.

users
object[]
required
nextCursor
string | null