Skip to main content
Querying Property Transaction Data

This article will walk you through the process of querying Transaction Data

A
Written by Adam Fung
Updated over a month ago

Once you have set up the API within your environment or GraphiQL (if not please see this article - https://app.intercom.com/a/apps/wnmvofws/knowledge-hub/article/10816410) , this is how you would build a query to pull back transaction data given a Property

This builds off of the address query which can be found in this article (https://app.intercom.com/a/apps/wnmvofws/knowledge-hub/article/10817483)

The below query retrieves the latest transaction for a given property -

qquery definedrecorderaddresspull {
address(address: "Insert Address Here") {
cherre_address__address {
tax_assessor_v2__property_address {
tax_assessor_id
address
recorder_v2_summary_v2__tax_assessor_id {
cherre_ingest_datetime
cherre_latest_deed_amount
cherre_latest_deed_date
cherre_latest_deed_grantee
cherre_latest_deed_grantor
cherre_latest_mortgage_amount
cherre_latest_mortgage_borrower
cherre_latest_mortgage_date
cherre_latest_mortgage_interest_rate
cherre_latest_mortgage_interest_type
cherre_latest_mortgage_lender
cherre_latest_mortgage_term
cherre_latest_mortgage_term_type
recorder_id
tax_assessor_id
}
}
}
}
}

This query shows all recorded transactions -

query broadrecorder{
tax_assessor_v2(order_by:{tax_assessor_id:asc_nulls_last}){
tax_assessor_id
recorder_v2_summary_v2__tax_assessor_id {
cherre_ingest_datetime
cherre_latest_deed_amount
cherre_latest_deed_date
cherre_latest_deed_grantee
cherre_latest_deed_grantor
cherre_latest_mortgage_amount
cherre_latest_mortgage_borrower
cherre_latest_mortgage_date
cherre_latest_mortgage_interest_rate
cherre_latest_mortgage_interest_type
cherre_latest_mortgage_lender
cherre_latest_mortgage_term
cherre_latest_mortgage_term_type
recorder_id
}
}
}

If you have any further questions please reach out to us at Support@cherre.com

Did this answer your question?