Candidates

Search for Candidates

This endpoint retrieves federal candidates by last name, using a query string parameter.

HTTP Request

GET https://api.propublica.org/campaign-finance/v1/{cycle}/candidates/search

Query Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
query The first or last name of the candidate

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2016/candidates/search.json?query=Wilson"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
   "status":"OK",
   "copyright":"Copyright (c) 2016 Pro Publica Inc. All Rights Reserved.",
   "cycle":2016,
   "base_uri":"https://api.propublica.org/campaign-finance/v1/2016/",
   "num_results":2,
   "offset":null,
   "results":[
      {
         "candidate":{
            "id":"H8IN07184",
            "relative_uri":"/candidates/H8IN07184.json",
            "name":"CARSON, ANDRE",
            "party":"DEM"
         },
         "committee":"/committees/C00442921.json",
         "state":"/races/IN.json",
         "district":"/races/IN/house/07.json"
      },
      {
         "candidate":{
            "id":"P60005915",
            "relative_uri":"/candidates/P60005915.json",
            "name":"CARSON, BENJAMIN S SR MD",
            "party":"REP"
         },
         "committee":"/committees/C00573519.json",
         "state":null,
         "district":null
      }
   ]
}

Get a Specific Candidate

This endpoint retrieves a specific FEC candidate for a given campaign cycle.

HTTP Request

GET https://api.propublica.org/campaign-finance/v1/{cycle}/candidates/{fec-id}

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
fec-id The FEC-assigned 9-character ID of a candidate. To find a candidate’s official FEC ID, use a candidate search request or the FEC web site.

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2020/candidates/P60007168.json"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2020 ProPublica Inc. All Rights Reserved.",
    "base_uri": "http://localhost:3000campaign-finance/v1/2020/",
    "cycle": 2020,
    "results": [{
        "id": "P60007168",
        "name": "SANDERS, BERNARD",
        "display_name": "Bernie Sanders",
        "party": "DEM",
        "district": null,
        "fec_uri": "https://www.fec.gov/data/candidate/P60007168/",
        "committee": "/committees/C00577130.json",
        "state": null,
        "mailing_address": "221 VAN PATTEN PKWY",
        "mailing_city": "BURLINGTON",
        "mailing_state": "VT",
        "mailing_zip": "05408",
        "status": "C",
        "total_receipts": 74399412.43,
        "total_from_individuals": 61456335.38,
        "total_from_individuals_itemized": 18660347.0,
        "total_from_individuals_unitemized": 42795988.0,
        "percent_unitemized": 69.6,
        "total_from_pacs": 5029.36,
        "total_contributions": 61461364.74,
        "candidate_loans": 0.0,
        "transfers_in": 12701500.0,
        "total_disbursements": 45336234.39,
        "begin_cash": 4743726.76,
        "end_cash": 33807388.8,
        "total_refunds": 486695.08,
        "individual_refunds": 486695.08,
        "pac_refunds": 0.0,
        "debts_owed": 0.0,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30",
        "independent_expenditures": 0.0,
        "coordinated_expenditures": 0.0,
        "other_cycles": [2018, 2016],
        "url": "https://berniesanders.com/",
        "facebook_url": "https://www.facebook.com/berniesanders/",
        "gender": "M",
        "google_id": "/m/01_gbv",
        "twitter_user": "BernieSanders"
    }]
}

Get Top 20 Candidates in Specific Financial Category

This endpoint retrieves the top 20 candidates within a given financial category for a given campaign cycle. The possible values are listed below.

HTTP Request

