> **For AI agents:** this page is a focused, LLM-optimized view of a
> single Fiber AI operation. Before calling it, fetch the routing
> instructions at [`https://api.fiber.ai/llms.txt`](https://api.fiber.ai/llms.txt) and the full operation
> index at [`https://api.fiber.ai/ai-docs/index.md`](https://api.fiber.ai/ai-docs/index.md).

# exportProspects

`POST /v1/audiences/{audienceId}/export/prospects`

**Tags:** `Audiences`

Export audience prospects to CSV

**Endpoint:** `https://api.fiber.ai/v1/audiences/{audienceId}/export/prospects`

## Description

Triggers CSV export of prospects (people) in an audience. The export runs asynchronously - CSV links will be sent to the provided email address (if userEmail is provided) or returned in the API response. Export quota limits apply per usage period. Optionally filter to only export prospects with verified emails or phones.

⚡ Rate limit: 120 requests per 1 minute

💰 Cost: FREE! No credits are charged for this API. ⓘ

## Parameters

| Name | In | Required | Description |
| --- | --- | --- | --- |
| `audienceId` | path | yes | The unique ID of the audience. |

## Request body (JSON Schema)

```json
{
  "type": "object",
  "properties": {
    "apiKey": {
      "type": "string",
      "description": "Your Fiber API key"
    },
    "format": {
      "type": "string",
      "enum": [
        "PROSPECT_GENERIC_CSV",
        "PROSPECT_LI_ADS_CSV",
        "PROSPECT_GOOGLE_ADS_CSV",
        "PROSPECT_META_ADS_CSV",
        "COMPANY_GENERIC_CSV",
        "COMPANY_LI_ADS_CSV",
        "LI_PROFILE_URL_FIXUP",
        "LI_COMPANY_URL_FIXUP",
        "GOOGLE_MAPS_CSV",
        "DOMAIN_AGENT_CSV"
      ],
      "description": "The format of the exported file."
    },
    "maxRowsToExport": {
      "type": [
        "integer",
        "null"
      ],
      "exclusiveMinimum": 0,
      "description": "Maximum number of rows to export. Defaults to remaining export quota."
    },
    "excludeFields": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "fiber_id",
          "first_name",
          "last_name",
          "full_name",
          "profile_url",
          "company",
          "company_domain",
          "company_description",
          "company_linkedin_url",
          "work_location",
          "employment_type",
          "job_title",
          "headline",
          "summary",
          "job_summary",
          "job_start_date",
          "months_in_current_job",
          "months_in_current_company",
          "city",
          "state",
          "country",
          "country_code",
          "timezone",
          "latitude",
          "longitude",
          "work_email_1",
          "work_email_2",
          "personal_email_1",
          "personal_email_2",
          "other_emails",
          "emails_verified",
          "phone_number_1",
          "phone_number_2",
          "other_phone_numbers",
          "profile_pic_url",
          "num_followers",
          "num_connections",
          "age",
          "education",
          "years_of_experience",
          "num_jobs",
          "past_jobs",
          "languages",
          "tags",
          "skills",
          "tenures",
          "industry",
          "past_jobs_raw",
          "job_academic_qualifications",
          "job_seniority",
          "job_function",
          "certifications",
          "certifications_raw",
          "patents",
          "patents_raw",
          "articles",
          "articles_raw",
          "num_recommendations_received",
          "volunteering",
          "volunteering_raw",
          "projects",
          "projects_raw",
          "tenures_raw",
          "courses",
          "courses_raw",
          "is_in_stealth",
          "publications",
          "publications_raw",
          "company_hq_city",
          "company_hq_state",
          "company_hq_country",
          "company_hq_country_code",
          "company_hq_latitude",
          "company_hq_longitude",
          "company_stock_ticker",
          "company_employee_trends",
          "company_founding_date",
          "company_employee_count_lower",
          "company_employee_count_upper",
          "company_industries",
          "company_num_followers",
          "company_naics_codes",
          "company_funding_rounds",
          "company_funding_stage",
          "company_total_funding_usd",
          "company_last_funded_at",
          "company_last_funding_usd",
          "company_revenue_usd",
          "company_investors",
          "company_tags",
          "company_market_cap_usd",
          "company_office_countries",
          "company_num_offices",
          "company_accelerators",
          "company_job_posting_stats",
          "custom"
        ]
      },
      "default": [],
      "description": "The fields to exclude from the export."
    },
    "onlyWithContacts": {
      "type": "boolean",
      "default": false,
      "description": "If true, only export prospects with verified emails or phones"
    },
    "userEmail": {
      "type": [
        "string",
        "null"
      ],
      "format": "email",
      "description": "Optional email address to receive CSV export links. If not provided, no email will be sent."
    }
  },
  "required": [
    "apiKey",
    "format"
  ]
}
```

## Response — success (JSON Schema)

```json
{
  "type": "object",
  "properties": {
    "output": {
      "type": "object",
      "properties": {
        "message": {
          "type": "string",
          "description": "A human-readable message about the export status."
        },
        "estimatedRows": {
          "type": "number",
          "description": "The estimated number of rows that will be exported."
        },
        "maxRowsAllowed": {
          "type": "number",
          "description": "The maximum rows allowed based on the export quota."
        }
      },
      "required": [
        "message",
        "estimatedRows",
        "maxRowsAllowed"
      ]
    },
    "chargeInfo": {
      "oneOf": [
        {
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "enum": [
                "charged-now"
              ]
            },
            "creditsCharged": {
              "type": "number"
            },
            "lowCreditAlert": {
              "type": [
                "object",
                "null"
              ],
              "properties": {
                "getMoreCreditsUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "URL to top up credits or restart billing cycle to get fresh credits."
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable credits warning."
                },
                "availableCredits": {
                  "type": "number",
                  "description": "Number of credits remaining in the current billing period."
                }
              },
              "required": [
                "getMoreCreditsUrl",
                "message",
                "availableCredits"
              ],
              "description": "Contains a link to get more credits, a warning message, and the remaining credit count."
            }
          },
          "required": [
            "method",
            "creditsCharged"
          ],
          "description": "Credits were charged immediately for this operation"
        },
        {
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "enum": [
                "charging-later"
              ]
            },
            "message": {
              "type": "string"
            },
            "lowCreditAlert": {
              "type": [
                "object",
                "null"
              ],
              "properties": {
                "getMoreCreditsUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "URL to top up credits or restart billing cycle to get fresh credits."
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable credits warning."
                },
                "availableCredits": {
                  "type": "number",
                  "description": "Number of credits remaining in the current billing period."
                }
              },
              "required": [
                "getMoreCreditsUrl",
                "message",
                "availableCredits"
              ],
              "description": "Contains a link to get more credits, a warning message, and the remaining credit count."
            }
          },
          "required": [
            "method",
            "message"
          ],
          "description": "Credits will be charged after the operation completes"
        },
        {
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "enum": [
                "charged-for-async-process"
              ]
            },
            "creditsCharged": {
              "type": "number"
            },
            "message": {
              "type": "string"
            },
            "lowCreditAlert": {
              "type": [
                "object",
                "null"
              ],
              "properties": {
                "getMoreCreditsUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "URL to top up credits or restart billing cycle to get fresh credits."
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable credits warning."
                },
                "availableCredits": {
                  "type": "number",
                  "description": "Number of credits remaining in the current billing period."
                }
              },
              "required": [
                "getMoreCreditsUrl",
                "message",
                "availableCredits"
              ],
              "description": "Contains a link to get more credits, a warning message, and the remaining credit count."
            }
          },
          "required": [
            "method",
            "creditsCharged",
            "message"
          ],
          "description": "Credits that were charged for an asynchronous operation"
        },
        {
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "enum": [
                "free"
              ]
            },
            "message": {
              "type": "string"
            },
            "lowCreditAlert": {
              "type": [
                "object",
                "null"
              ],
              "properties": {
                "getMoreCreditsUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "URL to top up credits or restart billing cycle to get fresh credits."
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable credits warning."
                },
                "availableCredits": {
                  "type": "number",
                  "description": "Number of credits remaining in the current billing period."
                }
              },
              "required": [
                "getMoreCreditsUrl",
                "message",
                "availableCredits"
              ],
              "description": "Contains a link to get more credits, a warning message, and the remaining credit count."
            }
          },
          "required": [
            "method",
            "message"
          ],
          "description": "No credits were charged for this operation"
        },
        {
          "type": "object",
          "properties": {
            "method": {
              "type": "string",
              "enum": [
                "credits-refunded"
              ]
            },
            "creditsRefunded": {
              "type": "number"
            },
            "message": {
              "type": "string"
            },
            "lowCreditAlert": {
              "type": [
                "object",
                "null"
              ],
              "properties": {
                "getMoreCreditsUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "URL to top up credits or restart billing cycle to get fresh credits."
                },
                "message": {
                  "type": "string",
                  "description": "Human-readable credits warning."
                },
                "availableCredits": {
                  "type": "number",
                  "description": "Number of credits remaining in the current billing period."
                }
              },
              "required": [
                "getMoreCreditsUrl",
                "message",
                "availableCredits"
              ],
              "description": "Contains a link to get more credits, a warning message, and the remaining credit count."
            }
          },
          "required": [
            "method",
            "creditsRefunded",
            "message"
          ],
          "description": "Credits were refunded for this operation"
        }
      ]
    },
    "warnings": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "object",
        "properties": {
          "field": {
            "type": "string",
            "description": "Full path to extraneous field (e.g., 'searchParams.ExtraField')"
          },
          "message": {
            "type": "string",
            "description": "Warning message"
          }
        },
        "required": [
          "field",
          "message"
        ]
      },
      "description": "Warnings about extraneous fields in request"
    },
    "advice": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": [],
      "description": "Tips, recommendations, and suggestions for using this API effectively."
    }
  },
  "required": [
    "output",
    "chargeInfo",
    "advice"
  ],
  "additionalProperties": false
}
```

---

Canonical JSON: [`https://api.fiber.ai/openapi.json`](https://api.fiber.ai/openapi.json)
Operation index: [`https://api.fiber.ai/ai-docs/index.md`](https://api.fiber.ai/ai-docs/index.md)
