Marqeta AccountUsers API

The AccountUsers API from Marqeta — 1 operation(s) for accountusers.

Operations 1

GET /accountusers/{user_token} Retrieve user #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/marqeta-accountusers-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

marqeta-accountusers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: support@marqeta.com
    name: Marqeta
  description: Marqeta's Core API endpoints, conveniently annotated to enable code generation (including SDKs), test cases, and documentation. Currently in beta.
  termsOfService: https://www.marqeta.com/api-terms
  title: Core accepted countries Account Users API
  version: 3.0.39
servers:
- url: /v3
security:
- mqAppAndAccessToken: []
tags:
- name: AccountUsers
paths:
  /accountusers/{user_token}:
    get:
      description: Retrieve a user's account information.
      operationId: retrieveAccountUser
      parameters:
      - description: 'Unique identifier of the user to retrieve.

          Send a `GET` request to `/account/users` to retrieve existing user tokens.'
        explode: false
        in: path
        name: user_token
        required: true
        schema:
          type: string
          x-allowableValues: Existing user token
        style: simple
      responses:
        '200':
          content:
            application/json:
              example:
                address1: Addres Test
                address2: 1 Under Stair Case Rd
                city: New York
                country: US
                credit_accounts:
                - is_primary: true
                  token: account-token-5678
                email: abc@hogwarts.edu
                first_name: Harry
                last_name: Potter
                phone: '0000000000'
                state: NY
                token: user-token-1234
                zip: '11217'
              schema:
                $ref: '#/components/schemas/AccountUserResponse'
          description: User details and associated account information
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Unexpected error
      security:
      - zionToken: []
      summary: Retrieve user
      tags:
      - AccountUsers
components:
  schemas:
    AccountUserResponse:
      description: Object containing user information
      properties:
        address1:
          type: string
        address2:
          type: string
        city:
          type: string
        country:
          type: string
        credit_accounts:
          items:
            properties:
              is_primary:
                type: boolean
              token:
                type: string
            title: AccountUserResponseCreditAccounts
            type: object
          type: array
        email:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        phone:
          type: string
        state:
          type: string
        token:
          type: string
        zip:
          type: string
      type: object
    Error:
      properties:
        code:
          type: integer
        message:
          type: string
      type: object
  securitySchemes:
    mqAppAndAccessToken:
      scheme: basic
      type: http