GET https://api.propublica.org/campaign-finance/v1/{cycle}/candidates/leaders/{category}

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
category One of the values from the following categories:
Category Value
Candidate Loan candidate-loan
Contribution Total contribution-total
Debts Owed debts-owed
Disbursements Total disbursements-total
End Cash end-cash
Individual Total individual-total
PAC Total pac-total
Receipts Total receipts-total
Refund Total refund-total

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2020/candidates/leaders/pac-total.json"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2020 ProPublica Inc. All Rights Reserved.",
    "cycle": 2020,
    "category": "Contributions from PACs",
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2020/",
    "results": [{
        "relative_uri": "/candidates/S4CO00395.json",
        "name": "GARDNER, CORY",
        "party": "REP",
        "state": "/races/CO.json",
        "district": "00",
        "committee": "/committees/C00492454.json",
        "status": "I",
        "total_from_individuals": 3527890.7,
        "total_from_pacs": 1706367.74,
        "total_contributions": 5278858.44,
        "candidate_loans": null,
        "total_disbursements": 1468278.59,
        "begin_cash": 1701437.57,
        "end_cash": 6696586.98,
        "total_refunds": 76948.56,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S4MI00355.json",
        "name": "PETERS, GARY",
        "party": "DEM",
        "state": "/races/MI.json",
        "district": "00",
        "committee": "/committees/C00437889.json",
        "status": "I",
        "total_from_individuals": 4908369.62,
        "total_from_pacs": 1505646.46,
        "total_contributions": 6414016.08,
        "candidate_loans": null,
        "total_disbursements": 2019076.22,
        "begin_cash": 1503727.91,
        "end_cash": 6312502.36,
        "total_refunds": 41200.3,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S2KY00012.json",
        "name": "MCCONNELL, MITCH",
        "party": "REP",
        "state": "/races/KY.json",
        "district": "00",
        "committee": "/committees/C00193342.json",
        "status": "I",
        "total_from_individuals": 4704845.94,
        "total_from_pacs": 1496888.28,
        "total_contributions": 6201734.22,
        "candidate_loans": null,
        "total_disbursements": 2110474.0,
        "begin_cash": 3595456.04,
        "end_cash": 9007899.49,
        "total_refunds": 139106.67,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S4NC00162.json",
        "name": "TILLIS, THOM R. SEN.",
        "party": "REP",
        "state": "/races/NC.json",
        "district": "00",
        "committee": "/committees/C00545772.json",
        "status": "I",
        "total_from_individuals": 2165460.15,
        "total_from_pacs": 1405475.67,
        "total_contributions": 3570935.82,
        "candidate_loans": null,
        "total_disbursements": 1383302.16,
        "begin_cash": 2025444.43,
        "end_cash": 4921294.03,
        "total_refunds": 57050.67,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/H2MD05155.json",
        "name": "HOYER, STENY",
        "party": "DEM",
        "state": "/races/MD.json",
        "district": "05",
        "committee": "/committees/C00140715.json",
        "status": "I",
        "total_from_individuals": 585492.16,
        "total_from_pacs": 1217740.0,
        "total_contributions": 1803232.16,
        "candidate_loans": null,
        "total_disbursements": 1505827.49,
        "begin_cash": 634132.38,
        "end_cash": 1175474.42,
        "total_refunds": 970.0,
        "debts_owed": 2254.9,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S2TX00106.json",
        "name": "CORNYN, JOHN SEN",
        "party": "REP",
        "state": "/races/TX.json",
        "district": "00",
        "committee": "/committees/C00369033.json",
        "status": "I",
        "total_from_individuals": 3993709.3,
        "total_from_pacs": 1175488.43,
        "total_contributions": 5169197.73,
        "candidate_loans": null,
        "total_disbursements": 2722433.87,
        "begin_cash": 5790126.35,
        "end_cash": 10785448.77,
        "total_refunds": 24500.0,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S2MT00096.json",
        "name": "DAINES, STEVEN",
        "party": "REP",
        "state": "/races/MT.json",
        "district": "00",
        "committee": "/committees/C00491357.json",
        "status": "I",
        "total_from_individuals": 2156506.44,
        "total_from_pacs": 1166189.49,
        "total_contributions": 3322695.93,
        "candidate_loans": null,
        "total_disbursements": 1113805.79,
        "begin_cash": 1450176.34,
        "end_cash": 4187040.27,
        "total_refunds": 24951.5,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/H8MA02041.json",
        "name": "NEAL, RICHARD E MR.",
        "party": "DEM",
        "state": "/races/MA.json",
        "district": "01",
        "committee": "/committees/C00226522.json",
        "status": "I",
        "total_from_individuals": 584056.27,
        "total_from_pacs": 1138902.5,
        "total_contributions": 1722958.77,
        "candidate_loans": null,
        "total_disbursements": 1070299.4,
        "begin_cash": 3308302.26,
        "end_cash": 4309786.01,
        "total_refunds": 6800.0,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S4GA11285.json",
        "name": "PERDUE, DAVID",
        "party": "REP",
        "state": "/races/GA.json",
        "district": "00",
        "committee": "/committees/C00547570.json",
        "status": "I",
        "total_from_individuals": 2385132.54,
        "total_from_pacs": 1078200.0,
        "total_contributions": 3463332.54,
        "candidate_loans": null,
        "total_disbursements": 996125.8,
        "begin_cash": 1703670.97,
        "end_cash": 6307239.81,
        "total_refunds": 29053.13,
        "debts_owed": 820583.21,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S6ME00159.json",
        "name": "COLLINS, SUSAN M.",
        "party": "REP",
        "state": "/races/ME.json",
        "district": "00",
        "committee": "/committees/C00314575.json",
        "status": "I",
        "total_from_individuals": 4011922.11,
        "total_from_pacs": 1077419.05,
        "total_contributions": 5089341.16,
        "candidate_loans": null,
        "total_disbursements": 1176787.41,
        "begin_cash": 2627724.77,
        "end_cash": 7121972.83,
        "total_refunds": 28250.0,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S0AL00156.json",
        "name": "JONES, DOUG",
        "party": "DEM",
        "state": "/races/AL.json",
        "district": "00",
        "committee": "/committees/C00640623.json",
        "status": "C",
        "total_from_individuals": 4227829.69,
        "total_from_pacs": 1076952.32,
        "total_contributions": 5304782.01,
        "candidate_loans": null,
        "total_disbursements": 2764871.14,
        "begin_cash": 2131165.71,
        "end_cash": 5042251.25,
        "total_refunds": 41940.06,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S8MN00578.json",
        "name": "SMITH, TINA",
        "party": "DEM",
        "state": "/races/MN.json",
        "district": "99",
        "committee": "/committees/C00663781.json",
        "status": "C",
        "total_from_individuals": 2651921.35,
        "total_from_pacs": 1075545.09,
        "total_contributions": 3733066.44,
        "candidate_loans": null,
        "total_disbursements": 1627972.93,
        "begin_cash": 433782.6,
        "end_cash": 2744755.4,
        "total_refunds": 10927.16,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/H2IL13120.json",
        "name": "DAVIS, RODNEY L",
        "party": "REP",
        "state": "/races/IL.json",
        "district": "13",
        "committee": "/committees/C00521948.json",
        "status": "I",
        "total_from_individuals": 373424.93,
        "total_from_pacs": 1044757.2,
        "total_contributions": 1419357.13,
        "candidate_loans": null,
        "total_disbursements": 620430.31,
        "begin_cash": 19576.43,
        "end_cash": 905657.2,
        "total_refunds": 1850.0,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S6VA00093.json",
        "name": "WARNER, MARK ROBERT",
        "party": "DEM",
        "state": "/races/VA.json",
        "district": "00",
        "committee": "/committees/C00438713.json",
        "status": "I",
        "total_from_individuals": 3308367.13,
        "total_from_pacs": 1044474.0,
        "total_contributions": 4352841.13,
        "candidate_loans": null,
        "total_disbursements": 1457248.85,
        "begin_cash": 3066836.33,
        "end_cash": 6640014.33,
        "total_refunds": 35886.0,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S8AZ00221.json",
        "name": "MCSALLY, MARTHA",
        "party": "REP",
        "state": "/races/AZ.json",
        "district": "00",
        "committee": "/committees/C00666040.json",
        "status": "I",
        "total_from_individuals": 6765898.88,
        "total_from_pacs": 1040150.0,
        "total_contributions": 7850648.88,
        "candidate_loans": null,
        "total_disbursements": 3796551.37,
        "begin_cash": 923793.51,
        "end_cash": 5675716.27,
        "total_refunds": 116514.75,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S4IA00129.json",
        "name": "ERNST, JONI K",
        "party": "REP",
        "state": "/races/IA.json",
        "district": "00",
        "committee": "/committees/C00546788.json",
        "status": "I",
        "total_from_individuals": 1509580.5,
        "total_from_pacs": 1012313.53,
        "total_contributions": 2566494.03,
        "candidate_loans": null,
        "total_disbursements": 1191286.6,
        "begin_cash": 1363149.69,
        "end_cash": 3943730.3,
        "total_refunds": 27853.0,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/H6OR02116.json",
        "name": "WALDEN, GREGORY P. MR.",
        "party": "REP",
        "state": "/races/OR.json",
        "district": "02",
        "committee": "/committees/C00333427.json",
        "status": "I",
        "total_from_individuals": 414330.66,
        "total_from_pacs": 988700.0,
        "total_contributions": 1403030.66,
        "candidate_loans": null,
        "total_disbursements": 1047872.83,
        "begin_cash": 1420205.94,
        "end_cash": 1893905.15,
        "total_refunds": null,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S0SC00149.json",
        "name": "GRAHAM, LINDSEY O.",
        "party": "REP",
        "state": "/races/SC.json",
        "district": "00",
        "committee": "/committees/C00458828.json",
        "status": "I",
        "total_from_individuals": 6643910.94,
        "total_from_pacs": 949963.66,
        "total_contributions": 7594074.6,
        "candidate_loans": null,
        "total_disbursements": 3160923.44,
        "begin_cash": 3200959.2,
        "end_cash": 8396268.6,
        "total_refunds": 108403.83,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/S0NH00219.json",
        "name": "SHAHEEN, JEANNE",
        "party": "DEM",
        "state": "/races/NH.json",
        "district": "00",
        "committee": "/committees/C00457325.json",
        "status": "I",
        "total_from_individuals": 4386762.69,
        "total_from_pacs": 943025.96,
        "total_contributions": 5329788.65,
        "candidate_loans": null,
        "total_disbursements": 1811307.13,
        "begin_cash": 467428.19,
        "end_cash": 4281522.39,
        "total_refunds": 76001.47,
        "debts_owed": null,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }, {
        "relative_uri": "/candidates/H2SC02042.json",
        "name": "CLYBURN, JAMES E.",
        "party": "DEM",
        "state": "/races/SC.json",
        "district": "06",
        "committee": "/committees/C00255562.json",
        "status": "I",
        "total_from_individuals": 364415.82,
        "total_from_pacs": 915520.0,
        "total_contributions": 1279935.82,
        "candidate_loans": null,
        "total_disbursements": 1032198.63,
        "begin_cash": 905678.59,
        "end_cash": 1156212.94,
        "total_refunds": 8100.0,
        "debts_owed": 12920.0,
        "date_coverage_from": "2019-01-01",
        "date_coverage_to": "2019-09-30"
    }]
}

Get Candidates from a State

This endpoint retrieves an array of FEC candidates for a given state (and optional chamber and district).

HTTP Request

