FlyFrontier App Scraper

Scrapes flight availability and pricing from FlyFrontier’s App

Endpoint

POST https://api.crawlbyte.ai/api/tasks

Basic Configuration for GET Request (Required)

{
  "type": "flyfrontierapp",
  "input": [
    "https://mtier.flyfrontier.com/flightavailabilityssv/GetTripSchedule?Origin=AUS&Destination=ATL&BeginDate=2025-08-24&EndDate=2026-08-28&Type=5"
  ],
  "multithread": false
}

Parameters

Field
Type
Description

type

string

Always "flyfrontierapp"

input

array

Array of full FlyFrontier app URLs you want to scrape

multithread

boolean

Use true for faster processing with multiple threads

Advanced Configuration (Optional)

Optional Parameters

Field
Type
Description

method

string

GET, POST, PUT, PATCH

body

string

Stringified JSON

proxy

string

http://username:password@ip:port

Pricing

  • $0.002 per successful task This is a pay-as-you-go pricing model — you're only charged when a FlyFrontier task successfully returns flight data.

You can view your current credit balance and usage history in the Crawlbyte Dashboardarrow-up-right.

Response

The response contains metadata about the task. For flyfrontierapp type, the most important fields are status and result.

Status Types

Status
Meaning

queued

Task was accepted and added to the processing queue.

processing

Task is currently running.

completed

Task finished and flight data was collected.

failed

Task encountered an error (invalid URL, etc.).

Polling

If status is queued or processing, continue polling the task until it's completed or failed.

  • You’ll receive the same structure with an updated status.

  • Only poll until you receive completed or failed.

  • Recommended interval: every 3–5 seconds.

SDK Usage

You can run this task using any official Crawlbyte SDK:

Each SDK provides a simple way to:

  • Create the task

  • Poll for status

  • Handle the final result

Refer to the SDKs section for installation, examples, and setup instructions.

Notes

  • Only valid FlyFrontier App URLs will return results.

  • Crawlbyte handles retries, rendering, fingerprinting, and anti-bot logic internally — no need to manage it yourself.

  • Use multithread: true in advanced settings if running large volumes.

Last updated