> ## Documentation Index
> Fetch the complete documentation index at: https://docs.social-api.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get one Google Business Profile media item

> Returns one photo or video from a location's profile. mediaId accepts either the bare id or the full Google resource name returned by the list endpoint.



## OpenAPI

````yaml /api-reference/openapi.json get /platforms/google/accounts/{id}/media/{mediaId}
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /platforms/google/accounts/{id}/media/{mediaId}:
    get:
      tags:
        - Google
      summary: Get one Google Business Profile media item
      description: >-
        Returns one photo or video from a location's profile. mediaId accepts
        either the bare id or the full Google resource name returned by the list
        endpoint.
      parameters:
        - description: Connected account ID
          name: id
          in: path
          required: true
          schema:
            type: string
        - description: Media item ID
          name: mediaId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.GoogleMediaItem'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Unknown account or media item
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.GoogleMediaItem:
      type: object
      properties:
        attribution:
          $ref: '#/components/schemas/api_endpoints.GoogleMediaAttribution'
        category:
          type: string
          example: INTERIOR
        created_at:
          type: string
          example: '2026-03-01T12:00:00Z'
        description:
          type: string
          example: Main dining room
        height_pixels:
          type: integer
          example: 1200
        id:
          type: string
          example: accounts/123/locations/456/media/789
        media:
          $ref: '#/components/schemas/api_endpoints.MediaRef'
        thumbnail_url:
          type: string
        width_pixels:
          type: integer
          example: 1600
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.GoogleMediaAttribution:
      type: object
      properties:
        profile_name:
          type: string
          example: Jane S.
        profile_photo_url:
          type: string
        profile_url:
          type: string
        takedown_url:
          type: string
    api_endpoints.MediaRef:
      type: object
      properties:
        type:
          type: string
          enum:
            - image
            - video
          example: image
        url:
          type: string
          example: https://lh3.googleusercontent.com/p/abc
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````