## facebook/marketplace-item

`GET /v1/facebook/marketplace-item`

One Marketplace listing in full: description, photos, attributes, availability and price as displayed. Fields the seller did not publish stay null.

*Marketplace item*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Listing id from facebook/marketplace-search (or pass url). — e.g. `28157874247229481` |
| `url` | no | Full marketplace item URL — alternative to id. |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 2 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/facebook/marketplace-item?id=28157874247229481" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "attributes": [],
  "category_id": "example",
  "delivery_types": [],
  "description": "example",
  "id": "example",
  "photos": [
    "example"
  ],
  "platform": "example",
  "price": {
    "formatted": "example"
  },
  "title": "example",
  "url": "https://example.com/example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/facebook/marketplace-item#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/facebook/marketplace-item.json)