GET https://api.propublica.org/campaign-finance/v1/{cycle}/races/{state}/{chamber}/{district}

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
state Two-letter state abbreviation
chamber house or senate (optional)
district Specify the district number. Don’t include for states with a single representative (AL, DE, DC, MT, ND, SD, VT). (House requests only - districts with Senate requests will be ignored.)

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2020/races/HI.json"
 -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2020 ProPublica Inc. All Rights Reserved.",
    "cycle": 2020,
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2020/",
    "num_results": 2,
    "results": [{
        "candidate": {
            "id": "H2HI02128",
            "relative_uri": "/candidates/H2HI02128.json",
            "name": "CASE, EDWARD",
            "party": "DEM"
        },
        "committee": "/committees/C00680918.json",
        "state": "/races/HI.json",
        "district": "/races/HI/house/01.json"
    }, {
        "candidate": {
            "id": "H0HI02155",
            "relative_uri": "/candidates/H0HI02155.json",
            "name": "KAHELE, KAIALI'I",
            "party": "DEM"
        },
        "committee": "/committees/C00694604.json",
        "state": "/races/HI.json",
        "district": "/races/HI/house/02.json"
    }]
}

Get Recently Added Candidates

This endpoint retrieves the 20 most recently added FEC candidates.

HTTP Request

GET https://api.propublica.org/campaign-finance/v1/{cycle}/candidates/new

Query Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2020/candidates/new.json"
 -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2020 ProPublica Inc. All Rights Reserved.",
    "cycle": 2020,
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2020/",
    "results": [{
        "id": "H0NV04114",
        "relative_uri": "/candidates/H0NV04114.json",
        "name": "Wood, Rebecca",
        "district": null,
        "mailing_city": "Las Vegas",
        "mailing_state": "NV",
        "mailing_zip": "89130",
        "party": "REP",
        "state": "/races/NV.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0NV04114/",
        "committee": null,
        "fec_committee_id": "C00728964"
    }, {
        "id": "P00015131",
        "relative_uri": "/candidates/P00015131.json",
        "name": "Rodeo, Kenny",
        "district": null,
        "mailing_city": "Colorado Springs",
        "mailing_state": "CO",
        "mailing_zip": "80919",
        "party": "REP",
        "state": "/races/CO.json",
        "fec_uri": "https://www.fec.gov/data/candidate/P00015131/",
        "committee": null,
        "fec_committee_id": "C00734343"
    }, {
        "id": "H0VA01235",
        "relative_uri": "/candidates/H0VA01235.json",
        "name": "Rashid, Qasim",
        "district": null,
        "mailing_city": "Garrisonville",
        "mailing_state": "VA",
        "mailing_zip": "22643",
        "party": "DEM",
        "state": "/races/VA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0VA01235/",
        "committee": null,
        "fec_committee_id": "C00734335"
    }, {
        "id": "H0MA04218",
        "relative_uri": "/candidates/H0MA04218.json",
        "name": "Sigel, Ben",
        "district": null,
        "mailing_city": "Brookline",
        "mailing_state": "MA",
        "mailing_zip": "02446",
        "party": "DEM",
        "state": "/races/MA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0MA04218/",
        "committee": null,
        "fec_committee_id": "C00734244"
    }, {
        "id": "S0WY00152",
        "relative_uri": "/candidates/S0WY00152.json",
        "name": "Ben David, Merav",
        "district": null,
        "mailing_city": "Laramie",
        "mailing_state": "WY",
        "mailing_zip": "82070",
        "party": "DEM",
        "state": "/races/WY.json",
        "fec_uri": "https://www.fec.gov/data/candidate/S0WY00152/",
        "committee": null,
        "fec_committee_id": "C00734152"
    }, {
        "id": "H0TX32111",
        "relative_uri": "/candidates/H0TX32111.json",
        "name": "Sigmon, Jason",
        "district": null,
        "mailing_city": "Dallas",
        "mailing_state": "TX",
        "mailing_zip": "75204",
        "party": "IND",
        "state": "/races/TX.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0TX32111/",
        "committee": null,
        "fec_committee_id": "C00733980"
    }, {
        "id": "S6CA00584",
        "relative_uri": "/candidates/S6CA00584.json",
        "name": "Harris, Kamala D",
        "district": null,
        "mailing_city": "Los Angeles",
        "mailing_state": "CA",
        "mailing_zip": "90017",
        "party": "DEM",
        "state": "/races/CA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/S6CA00584/",
        "committee": "/committees/C00571919.json",
        "fec_committee_id": "C00571919"
    }, {
        "id": "H0TX08145",
        "relative_uri": "/candidates/H0TX08145.json",
        "name": "Jones, Laura",
        "district": null,
        "mailing_city": "Coldspring",
        "mailing_state": "TX",
        "mailing_zip": "77331",
        "party": "DEM",
        "state": "/races/TX.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0TX08145/",
        "committee": "/committees/C00721597.json",
        "fec_committee_id": "C00721597"
    }, {
        "id": "H0OH09159",
        "relative_uri": "/candidates/H0OH09159.json",
        "name": "Connors, Timothy w II",
        "district": null,
        "mailing_city": "Avon Lake",
        "mailing_state": "OH",
        "mailing_zip": "44012",
        "party": "REP",
        "state": "/races/OH.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0OH09159/",
        "committee": null,
        "fec_committee_id": "C00733931"
    }, {
        "id": "H0VA01227",
        "relative_uri": "/candidates/H0VA01227.json",
        "name": "EASLEY, JOHN HAYES JR",
        "district": null,
        "mailing_city": "RICHMOND",
        "mailing_state": "VA",
        "mailing_zip": "23234",
        "party": "DEM",
        "state": "/races/VA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0VA01227/",
        "committee": null,
        "fec_committee_id": "C00733923"
    }, {
        "id": "P00015081",
        "relative_uri": "/candidates/P00015081.json",
        "name": "Ardeleanu, Sorinne Frieda",
        "district": null,
        "mailing_city": "San Francisco",
        "mailing_state": "CA",
        "mailing_zip": "94164",
        "party": "LIB",
        "state": "/races/CA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/P00015081/",
        "committee": null,
        "fec_committee_id": "C00733816"
    }, {
        "id": "H0GA10285",
        "relative_uri": "/candidates/H0GA10285.json",
        "name": "Spitzner, Alvin Edward Jr.",
        "district": null,
        "mailing_city": "Covington",
        "mailing_state": "GA",
        "mailing_zip": "30016",
        "party": "DEM",
        "state": "/races/GA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0GA10285/",
        "committee": "/committees/C00732909.json",
        "fec_committee_id": "C00732909"
    }, {
        "id": "H0IL05351",
        "relative_uri": "/candidates/H0IL05351.json",
        "name": "BURNS, BRIAN",
        "district": "/races/IL/house/05.json",
        "mailing_city": "CHICAGO",
        "mailing_state": "IL",
        "mailing_zip": "60611",
        "party": "DEM",
        "state": "/races/IL.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0IL05351/",
        "committee": "/committees/C00715185.json",
        "fec_committee_id": "C00715185"
    }, {
        "id": "H0TX35056",
        "relative_uri": "/candidates/H0TX35056.json",
        "name": "MATA, JASON SR",
        "district": "/races/TX/house/35.json",
        "mailing_city": "SAN ANTONIO",
        "mailing_state": "TX",
        "mailing_zip": "78207",
        "party": "IND",
        "state": "/races/TX.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0TX35056/",
        "committee": "/committees/C00731190.json",
        "fec_committee_id": "C00731190"
    }, {
        "id": "H0FL08232",
        "relative_uri": "/candidates/H0FL08232.json",
        "name": "AMMI, HICHAMD",
        "district": "/races/FL/house/08.json",
        "mailing_city": "WEST MELBOURNE",
        "mailing_state": "FL",
        "mailing_zip": "32904",
        "party": "DEM",
        "state": "/races/FL.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0FL08232/",
        "committee": "/committees/C00733642.json",
        "fec_committee_id": "C00733642"
    }, {
        "id": "H0WI01120",
        "relative_uri": "/candidates/H0WI01120.json",
        "name": "POLACK, ROGER",
        "district": "/races/WI/house/01.json",
        "mailing_city": "RACINE",
        "mailing_state": "WI",
        "mailing_zip": "53404",
        "party": "DEM",
        "state": "/races/WI.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0WI01120/",
        "committee": "/committees/C00733600.json",
        "fec_committee_id": "C00733600"
    }, {
        "id": "H0VA01219",
        "relative_uri": "/candidates/H0VA01219.json",
        "name": "WASHINGTON, KEVIN",
        "district": "/races/VA/house/01.json",
        "mailing_city": "NEW KENT",
        "mailing_state": "VA",
        "mailing_zip": "23124",
        "party": "DEM",
        "state": "/races/VA.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0VA01219/",
        "committee": "/committees/C00733253.json",
        "fec_committee_id": "C00733253"
    }, {
        "id": "H0CT05234",
        "relative_uri": "/candidates/H0CT05234.json",
        "name": "MEEHAN, RYAN",
        "district": "/races/CT/house/05.json",
        "mailing_city": "LITCHFIEDL",
        "mailing_state": "CT",
        "mailing_zip": "06759",
        "party": "REP",
        "state": "/races/CT.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0CT05234/",
        "committee": "/committees/C00733410.json",
        "fec_committee_id": "C00733410"
    }, {
        "id": "H0KS02196",
        "relative_uri": "/candidates/H0KS02196.json",
        "name": "DE LA ISLA, MICHELLE",
        "district": "/races/KS/house/02.json",
        "mailing_city": "TOPEKA",
        "mailing_state": "KS",
        "mailing_zip": "66667",
        "party": "DEM",
        "state": "/races/KS.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H0KS02196/",
        "committee": "/committees/C00732792.json",
        "fec_committee_id": "C00732792"
    }, {
        "id": "H6AZ01181",
        "relative_uri": "/candidates/H6AZ01181.json",
        "name": "OLIVAS, MIGUEL",
        "district": "/races/AZ/house/01.json",
        "mailing_city": "TUCSON",
        "mailing_state": "AZ",
        "mailing_zip": "85710",
        "party": "DEM",
        "state": "/races/AZ.json",
        "fec_uri": "https://www.fec.gov/data/candidate/H6AZ01181/",
        "committee": "/committees/C00582866.json",
        "fec_committee_id": "C00582866"
    }]
}

