# Stripe Marketplace Payment Gateways Scraper

**Use case:** 

Scrape payment gateway apps from the Stripe App Marketplace with name, description, developer, and integration details. Export to JSON or CSV.

## Input

```json
{
  "searchQuery": "payment processing",
  "categories": "payment_gateways",
  "pricingTypes": [
    "free",
    "subscription"
  ],
  "maxItems": 5,
  "worksWith": [
    "stripe.dashboard.drawer.default",
    "stripe.dashboard.customer.detail"
  ],
  "visibility": [
    "ui_extension"
  ],
  "enrichOutput": false
}
```

## Output

```json
{
  "id": {
    "label": "App ID",
    "format": "text"
  },
  "name": {
    "label": "App Name",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "subtitle": {
    "label": "Subtitle",
    "format": "text"
  },
  "built_by": {
    "label": "Built By",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "is_live": {
    "label": "Is Live",
    "format": "text"
  },
  "coming_soon": {
    "label": "Coming Soon",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "text"
  },
  "capability_type": {
    "label": "Capability Type",
    "format": "text"
  },
  "based_in": {
    "label": "Based In",
    "format": "text"
  },
  "pricing_type": {
    "label": "Pricing Type",
    "format": "text"
  },
  "pricing_has_free_trial": {
    "label": "Has Free Trial",
    "format": "text"
  },
  "pricing_details_url": {
    "label": "Pricing Details URL",
    "format": "url"
  },
  "platform_public_app_id": {
    "label": "Platform Public App ID",
    "format": "text"
  },
  "platform_app_version": {
    "label": "Platform App Version",
    "format": "text"
  },
  "listing_version": {
    "label": "Listing Version",
    "format": "number"
  },
  "parent_status": {
    "label": "Parent Status",
    "format": "text"
  },
  "install_type": {
    "label": "Install Type",
    "format": "text"
  },
  "install_cta": {
    "label": "Install CTA",
    "format": "text"
  },
  "external_install_url": {
    "label": "External Install URL",
    "format": "url"
  },
  "logo": {
    "label": "Logo",
    "format": "url"
  },
  "cdn_logo": {
    "label": "CDN Logo",
    "format": "url"
  },
  "safe_names": {
    "label": "Safe Names",
    "format": "text"
  },
  "developer_id": {
    "label": "Developer ID",
    "format": "text"
  },
  "platform_app_id": {
    "label": "Platform App ID",
    "format": "text"
  },
  "token": {
    "label": "Token",
    "format": "text"
  },
  "permissions": {
    "label": "Permissions",
    "format": "text"
  },
  "supported_languages": {
    "label": "Supported Languages",
    "format": "text"
  },
  "works_with": {
    "label": "Works With",
    "format": "text"
  },
  "key_features": {
    "label": "Key Features",
    "format": "json"
  },
  "support_email": {
    "label": "Support Email",
    "format": "text"
  },
  "support_site_url": {
    "label": "Support Site URL",
    "format": "url"
  },
  "website_url": {
    "label": "Website URL",
    "format": "url"
  },
  "faq_url": {
    "label": "FAQ URL",
    "format": "url"
  },
  "technical_doc_url": {
    "label": "Technical Doc URL",
    "format": "url"
  },
  "privacy_policy_url": {
    "label": "Privacy Policy URL",
    "format": "url"
  },
  "tos_url": {
    "label": "Terms of Service URL",
    "format": "url"
  },
  "app_url": {
    "label": "App URL",
    "format": "url"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  }
}
```

## About this Actor

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