> ## Documentation Index
> Fetch the complete documentation index at: https://apidocs.ripio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Account

> Returns the sanitized account profile for the authenticated user. Same shape for all countries: country-specific internal fields (e.g. `cuit`/`cvu` in AR, `rfc` in MX, `paymatico_reference`/`investor_survey` in ES/CL) are not part of this public contract.

---

**Authorization**

- Requires a valid API key.



## OpenAPI

````yaml get /wallet/account/
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /wallet/account/:
    get:
      tags:
        - Ripio Wallet
      summary: accounts - Get Account
      description: >-
        Returns the sanitized account profile for the authenticated user. Same
        shape for all countries: country-specific internal fields (e.g.
        `cuit`/`cvu` in AR, `rfc` in MX, `paymatico_reference`/`investor_survey`
        in ES/CL) are not part of this public contract.


        ---


        **Authorization**


        - Requires a valid API key.
      parameters:
        - in: header
          name: authorization
          required: true
          description: The API key as a string.
          schema:
            type: string
        - in: header
          name: signature
          required: true
          description: >-
            See the [Generating
            Signature](/static/api/authentication#generating-signature) section
            for more details.
          schema:
            type: string
        - in: header
          name: timestamp
          required: true
          description: >-
            A timestamp in milliseconds. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
        - in: header
          name: timstamp-tolerance
          required: false
          description: >-
            An additional, non-required parameter, that you can send to specify
            the number of milliseconds after the timestamp for the request to be
            valid. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Account profile retrieved successfully.
                properties:
                  error_code:
                    type: string
                    example: null
                  message:
                    type: string
                    example: null
                  data:
                    description: >-
                      Sanitized account profile. Same shape for every country —
                      country-specific internal fields (`cuit`/`cvu`, `rfc`,
                      `paymatico_reference`, `investor_survey`, etc.) are not
                      part of the public contract.
                    properties:
                      id:
                        description: Internal Ripio account ID.
                        type: integer
                        example: 12345
                      first_name:
                        type: string
                        example: Juan
                      last_name:
                        type: string
                        example: Perez
                      birthday:
                        type: string
                        example: '1990-05-20'
                      country:
                        description: ISO 3166-1 alpha-2 country code.
                        type: string
                        example: AR
                      currency:
                        description: Account default fiat currency (ISO 4217 code).
                        type: string
                        example: ARS
                      postal_code:
                        type: string
                        example: '1900'
                      gender:
                        description: Gender as recorded during KYC verification.
                        type: string
                        example: M
                      validation_level:
                        description: >-
                          KYC level: 0=unverified, 1=basic, 2=intermediate,
                          3=advanced, 4=full.
                        type: integer
                        example: 3
                      id_number:
                        description: National ID number (e.g. DNI in AR).
                        type: string
                        example: '30123456'
                      id_number_type:
                        description: Type of the national ID document. Null if unset.
                        type: string
                        example: DNI
                      phone:
                        description: E.164 formatted phone number.
                        type: string
                        example: '+5491112345678'
                      username:
                        description: Ripio username (email address).
                        type: string
                        example: user@example.com
                      phone_validated:
                        type: boolean
                        example: true
                      status:
                        description: >-
                          Account status. `OK` = active, `NR` = needs review,
                          `SS` = suspended, `CD` = closed.
                        type: string
                        example: OK
                      address:
                        type: string
                        example: Av. Siempre Viva 742
                      address_number:
                        type: string
                        example: '742'
                      address_flat:
                        type: string
                        example: null
                      city:
                        type: string
                        example: La Plata
                      state:
                        type: string
                        example: Buenos Aires
                      district:
                        type: string
                        example: null
                      kyc_status:
                        description: >-
                          Status of the account's active or last finished KYC
                          process. `OK` = approved, `INI` = initial, `UNR` =
                          unreviewed, `DIS` = disapproved. Null if no KYC
                          process exists.
                        type: string
                        example: OK
                      schemas:
                        description: >-
                          KYC validation schemas applied to the account, in
                          application order.
                        items:
                          properties:
                            schema:
                              description: Validation schema code.
                              type: string
                              example: FULL
                            status:
                              description: >-
                                Status of this schema. `OK` = approved, `INI` =
                                initial, `UNR` = unreviewed, `DIS` =
                                disapproved.
                              type: string
                              example: OK
                          required:
                            - schema
                            - status
                          type: object
                        type: array
                        example:
                          - schema: FULL
                            status: OK
                      rp_tag:
                        description: Unique Ripio handle (@tag).
                        type: string
                        example: juanperez
                      reference_currency:
                        description: >-
                          Currency used as reference for valuations (usually
                          USD).
                        type: string
                        example: USD
                      deposit_currency:
                        description: Default currency for deposits.
                        type: string
                        example: ARS
                      features:
                        description: >-
                          Feature flags for this account. Structure varies by
                          flag.
                        type: object
                        example: {}
                    required:
                      - id
                      - first_name
                      - last_name
                      - birthday
                      - country
                      - currency
                      - postal_code
                      - gender
                      - validation_level
                      - id_number
                      - id_number_type
                      - phone
                      - username
                      - phone_validated
                      - status
                      - address
                      - address_number
                      - address_flat
                      - city
                      - state
                      - district
                      - kyc_status
                      - schemas
                      - rp_tag
                      - reference_currency
                      - deposit_currency
                      - features
                    type: object
                required:
                  - error_code
                  - message
                  - data
                type: object
                example:
                  error_code: null
                  message: null
                  data:
                    id: 12345
                    first_name: Juan
                    last_name: Perez
                    birthday: '1990-05-20'
                    country: AR
                    currency: ARS
                    postal_code: '1900'
                    gender: M
                    validation_level: 3
                    id_number: '30123456'
                    id_number_type: DNI
                    phone: '+5491112345678'
                    username: user@example.com
                    phone_validated: true
                    status: OK
                    address: Av. Siempre Viva 742
                    address_number: '742'
                    address_flat: null
                    city: La Plata
                    state: Buenos Aires
                    district: null
                    kyc_status: OK
                    schemas:
                      - schema: FULL
                        status: OK
                    rp_tag: juanperez
                    reference_currency: USD
                    deposit_currency: ARS
                    features: {}
        '400':
          description: Error response 400
        '401':
          description: Error response 401
        '403':
          description: Error response 403

````