Late Contributions to Candidates

Get Recent Late Contributions

During the last 20 days before a primary or general election, candidate committees must file reports of any contributions of $1,000 or more within 48 hours of receipt. This endpoint retrieves the most recent late contributions to candidates.

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020

HTTP Request

GET https://api.propublica.org/campaign-finance/v1/{cycle}/contributions/48hour

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2018/contributions/48hour.json"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2018 ProPublica Inc. All Rights Reserved.",
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2018/",
    "cycle": 2018,
    "offset": null,
    "results": [{
        "cycle": 2018,
        "fec_committee_id": "C00649707",
        "fec_filing_id": 1237110,
        "transaction_id": "WFT20185102157-1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Stefane",
        "contributor_middle_name": null,
        "contributor_last_name": "Zamorano",
        "contributor_suffix": null,
        "contributor_street_1": "757 Belvidere St",
        "contributor_street_2": null,
        "contributor_city": "Pasadena",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Not Employed",
        "contribution_date": "2018-06-11",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8NV04018",
        "office_state": "NV"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00657015",
        "fec_filing_id": 1237169,
        "transaction_id": "VTRAKDVBPJ2",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Jay",
        "contributor_middle_name": null,
        "contributor_last_name": "Lewis",
        "contributor_suffix": null,
        "contributor_street_1": "55 Central Park W",
        "contributor_street_2": null,
        "contributor_city": "New York",
        "contributor_state": "NY",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-10",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8NY02104",
        "office_state": "NY"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X05",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Stephen",
        "contributor_middle_name": "G.",
        "contributor_last_name": "Schuler",
        "contributor_suffix": null,
        "contributor_street_1": "315 N Euclid Ave",
        "contributor_street_2": null,
        "contributor_city": "Oak Park",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": "Wicklow Capital",
        "contributor_occupation": "Director",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WZ7",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Gerald",
        "contributor_middle_name": "L.",
        "contributor_last_name": "Chan",
        "contributor_suffix": null,
        "contributor_street_1": "92 Brattle St",
        "contributor_street_2": null,
        "contributor_city": "Cambridge",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Morningside Ventures",
        "contributor_occupation": "Co-Founder",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WY9",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Arnold",
        "contributor_middle_name": null,
        "contributor_last_name": "Hiatt",
        "contributor_suffix": null,
        "contributor_street_1": "400 Atlantic Ave",
        "contributor_street_2": null,
        "contributor_city": "Boston",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "The A.M. Fund",
        "contributor_occupation": "Executive",
        "contribution_date": "2018-06-09",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WX1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Stephen",
        "contributor_middle_name": "G.",
        "contributor_last_name": "Schuler",
        "contributor_suffix": null,
        "contributor_street_1": "315 N Euclid Ave",
        "contributor_street_2": null,
        "contributor_city": "Oak Park",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": "Wicklow Capital",
        "contributor_occupation": "Director",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00433391",
        "fec_filing_id": 1237075,
        "transaction_id": "VR014NY33B0",
        "entity_type": "PAC",
        "contributor_fec_id": "C00238725",
        "contributor_organization_name": "NATIONAL AIR TRAFFIC CONTROLLERS ASSOCIATION PAC",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1325 Massachusetts Ave NW",
        "contributor_street_2": null,
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8ME01120",
        "office_state": "ME"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00639591",
        "fec_filing_id": 1237093,
        "transaction_id": "VTQX5DTXNW9",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Joel",
        "contributor_middle_name": null,
        "contributor_last_name": "Feinman",
        "contributor_suffix": null,
        "contributor_street_1": "638 S Main Ave",
        "contributor_street_2": null,
        "contributor_city": "Tucson",
        "contributor_state": "AZ",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8NY15148",
        "office_state": "NY"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00477240",
        "fec_filing_id": 1237085,
        "transaction_id": "F6.30346",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Richard B.",
        "contributor_middle_name": null,
        "contributor_last_name": "Gilliam",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 820",
        "contributor_street_2": null,
        "contributor_city": "Keswick",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "Cumberland Resources Corp",
        "contributor_occupation": "Energy",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H0VA09055",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00639591",
        "fec_filing_id": 1237093,
        "transaction_id": "VTQX5DV5439",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Edmund",
        "contributor_middle_name": null,
        "contributor_last_name": "Resor",
        "contributor_suffix": null,
        "contributor_street_1": "16 W 90th St",
        "contributor_street_2": "Apt 1",
        "contributor_city": "New York",
        "contributor_state": "NY",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8NY15148",
        "office_state": "NY"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WH6",
        "entity_type": "CCM",
        "contributor_fec_id": "C00555888",
        "contributor_organization_name": "FRIENDS OF DON BEYER",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1751 Potomac Greens Dr",
        "contributor_street_2": null,
        "contributor_city": "Alexandria",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "2000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WV5",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Alfred",
        "contributor_middle_name": null,
        "contributor_last_name": "Giuffrida",
        "contributor_suffix": null,
        "contributor_street_1": "18 Presidio Ter",
        "contributor_street_2": null,
        "contributor_city": "San Francisco",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Horsley Bridge Partners",
        "contributor_occupation": "Investment Manager",
        "contribution_date": "2018-06-09",
        "contribution_amount": "1562.5",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WW3",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Duncan",
        "contributor_middle_name": "M.",
        "contributor_last_name": "McFarland",
        "contributor_suffix": null,
        "contributor_street_1": "299 Clapboardtree St",
        "contributor_street_2": null,
        "contributor_city": "Westwood",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X38",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Duncan",
        "contributor_middle_name": "M.",
        "contributor_last_name": "McFarland",
        "contributor_suffix": null,
        "contributor_street_1": "299 Clapboardtree St",
        "contributor_street_2": null,
        "contributor_city": "Westwood",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00555888",
        "fec_filing_id": 1237041,
        "transaction_id": "VNJ1EHD1RT5",
        "entity_type": "PAC",
        "contributor_fec_id": "C00281212",
        "contributor_organization_name": "BAE SYSTEMS INC. POLITICAL ACTION COMMITTEE (BAE SYSTEMS USA PAC)",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1101 Wilson Blvd",
        "contributor_street_2": null,
        "contributor_city": "Arlington",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H4VA08224",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00410639",
        "fec_filing_id": 1237061,
        "transaction_id": "C11468945",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Carroll",
        "contributor_middle_name": null,
        "contributor_last_name": "Beach",
        "contributor_suffix": null,
        "contributor_street_1": "2274 Country Club Loop",
        "contributor_street_2": null,
        "contributor_city": "Westminster",
        "contributor_state": "CO",
        "contributor_zip": null,
        "contributor_employer": "N/A",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2000.0",
        "fec_candidate_id": "H6CO07023",
        "office_state": "CO"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00433391",
        "fec_filing_id": 1237075,
        "transaction_id": "VR014NY33D6",
        "entity_type": "PAC",
        "contributor_fec_id": "C00173153",
        "contributor_organization_name": "AMERICAN ASSOCIATION OF NURSE ANESTHETISTS SEPARATE SEGREGATED FUND (CRNA-PAC)",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "222 S Prospect Ave",
        "contributor_street_2": "C/O FINANCE DEPARTMENT",
        "contributor_city": "Park Ridge",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "1500.0",
        "fec_candidate_id": "H8ME01120",
        "office_state": "ME"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00433391",
        "fec_filing_id": 1237075,
        "transaction_id": "VR014NY33E4",
        "entity_type": "PAC",
        "contributor_fec_id": "C00024968",
        "contributor_organization_name": "AMERICAN OPTOMETRIC ASSOCIATION PAC",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1505 Prince St",
        "contributor_street_2": "Ste 300",
        "contributor_city": "Alexandria",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8ME01120",
        "office_state": "ME"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00477240",
        "fec_filing_id": 1237085,
        "transaction_id": "F6.30345",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Richard B.",
        "contributor_middle_name": null,
        "contributor_last_name": "Gilliam",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 820",
        "contributor_street_2": null,
        "contributor_city": "Keswick",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "Cumberland Resources Corp",
        "contributor_occupation": "Energy",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H0VA09055",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X54",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Gerald",
        "contributor_middle_name": "L.",
        "contributor_last_name": "Chan",
        "contributor_suffix": null,
        "contributor_street_1": "92 Brattle St",
        "contributor_street_2": null,
        "contributor_city": "Cambridge",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Morningside Ventures",
        "contributor_occupation": "Co-Founder",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }],
    "callback": null
}

