Listing (FQL)

From Facebook Developer Wiki

Jump to: navigation, search


Description

As we announced on the Platform Status Feed, all Marketplace APIs (including this FQL table) are getting deprecated March 3, 2009.

The FQL listing table. Query this table to return information about a listing in Facebook Marketplace.

To structure your query, use the table name (listing in this case) in the FROM clause. The items in the Name column correspond to columns in the table that can be referenced in the SELECT and WHERE clauses.

In order to make your query indexable, the WHERE in your query should contain an = or IN clause for one of the columns marked with a * in the Indexable column of the table.

The See Also section lists API functions that work on similar data; their documentation pages contain additional information about the contents of the column and example FQL queries.

Columns

IndexableNameTypeDescription
* listing_id int The ID of the Marketplace listing being queried.
url string The URL of the listing being queried.
title string The title or headline of the listing being queried.
description string The description of the listing being queried.
price string The price of the item in the listing being queried.
* poster int The user ID of person who posted the listing being queried.
update_time string The time that the listing being queried was most recently updated.
category string The primary category of the listing being queried.
subcategory string The subcategory of the listing being queried.
image_urls string The URLs to photos of the item in the listing being queried.
condition string The condition of the item in the listing being queried.
isbn string For the sale of a book, the ISBN number of the book in the listing being queried.
num_beds int The number of bedrooms for the dwelling in the listing being queried.
num_baths int The number of bathrooms for the dwelling in the listing being queried.
dogs bool Indicates whether dogs are allowed for the listing being queried.
cats bool Indicates whether cats are allowed for the listing being queried.
smoking bool Indicates whether smoking is allowed for the listing being queried.
square_footage string The number of square feet in the listing being queried.
street string The street on which the listing being queried is located.
crossstreet string The cross-street nearest to where the listing being queried is located.
postal string The post code/zip code for the listing being queried.
rent int The amount of rent to pay for the listing being queried.
pay int The amount that the position in the listing being queried pays.
full bool Indicates whether the listing being queried is for a full time or part time position.
intern bool Indicates whether the listing being queried is for an internship.
summer bool Indicates whether the listing being queried is for a seasonal position.
nonprofit bool Indicates whether the listing being queried is for a position at a non-profit.
pay_type string The type of pay for the position in the listing being queried.

See Also

reference