Example CURL

curl -X GET -H 'Content-Type: text/csv' \\
 -H 'Authorization: Bearer <Auth Token>' \\
 '<https://api.brdg.app/api/v4/introductions/export?from_date=2025-01-01&to_date=2025-02-01>'

Request: (Host: https://api.brdg.app)

GET /api/v4/introductions/export
Content-Type: text/csv
Authorization: Bearer <Auth Token>

Request params (optional):

// Date range should be up to 6 months only
// If no date range provided, it will retrieve 30 days worth of data
'?from_date=2025-01-01&to_date=2025-02-01'

// Import your domain intros via scope
'?from_date=2025-01-01&to_date=2025-02-01&scope=domain'

Response format:

[
  {
    "ID": "intro_98765",
    "Status": "Completed",
    "Date Intro Created": "2025-01-15T09:30:00Z",
    "Last Updated": "2025-01-18T17:12:00Z",
    "Intro Type": "Opt-in",
    "Category": "Fundraising",
    
    "Connector": "[email protected]",
    "Connector Message to Person 1": "Just connecting you two as discussed. Hope it’s helpful!",
    "Connector Message to Person 2": "This founder is building something right up your alley — thought you'd want to meet.",

    "Person 1 Name": "Alice Johnson",
    "Person 1 Email": "[email protected]",
    "Person 1 LinkedIn": "<https://www.linkedin.com/in/alicejohnson>",
    "Person 1 Company": "example.com",
    "Person 1 Role": "CEO",
    "Person 1 Provided Reason": "Looking to connect with early-stage investors",
    "Person 1 Feedback Rating": "Great",
    "Person 1 Feedback Comment": "The intro was spot on. Thank you!",
    "Person 1 Decline Reason": "",
    "Person 1 Decline Comment": "",

    "Person 2 Name": "Bob Smith",
    "Person 2 Email": "[email protected]",
    "Person 2 LinkedIn": "<https://www.linkedin.com/in/bsmithvc>",
    "Person 2 Company": "vcfirm.com",
    "Person 2 Role": "Partner",
    "Person 2 Feedback Rating": "Good",
    "Person 2 Feedback Comment": "Solid team, not a fit for us right now.",
    "Person 2 Decline Reason": "Too early stage",
    "Person 2 Decline Comment": "We're focused on post-revenue only.",
    
    "Outcomes": "[{\\"amount\\":500000,\\"currency\\":\\"USD\\",\\"note\\":\\"Closed seed round with XYZ Capital\\",\\"submitted_by\\":\\"[email protected]\\",\\"submitted_at\\":\\"2025-01-22T14:00:00Z\\"}]"
  }
]