Get Recent Late Contributions to a Specific Candidate

During the last 20 days before a primary or general election, candidate committees must file reports of any contributions of $1,000 or more within 48 hours of receipt. This endpoint retrieves the most recent late contributions to a specific candidate.

HTTP Request

GET http://api.propublica.org/campaign-finance/v1/{cycle}/candidates/{fec-id}/48hour

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
fec-id The FEC-assigned 9-character ID of a candidate. To find a candidate’s official FEC ID, use a candidate search request or the FEC web site.

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2018/candidates/H8VA02111/48hour.json"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2018 ProPublica Inc. All Rights Reserved.",
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2018/",
    "cycle": 2018,
    "offset": null,
    "results": [{
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WW3",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Duncan",
        "contributor_middle_name": "M.",
        "contributor_last_name": "McFarland",
        "contributor_suffix": null,
        "contributor_street_1": "299 Clapboardtree St",
        "contributor_street_2": null,
        "contributor_city": "Westwood",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WZ7",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Gerald",
        "contributor_middle_name": "L.",
        "contributor_last_name": "Chan",
        "contributor_suffix": null,
        "contributor_street_1": "92 Brattle St",
        "contributor_street_2": null,
        "contributor_city": "Cambridge",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Morningside Ventures",
        "contributor_occupation": "Co-Founder",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WY9",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Arnold",
        "contributor_middle_name": null,
        "contributor_last_name": "Hiatt",
        "contributor_suffix": null,
        "contributor_street_1": "400 Atlantic Ave",
        "contributor_street_2": null,
        "contributor_city": "Boston",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "The A.M. Fund",
        "contributor_occupation": "Executive",
        "contribution_date": "2018-06-09",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X21",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Daniel",
        "contributor_middle_name": "V.",
        "contributor_last_name": "Tierney",
        "contributor_suffix": null,
        "contributor_street_1": "53 W Jackson Blvd",
        "contributor_street_2": "Ste 1204",
        "contributor_city": "Chicago",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": "Wicklow Capital",
        "contributor_occupation": "Investments",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X54",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Gerald",
        "contributor_middle_name": "L.",
        "contributor_last_name": "Chan",
        "contributor_suffix": null,
        "contributor_street_1": "92 Brattle St",
        "contributor_street_2": null,
        "contributor_city": "Cambridge",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Morningside Ventures",
        "contributor_occupation": "Co-Founder",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WH6",
        "entity_type": "CCM",
        "contributor_fec_id": "C00555888",
        "contributor_organization_name": "FRIENDS OF DON BEYER",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1751 Potomac Greens Dr",
        "contributor_street_2": null,
        "contributor_city": "Alexandria",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "2000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X05",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Stephen",
        "contributor_middle_name": "G.",
        "contributor_last_name": "Schuler",
        "contributor_suffix": null,
        "contributor_street_1": "315 N Euclid Ave",
        "contributor_street_2": null,
        "contributor_city": "Oak Park",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": "Wicklow Capital",
        "contributor_occupation": "Director",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WX1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Stephen",
        "contributor_middle_name": "G.",
        "contributor_last_name": "Schuler",
        "contributor_suffix": null,
        "contributor_street_1": "315 N Euclid Ave",
        "contributor_street_2": null,
        "contributor_city": "Oak Park",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": "Wicklow Capital",
        "contributor_occupation": "Director",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X46",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Daniel",
        "contributor_middle_name": "V.",
        "contributor_last_name": "Tierney",
        "contributor_suffix": null,
        "contributor_street_1": "53 W Jackson Blvd",
        "contributor_street_2": "Ste 1204",
        "contributor_city": "Chicago",
        "contributor_state": "IL",
        "contributor_zip": null,
        "contributor_employer": "Wicklow Capital",
        "contributor_occupation": "Investments",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5X38",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Duncan",
        "contributor_middle_name": "M.",
        "contributor_last_name": "McFarland",
        "contributor_suffix": null,
        "contributor_street_1": "299 Clapboardtree St",
        "contributor_street_2": null,
        "contributor_city": "Westwood",
        "contributor_state": "MA",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-09",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WV5",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Alfred",
        "contributor_middle_name": null,
        "contributor_last_name": "Giuffrida",
        "contributor_suffix": null,
        "contributor_street_1": "18 Presidio Ter",
        "contributor_street_2": null,
        "contributor_city": "San Francisco",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Horsley Bridge Partners",
        "contributor_occupation": "Investment Manager",
        "contribution_date": "2018-06-09",
        "contribution_amount": "1562.5",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237097,
        "transaction_id": "VTQZ5DV5WJ4",
        "entity_type": "PAC",
        "contributor_fec_id": "C00517235",
        "contributor_organization_name": "TURQUOISE PAC",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "910 17Th St NW",
        "contributor_street_2": "Ste 925",
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-09",
        "contribution_amount": "3000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237014,
        "transaction_id": "VTQZ5DSXNK1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Stephen",
        "contributor_middle_name": null,
        "contributor_last_name": "Stein",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 135",
        "contributor_street_2": null,
        "contributor_city": "Gladwyne",
        "contributor_state": "PA",
        "contributor_zip": null,
        "contributor_employer": "Mid-Atlantic Salt LLC",
        "contributor_occupation": "Owner",
        "contribution_date": "2018-06-08",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237014,
        "transaction_id": "VTQZ5DSXCF1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Lawrence",
        "contributor_middle_name": null,
        "contributor_last_name": "Steingold",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 4808",
        "contributor_street_2": null,
        "contributor_city": "Virginia Beach",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "Woodway Management LLC",
        "contributor_occupation": "Real Estate",
        "contribution_date": "2018-06-08",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237014,
        "transaction_id": "VTQZ5DSWS44",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Harold",
        "contributor_middle_name": null,
        "contributor_last_name": "Kober",
        "contributor_suffix": null,
        "contributor_street_1": "6103 Union Village Dr",
        "contributor_street_2": null,
        "contributor_city": "Clifton",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237014,
        "transaction_id": "VTQZ5DSWRY6",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Margaret",
        "contributor_middle_name": null,
        "contributor_last_name": "Kober",
        "contributor_suffix": null,
        "contributor_street_1": "6103 Union Village Dr",
        "contributor_street_2": null,
        "contributor_city": "Clifton",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "FDA",
        "contributor_occupation": "Pharmacist",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237014,
        "transaction_id": "VTQZ5DSXNF0",
        "entity_type": "PAC",
        "contributor_fec_id": "C00362384",
        "contributor_organization_name": "JOBS, OPPORTUNITIES AND EDUCATION PAC (JOE-PAC)",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "700 13Th St NW",
        "contributor_street_2": "Ste 600",
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-08",
        "contribution_amount": "2500.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1237014,
        "transaction_id": "VTQZ5DSXNR1",
        "entity_type": "PAC",
        "contributor_fec_id": "C90004185",
        "contributor_organization_name": "NARAL PRO-CHOICE AMERICA",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1156 15Th St NW",
        "contributor_street_2": null,
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-08",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1236925,
        "transaction_id": "VTQZ5DSTE79",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Robert",
        "contributor_middle_name": null,
        "contributor_last_name": "Pender",
        "contributor_suffix": null,
        "contributor_street_1": "313 Little Falls St",
        "contributor_street_2": null,
        "contributor_city": "Falls Church",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "Venture Global LNG",
        "contributor_occupation": "Co-CEO",
        "contribution_date": "2018-06-07",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00664375",
        "fec_filing_id": 1236925,
        "transaction_id": "VTQZ5DSTE20",
        "entity_type": "PAC",
        "contributor_fec_id": "C00573261",
        "contributor_organization_name": "END CITIZENS UNITED",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 66005",
        "contributor_street_2": null,
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-07",
        "contribution_amount": "4000.0",
        "fec_candidate_id": "H8VA02111",
        "office_state": "VA"
    }],
    "callback": null
}

