# Stripe App Detail Extractor

**Use case:** 

Extract one Stripe Marketplace app detail page into structured vendor, category, link, and feature data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://marketplace.stripe.com/apps/1capture"
    }
  ],
  "searchTerms": [
    "accounting"
  ],
  "categories": [],
  "maxItems": 1,
  "includeDetails": true
}
```

## Output

```json
{
  "name": {
    "label": "App name",
    "format": "text"
  },
  "safeName": {
    "label": "Safe name",
    "format": "text"
  },
  "marketplaceUrl": {
    "label": "Marketplace URL",
    "format": "link"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "categories": {
    "label": "Category IDs",
    "format": "array"
  },
  "categoryNames": {
    "label": "Categories",
    "format": "array"
  },
  "pricingType": {
    "label": "Pricing type",
    "format": "text"
  },
  "hasFreeTrial": {
    "label": "Free trial",
    "format": "boolean"
  },
  "installUrl": {
    "label": "Install URL",
    "format": "link"
  },
  "websiteUrl": {
    "label": "Website",
    "format": "link"
  },
  "supportUrl": {
    "label": "Support",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Stripe App Marketplace Scraper](https://apify.com/automation-lab/stripe-app-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/stripe-app-marketplace-scraper) to learn more, explore other use cases, and run it yourself.