Havenly User Profile API

The User Profile API from Havenly — 2 operation(s) for user profile.

Operations 2

GET /user-profile User Profile (deprecated) #
GET /user-profiles User Profiles #

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/havenly-user-profile-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

havenly-user-profile-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Havenly Addresses User Profile API
  version: 1.0.0
  description: 'Havenly REST API powering the interior-design platform: users and profiles, addresses, design boards and board products, vendor product variants (catalog), attribute types, board feedback, and user opinions/likes. Responses use HAL+JSON (_links/_embedded) with page/limit pagination and zf-doctrine-querybuilder query filters. Authentication is OAuth2 (password grant) returning a Bearer token; payment testing in non-production uses Stripe test cards. Derived from Havenly public Postman API documentation at https://api-docs.havenly.com.'
  contact:
    email: developers@havenly.com
    url: https://api-docs.havenly.com/
servers:
- url: https://api.havenly.com
  description: Production
security:
- bearerAuth: []
tags:
- name: User Profile
paths:
  /user-profile:
    get:
      operationId: userProfile
      summary: User Profile (deprecated)
      tags:
      - User Profile
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                id: 193860
                username: josh+admin@havenly.com
                role: admin
                email: josh+admin@havenly.com
                name: Josh Richard
                first_name: Josh
                last_name: Richard
                unread_message_count: null
                avatar: null
                fbId: null
                _links: []
        '401':
          description: Unauthorized
      description: Used to retrieve user information about the currently authenticated user
      security:
      - bearerAuth: []
  /user-profiles:
    get:
      operationId: userProfiles
      summary: User Profiles
      tags:
      - User Profile
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                count: 1
                total: 1
                collectionTotal: 98445
                _links:
                  self:
                    href: http://api.havenly.local/user-profiles?page=1
                  first:
                    href: http://api.havenly.local/user-profiles
                  last:
                    href: http://api.havenly.local/user-profiles?page=1
                _embedded:
                  user_profile:
                  - id: 98445
                    converted: false
                    created:
                      date: '2017-08-28 16:46:24.728860'
                      timezone_type: 3
                      timezone: UTC
                    modified:
                      date: '2017-08-28 16:46:24.728818'
                      timezone_type: 3
                      timezone: UTC
                    roomPackage: null
                    roomType: null
                    profileStyles: null
                    user_id: 54321
                    username: RahsheedaLewis
                    role: customer
                    email: 54321-customer@havenly.com
                    name: Rahsheeda Lewis
                    first_name: Rahsheeda
                    last_name: Lewis
                    unread_message_count: '0'
                    preferred_designer_id: null
                    avatar: null
                    fbId: '10208334639543500'
                    _links:
                      self:
                        href: http://api.havenly.local/user-profiles/98445
                page_count: 1
                page_size: 25
                total_items: 1
                page: 1
        '401':
          description: Unauthorized
      description: Used to retrieve user information about the currently authenticated user
      security:
      - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'OAuth2 access token from POST /oauth (password grant), sent as Authorization: Bearer <token>.'
    oauth2:
      type: oauth2
      flows:
        password:
          tokenUrl: https://api.havenly.com/oauth
          scopes: {}