Get Recent Late Contributions to a Specific Committee

During the last 20 days before a primary or general election, candidate committees must file reports of any contributions of $1,000 or more within 48 hours of receipt. This endpoint retrieves the most recent late contributions to a specific committee.

HTTP Request

GET http://api.propublica.org/campaign-finance/v1/{cycle}/committees/{fec-id}/48hour

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
fec-id The FEC-assigned 9-character ID of a committee. To find a committee’s official FEC ID, use a committee search request or the FEC web site.

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2018/committees/C00672899/48hour.json"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2018 ProPublica Inc. All Rights Reserved.",
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2018/",
    "cycle": 2018,
    "offset": null,
    "results": [{
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6372E01C0EF1648A8978",
        "entity_type": "ORG",
        "contributor_fec_id": null,
        "contributor_organization_name": "Atlantic Holdings Group, LLC",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "115 Capers St",
        "contributor_street_2": null,
        "contributor_city": "Greenville",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-08",
        "contribution_amount": "2500.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6892E0845371A427780F",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Lee",
        "contributor_middle_name": null,
        "contributor_last_name": "Tenzer",
        "contributor_suffix": null,
        "contributor_street_1": "9762 Bentgrass Bend",
        "contributor_street_2": null,
        "contributor_city": "Naples",
        "contributor_state": "FL",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6AF2833B641FB452695F",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "David",
        "contributor_middle_name": "W.",
        "contributor_last_name": "Caddick",
        "contributor_suffix": "Sr.",
        "contributor_street_1": "PO Box 179",
        "contributor_street_2": null,
        "contributor_city": "Ambler",
        "contributor_state": "PA",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "64C7A43EA7A5D4F7C885",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "David",
        "contributor_middle_name": "L.",
        "contributor_last_name": "Wilson",
        "contributor_suffix": null,
        "contributor_street_1": "6 Great Glen Road",
        "contributor_street_2": null,
        "contributor_city": "Greenville",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "66769316DA5D147B3A78",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Peter",
        "contributor_middle_name": "J.",
        "contributor_last_name": "Weldon",
        "contributor_suffix": null,
        "contributor_street_1": "700 Via Lombardy",
        "contributor_street_2": null,
        "contributor_city": "Winter Park",
        "contributor_state": "FL",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "66D84C0A8D8DD45E4B1B",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Virginia",
        "contributor_middle_name": null,
        "contributor_last_name": "James",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 60",
        "contributor_street_2": null,
        "contributor_city": "Lambertville",
        "contributor_state": "NJ",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "65D8096F842B9434EB4F",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Lee",
        "contributor_middle_name": null,
        "contributor_last_name": "Tenzer",
        "contributor_suffix": null,
        "contributor_street_1": "9762 Bentgrass Bend",
        "contributor_street_2": null,
        "contributor_city": "Naples",
        "contributor_state": "FL",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "63B675AA2C43F42AF8F5",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Bruce",
        "contributor_middle_name": "R.",
        "contributor_last_name": "Bent",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 1220",
        "contributor_street_2": null,
        "contributor_city": "Manhasset",
        "contributor_state": "NY",
        "contributor_zip": null,
        "contributor_employer": "The Reserve Fund",
        "contributor_occupation": "Founder & Chairman",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6E00B8EC397334158B54",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Jackson",
        "contributor_middle_name": "T.",
        "contributor_last_name": "Stephens",
        "contributor_suffix": "Jr.",
        "contributor_street_1": "111 Center Street, Suite 1616",
        "contributor_street_2": null,
        "contributor_city": "Little Rock",
        "contributor_state": "AR",
        "contributor_zip": null,
        "contributor_employer": "Exoxemis, Inc",
        "contributor_occupation": "Executive",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "60ECB69038EF741EBA13",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Rochelle",
        "contributor_middle_name": null,
        "contributor_last_name": "Wilson",
        "contributor_suffix": null,
        "contributor_street_1": "508 Barr Rd",
        "contributor_street_2": null,
        "contributor_city": "Lexington",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Homemaker",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6F436C76006E14E49984",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Alene",
        "contributor_middle_name": null,
        "contributor_last_name": "Wilson",
        "contributor_suffix": null,
        "contributor_street_1": "6 Great Glen Rd",
        "contributor_street_2": null,
        "contributor_city": "Greenville",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2600.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6C9E6AD14B6284039BE4",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Angie",
        "contributor_middle_name": null,
        "contributor_last_name": "Stephens",
        "contributor_suffix": null,
        "contributor_street_1": "111 Center Street, Suite 1616",
        "contributor_street_2": null,
        "contributor_city": "Little Rock",
        "contributor_state": "AR",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Accountant",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6954618740C7F4F40A45",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Angie",
        "contributor_middle_name": null,
        "contributor_last_name": "Stephens",
        "contributor_suffix": null,
        "contributor_street_1": "111 Center Street, Suite 1616",
        "contributor_street_2": null,
        "contributor_city": "Little Rock",
        "contributor_state": "AR",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Accountant",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6E2BFB6CD0D3E4CBEAB4",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Dave",
        "contributor_middle_name": null,
        "contributor_last_name": "Wilson",
        "contributor_suffix": null,
        "contributor_street_1": "508 Barr Rd",
        "contributor_street_2": null,
        "contributor_city": "Lexington",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": "McAlister Communications",
        "contributor_occupation": "Political Director",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "605EC7798B72643B9B41",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Bruce",
        "contributor_middle_name": "R.",
        "contributor_last_name": "Bent",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 1220",
        "contributor_street_2": null,
        "contributor_city": "Manhasset",
        "contributor_state": "NY",
        "contributor_zip": null,
        "contributor_employer": "The Reserve Fund",
        "contributor_occupation": "Founder & Chairman",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2300.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "6C1E8A0248C5A4670B8A",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Jackson",
        "contributor_middle_name": "T.",
        "contributor_last_name": "Stephens",
        "contributor_suffix": "Jr.",
        "contributor_street_1": "111 Center Street, Suite 1616",
        "contributor_street_2": null,
        "contributor_city": "Little Rock",
        "contributor_state": "AR",
        "contributor_zip": null,
        "contributor_employer": "Exoxemis, Inc",
        "contributor_occupation": "Executive",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236963,
        "transaction_id": "614BC1EC2F0F14130849",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Virginia",
        "contributor_middle_name": null,
        "contributor_last_name": "James",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 60",
        "contributor_street_2": null,
        "contributor_city": "Lambertville",
        "contributor_state": "NJ",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-08",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236687,
        "transaction_id": "6FC340E038A4C40319D1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Andrew",
        "contributor_middle_name": null,
        "contributor_last_name": "Smart",
        "contributor_suffix": null,
        "contributor_street_1": "600 South Main Street",
        "contributor_street_2": null,
        "contributor_city": "Greenville",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": "Duke Brands",
        "contributor_occupation": "Owner",
        "contribution_date": "2018-06-06",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1236431,
        "transaction_id": "62E169147BF914EA49DB",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Kaitlin",
        "contributor_middle_name": "Louise",
        "contributor_last_name": "Dixon",
        "contributor_suffix": null,
        "contributor_street_1": "117 Heritage Point Dr",
        "contributor_street_2": null,
        "contributor_city": "Simpsonville",
        "contributor_state": "SC",
        "contributor_zip": null,
        "contributor_employer": "Information Requested",
        "contributor_occupation": "Information Requested",
        "contribution_date": "2018-06-04",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00672899",
        "fec_filing_id": 1235878,
        "transaction_id": "6F84F74A498FC4703BC8",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Mark",
        "contributor_middle_name": null,
        "contributor_last_name": "Liker",
        "contributor_suffix": null,
        "contributor_street_1": "16814 Oakview Drive",
        "contributor_street_2": null,
        "contributor_city": "Encino",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Airlux Aircraft Inc",
        "contributor_occupation": "Owner",
        "contribution_date": "2018-06-01",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8SC04318",
        "office_state": "SC"
    }],
    "callback": null
}

