Skip to content

Store Listings

Tools for managing app store listings across languages.

Text Limits

Field Max Length
Title 50 characters
Short description 80 characters
Full description 4,000 characters

Use validate_listing_text to check lengths before updating.


get_listing

Get the store listing for a specific language.

Parameter Type Required Default Description
package_name string Yes App package name
language string No en-US Language code (e.g., en-US, es-ES, fr-FR)

Returns: language, title, short_description, full_description, video

get_listing("com.example.myapp", language="es-ES")

update_listing

Update the store listing for a specific language. Only provided fields are updated.

Parameter Type Required Description
package_name string Yes App package name
language string Yes Language code
title string No App title (max 50 chars)
full_description string No Full description (max 4,000 chars)
short_description string No Short description (max 80 chars)
video string No YouTube video URL
update_listing(
    package_name="com.example.myapp",
    language="en-US",
    title="My Awesome App",
    short_description="The best app for productivity",
    full_description="A comprehensive productivity app that helps you..."
)

list_all_listings

List store listings for all configured languages.

Parameter Type Required Description
package_name string Yes App package name
list_all_listings("com.example.myapp")

Returns a list of listings for every language configured in the Play Console.