Luxury Presence Media API

The Media API from Luxury Presence — 1 operation(s) for media.

Operations 1

GET /cms/v1/media/{mediaId} Fetch a media record by ID #

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/luxury-presence-media-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

luxury-presence-media-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Documentation Agents Media API
  description: Luxury Presence API Documentation.
  version: '1.0'
  contact: {}
servers:
- url: https://api.luxurypresence.com
  description: Production API server
security:
- ApiKeyAuth: []
tags:
- name: Media
paths:
  /cms/v1/media/{mediaId}:
    get:
      operationId: MediaReadController_getMedia
      parameters:
      - name: mediaId
        required: true
        in: path
        description: The UUID of the media record to fetch
        schema:
          example: f534988e-4671-4709-bb82-c06bc8b02d87
          type: string
      responses:
        '200':
          description: The media record has been successfully fetched.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMediaResponseDto'
        '400':
          description: Invalid mediaId format or missing company context.
        '404':
          description: Media not found.
        '500':
          description: Internal server error — GraphQL or upstream failure.
      summary: Fetch a media record by ID
      tags:
      - Media
components:
  schemas:
    GetMediaResponseDto:
      type: object
      properties:
        mediaId:
          type: string
          example: f534988e-4671-4709-bb82-c06bc8b02d87
          description: The media UUID
        resourceType:
          type: string
          example: image
          description: The media resource type (e.g. "image", "video")
        format:
          type: string
          example: jpg
          description: The media format (e.g. "jpg", "png", "webp", "svg")
        width:
          type: number
          example: 1920
          description: Original width in pixels
        height:
          type: number
          example: 1080
          description: Original height in pixels
        alt:
          type: string
          example: A beautiful oceanfront property
          description: Alt text for the media
        description:
          type: string
          example: A panoramic view of the oceanfront property at sunset
          description: Media description
        url:
          type: string
          example: https://cdn.luxurypresence.com/media/example.jpg
          description: The raw/base URL as originally uploaded. No CDN width transformation applied. Use this when you need the untransformed full-resolution asset.
        originalUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_original.jpg
          description: The Cloudinary or Cloudflare URL without any size transformation. Falls back to url if no CDN URL is available. Use this for the highest-quality untransformed version.
        thumbnailUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_thumbnail.jpg
          description: CDN URL resized to 320px wide. Ideal for small previews, thumbnails, and icons. May be omitted — use url as fallback.
        smallUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_small.jpg
          description: CDN URL resized to 960px wide. Ideal for mobile-sized images. May be omitted — use url as fallback.
        mediumUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_medium.jpg
          description: CDN URL resized to 1280px wide. Good general-purpose size for tablet and medium displays. May be omitted — use url as fallback.
        largeUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_large.jpg
          description: CDN URL resized to 1920px wide. Ideal for hero images and full-width desktop displays. May be omitted — use url as fallback.
        xLargeUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_xlarge.jpg
          description: CDN URL resized to 2560px wide. For large and retina displays. May be omitted — falls back to largeUrl on the CDN.
        xxLargeUrl:
          type: string
          example: https://cdn.luxurypresence.com/media/example_xxlarge.jpg
          description: CDN URL resized to 3456px wide. For ultra-high-resolution displays. May be omitted — falls back to largeUrl on the CDN.
      required:
      - mediaId
      - url
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key generated from the Luxury Presence dashboard (Settings > API Keys). Sent as the x-api-key request header.