Get Recent Late Contributions by Date

During the last 20 days before a primary or general election, candidate committees must file reports of any contributions of $1,000 or more within 48 hours of receipt. This endpoint retrieves late contributions from a specific date.

HTTP Request

GET http://api.propublica.org/campaign-finance/v1/{cycle}/contributions/48hour/{year}/{month}/{day}

URL Parameters

Parameter Description
cycle Four-digit even-numbered year between 2010 and 2020
year The four-digit year from 2010-2020
month The two-digit month from 01-12
day The two-digit day from 01-31

Example Call

curl "https://api.propublica.org/campaign-finance/v1/2018/contributions/48hour/2018/06/02.json"
  -H "X-API-Key: PROPUBLICA_API_KEY"

The above command returns JSON structured like this:

{
    "status": "OK",
    "copyright": "Copyright (c) 2018 ProPublica Inc. All Rights Reserved.",
    "base_uri": "https://api.propublica.org/campaign-finance/v1/2018/",
    "cycle": 2018,
    "offset": null,
    "results": [{
        "cycle": 2018,
        "fec_committee_id": "C00308742",
        "fec_filing_id": 1236324,
        "transaction_id": "VSHCJG1FM72",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Philip",
        "contributor_middle_name": null,
        "contributor_last_name": "Darivoff",
        "contributor_suffix": null,
        "contributor_street_1": "1 Farmstead Rd",
        "contributor_street_2": null,
        "contributor_city": "Short Hills",
        "contributor_state": "NJ",
        "contributor_zip": null,
        "contributor_employer": "Self Employed",
        "contributor_occupation": "Investor",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H6CA24113",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00308742",
        "fec_filing_id": 1236324,
        "transaction_id": "VSHCJG1FNT3",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Azita",
        "contributor_middle_name": null,
        "contributor_last_name": "Etaati",
        "contributor_suffix": null,
        "contributor_street_1": "5801 Murphy Way",
        "contributor_street_2": null,
        "contributor_city": "Malibu",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Retired",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-02",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H6CA24113",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00308742",
        "fec_filing_id": 1236324,
        "transaction_id": "VSHCJG1KHG5",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Azita",
        "contributor_middle_name": null,
        "contributor_last_name": "Etaati",
        "contributor_suffix": null,
        "contributor_street_1": "5801 Murphy Way",
        "contributor_street_2": null,
        "contributor_city": "Malibu",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Retired",
        "contributor_occupation": "Retired",
        "contribution_date": "2018-06-02",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H6CA24113",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00637892",
        "fec_filing_id": 1236323,
        "transaction_id": "VTEJAQPMVK7",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Clyde",
        "contributor_middle_name": null,
        "contributor_last_name": "Croswell",
        "contributor_suffix": null,
        "contributor_street_1": "994 Crums Church Rd",
        "contributor_street_2": null,
        "contributor_city": "Berryville",
        "contributor_state": "VA",
        "contributor_zip": null,
        "contributor_employer": "Retired",
        "contributor_occupation": "N/A",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H8VA10098",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00637892",
        "fec_filing_id": 1236323,
        "transaction_id": "VTEJAQPMVH1",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Irene",
        "contributor_middle_name": null,
        "contributor_last_name": "Foxhall",
        "contributor_suffix": null,
        "contributor_street_1": "1644 Milford St",
        "contributor_street_2": null,
        "contributor_city": "Houston",
        "contributor_state": "TX",
        "contributor_zip": null,
        "contributor_employer": "Not Employed",
        "contributor_occupation": "N/A",
        "contribution_date": "2018-06-02",
        "contribution_amount": "2700.0",
        "fec_candidate_id": "H8VA10098",
        "office_state": "VA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00458125",
        "fec_filing_id": 1236308,
        "transaction_id": "65-16346",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Babak",
        "contributor_middle_name": null,
        "contributor_last_name": "Dadvand",
        "contributor_suffix": null,
        "contributor_street_1": "5556 Mason Ave",
        "contributor_street_2": null,
        "contributor_city": "Woodland Hills",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "ISS",
        "contributor_occupation": "Engineer",
        "contribution_date": "2018-06-02",
        "contribution_amount": "350.0",
        "fec_candidate_id": "H0CA32101",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00458125",
        "fec_filing_id": 1236308,
        "transaction_id": "65-16345",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Babak",
        "contributor_middle_name": null,
        "contributor_last_name": "Dadvand",
        "contributor_suffix": null,
        "contributor_street_1": "5556 Mason Ave",
        "contributor_street_2": null,
        "contributor_city": "Woodland Hills",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "ISS",
        "contributor_occupation": "Engineer",
        "contribution_date": "2018-06-02",
        "contribution_amount": "2350.0",
        "fec_candidate_id": "H0CA32101",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00458125",
        "fec_filing_id": 1236308,
        "transaction_id": "65-16347",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Nasser",
        "contributor_middle_name": null,
        "contributor_last_name": "Sharif",
        "contributor_suffix": null,
        "contributor_street_1": "3141 Ocana Ave",
        "contributor_street_2": null,
        "contributor_city": "Long Beach",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "California Society",
        "contributor_occupation": "Sales",
        "contribution_date": "2018-06-02",
        "contribution_amount": "2000.0",
        "fec_candidate_id": "H0CA32101",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00557652",
        "fec_filing_id": 1236306,
        "transaction_id": "IDT.F65.1374",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Moses",
        "contributor_middle_name": null,
        "contributor_last_name": "Mercado",
        "contributor_suffix": null,
        "contributor_street_1": "1333 A Constitution Ave. NE",
        "contributor_street_2": null,
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": "Ogilvy",
        "contributor_occupation": "Lawyer",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H4CA35031",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00443705",
        "fec_filing_id": 1236305,
        "transaction_id": "65-22192",
        "entity_type": "PAC",
        "contributor_fec_id": "C00003251",
        "contributor_organization_name": "NEA Fund for Children & Public Education Federal Account",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1201 16th St NW  Ste 418",
        "contributor_street_2": null,
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-02",
        "contribution_amount": "4000.0",
        "fec_candidate_id": "H8CA12171",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00443705",
        "fec_filing_id": 1236305,
        "transaction_id": "65-22193",
        "entity_type": "PAC",
        "contributor_fec_id": "C00340364",
        "contributor_organization_name": "Blue Shield of California Political Action Committee",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1215 K St Ste 2010",
        "contributor_street_2": null,
        "contributor_city": "Sacramento",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-02",
        "contribution_amount": "2500.0",
        "fec_candidate_id": "H8CA12171",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00443705",
        "fec_filing_id": 1236305,
        "transaction_id": "65-22194",
        "entity_type": "PAC",
        "contributor_fec_id": "C00340364",
        "contributor_organization_name": "Blue Shield of California Political Action Committee",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1215 K St Ste 2010",
        "contributor_street_2": null,
        "contributor_city": "Sacramento",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-02",
        "contribution_amount": "2500.0",
        "fec_candidate_id": "H8CA12171",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57797",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Donald",
        "contributor_middle_name": null,
        "contributor_last_name": "Cornforth",
        "contributor_suffix": null,
        "contributor_street_1": "P.O. Box 2103",
        "contributor_street_2": null,
        "contributor_city": "Bakersfield",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Quest Imaging Medical Associates",
        "contributor_occupation": "Physician",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1500.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57772",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Edna",
        "contributor_middle_name": null,
        "contributor_last_name": "Cornforth",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 2103",
        "contributor_street_2": null,
        "contributor_city": "Bakersfield",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Homemaker",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1500.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57796",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Edna",
        "contributor_middle_name": null,
        "contributor_last_name": "Cornforth",
        "contributor_suffix": null,
        "contributor_street_1": "PO Box 2103",
        "contributor_street_2": null,
        "contributor_city": "Bakersfield",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "None",
        "contributor_occupation": "Homemaker",
        "contribution_date": "2018-06-02",
        "contribution_amount": "-1500.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57771",
        "entity_type": "PAC",
        "contributor_fec_id": "C00272468",
        "contributor_organization_name": "Iron Workers Political Action League",
        "contributor_prefix": null,
        "contributor_first_name": null,
        "contributor_middle_name": null,
        "contributor_last_name": null,
        "contributor_suffix": null,
        "contributor_street_1": "1750 New York Avenue Northwest",
        "contributor_street_2": null,
        "contributor_city": "Washington",
        "contributor_state": "DC",
        "contributor_zip": null,
        "contributor_employer": null,
        "contributor_occupation": null,
        "contribution_date": "2018-06-02",
        "contribution_amount": "2500.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57774",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Marvin",
        "contributor_middle_name": null,
        "contributor_last_name": "Meyers",
        "contributor_suffix": null,
        "contributor_street_1": "P.O. Box 457",
        "contributor_street_2": null,
        "contributor_city": "Firebaugh",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Meyers Farming",
        "contributor_occupation": "Farmer",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57776",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Sarah",
        "contributor_middle_name": "L",
        "contributor_last_name": "Pascoe",
        "contributor_suffix": null,
        "contributor_street_1": "4615 Camden Dr",
        "contributor_street_2": null,
        "contributor_city": "Corona del Mar",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Donald Valpredo Farms",
        "contributor_occupation": "Farmer",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57775",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Michael",
        "contributor_middle_name": null,
        "contributor_last_name": "Stearns",
        "contributor_suffix": null,
        "contributor_street_1": "47317 W Dakota Ave",
        "contributor_street_2": null,
        "contributor_city": "Firebaugh",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "Hammonds Ranch Inc",
        "contributor_occupation": "Farmer",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }, {
        "cycle": 2018,
        "fec_committee_id": "C00499392",
        "fec_filing_id": 1236303,
        "transaction_id": "F65-57773",
        "entity_type": "IND",
        "contributor_fec_id": null,
        "contributor_organization_name": null,
        "contributor_prefix": null,
        "contributor_first_name": "Peggy",
        "contributor_middle_name": null,
        "contributor_last_name": "Waters",
        "contributor_suffix": null,
        "contributor_street_1": "30111 Imperial Street",
        "contributor_street_2": null,
        "contributor_city": "Shafter",
        "contributor_state": "CA",
        "contributor_zip": null,
        "contributor_employer": "R&O Fishing Tools",
        "contributor_occupation": "VP",
        "contribution_date": "2018-06-02",
        "contribution_amount": "1000.0",
        "fec_candidate_id": "H2CA20094",
        "office_state": "CA"
    }],
    "callback": null
}