Contract Searches

The contract searches explained below are the same as the online dashboard queries show here, with the difference than the searches below use advanced search options only available via the API.

ℹ️ Text Query Operators ℹ️

There are many text query operators to make searching easier and more powerful. Look here for detailed instructions.

Simplest Example: Index Query

ℹ️ Blank Query ℹ️

Note that a blank query "q": "" means search for any document. That together with the _index means search for any document with that index, such as contract.

ℹ️ Exact Match: Words versus Text ℹ️

Note that text searches are for an exact match. If you want to match by string and not word then use the wildcard character (*). Then, for example, you will get agree and agreement both and not just agree.


curl -X POST "https://www.lawinsider.com/api/v1alpha/search?token="${token}"&pretty" -H 'Content-Type: application/json' -d '{
   "query": {  
      "q": "",
      "_index": "contract"
    }
  }'

Wildcard

curl -X POST "https://www.lawinsider.com/api/v1alpha/search?token="${token}"&pretty" -H 'Content-Type: application/json' -d '{
   "query": {  
      "q": "agree*",
      "_index": "contract"  
    }  
  }'

Highlight and Snippet

Matching terms will be shown in the highlight and snippet section of the response. The matched terms are delimited by the HTML bold (<b>) character.

"highlight": {
				"body": ["STOCK PURCHASE AGREEMENT\n\nDated July\u00a08, 2002\n\nAmong\n\nMOTOR PRODUCTS\u201...laws of the State of <b>Colorado</b>"],
				"jurisdiction.name": ["<b>Colorado</b>"]
			}

ℹ️ Querying Attributes ℹ️

The query queries the entire document or certain attributes that have been parsed from the document, like jurisdiction. Those attributes are designed to give different types of documents some common features to support a common approach for searching them. For more details on how you can query individual attributes, look here.

There are two exceptions to this: clauses and definitions. They support a type of nested query. Look here for details.

Results

For all of these searches, the results are going to be nearly the same:

{
	"took": 693,
	"timed_out": false,
	"_shards": {
		"total": 42,
		"successful": 42,
		"skipped": 0,
		"failed": 0
	},
	"hits": {
		"total": {
			"value": 10000,
			"relation": "gte"
		},
		"max_score": 85.80614,
		"hits": [{
			"_index": "contract",
			"_id": "en/hqzcwzkScVv",
			"_score": 85.80614,
			"_source": {
				"name": "STOCK PURCHASE AGREEMENT Dated July 8, 2002 Among MOTOR PRODUCTS\u2014OWOSSO CORPORATION, MOTOR PRODUCTS\u2014OHIO CORPORATION, OWOSSO CORPORATION, and HATHAWAY MOTION CONTROL CORPORATION",
				"snippet": "THIS STOCK PURCHASE AGREEMENT (this \"Agreement\") is dated July 8, 2002, by and among Hathaway Motion Control Corporation, a Colorado corporation (\"Buyer\"), Motor Products\u2014Owosso Corporation, a Delaware corporation (\"MP Owosso\"), Motor Products\u2014Ohio Corporation, a Delaware corporation (\"MP Ohio,\" and together with MP Owosso, the \"Company\"), and Owosso Corporation, a Pennsylvania corporation, and the sole stockholder of the Company (\"Seller\").",
				"url": "/contracts/hqzcwzkScVv",
				"category": {
					"name": "Stock Purchase Agreement",
					"value": "stock-purchase-agreement"
				},
				"company": {
					"name": "Hathaway Corp",
					"value": "46129"
				},
				"filing_date": "2002-09-30",
				"industry": {
					"name": "Instruments for meas & testing of electricity & elec signals",
					"value": "instruments-for-meas-testing-of-electricity-elec-signals"
				},
				"jurisdiction": {
					"name": "Colorado",
					"value": "colorado-us"
				},
				"group_id": "hqzcwzkScVv",
				"group_size": 1
			},
			"highlight": {
				"body": ["STOCK PURCHASE AGREEMENT\n\nDated July\u00a08, 2002\n\nAmong\n\nMOTOR PRODUCTS\u2014OWOSSO CORPORATION,\nMOTOR PRODUCTS\u2014<b>OHIO</b>", "time, on August\u00a015, 2002 and the Hathaway Power Sale has not occurred by 5:00\u00a0p.m., Denver, <b>Colorado</b>", "(b)\n\nif to the Company, to:\n\nMotor Products\u2014Owosso\\<b>Ohio</b> Corporation\nP.O.\u00a0Box 127\n201 S.", "AGREEMENT (this \"Agreement\") is dated July\u00a08, 2002, by and among Hathaway Motion Control Corporation, a <b>Colorado</b>", "a corporation duly organized, validly existing and in good standing under the laws of the State of <b>Colorado</b>"],
				"jurisdiction.name": ["<b>Colorado</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/caSEzeaNEtN",
			"_score": 84.04322,
			"_source": {
				"name": "SUPPLY AGREEMENT",
				"snippet": "This Supply Agreement (\"this \"Agreement\"), entered into as of this 1st day of April, 1999, between UNIQUE POWER PRODUCTS, INC., a Colorado corporation (\"UPP\") with its principal place of business at Frederick, Colorado, UNIQUE MOBILITY, INC., a Colorado corporation, (\"Unique\") with its principal place of business at Golden, Colorado, and INVACARE CORPORATION, an Ohio corporation (\"Invacare\") with its principal place of business at Elyria, Ohio.",
				"url": "/contracts/caSEzeaNEtN",
				"category": {
					"name": "Supply Agreement",
					"value": "supply-agreement"
				},
				"company": {
					"name": "Uqm Technologies Inc",
					"value": "315449"
				},
				"filing_date": "2002-02-15",
				"industry": {
					"name": "Electronic components, nec",
					"value": "electronic-components-nec"
				},
				"jurisdiction": {
					"name": "Colorado",
					"value": "colorado-us"
				},
				"group_id": "caSEzeaNEtN",
				"group_size": 1
			},
			"highlight": {
				"body": ["CORPORATION, an <b>Ohio</b> corporation (\"Invacare\") with its principal place of business at Elyria, <b>Ohio</b>.", "., a <b>Colorado</b> corporation, (\"Unique\") with its principal place of business at Golden, <b>Colorado</b>, and INVACARE", "Invacare is a corporation duly organized and validly existing under the laws of the State of <b>Ohio</b>.", "F.O.B., UPP's plant, Frederick, <b>Colorado</b>.\n\n4.3 Title and Risk of Loss.", "corporation (\"UPP\") with its principal place of business at Frederick, <b>Colorado</b>, UNIQUE MOBILITY, INC"],
				"jurisdiction.name": ["<b>Colorado</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/kigj3wljjMX",
			"_score": 82.51236,
			"_source": {
				"name": "Ohio Non Compete Agreements Enforceable",
				"snippet": "This agreement over the ohio non compete agreements enforceable? Ninth circuit court might not ohio non compete agreements enforceable in ohio courts analyzing cncs in one or prospective employee?",
				"url": "https://volunteerpei.ca/wp-content/uploads/formidable/9/ohio-non-compete-agreements-enforceable.pdf",
				"filing_date": "2022-06-10",
				"group_id": "kigj3wljjMX",
				"group_size": 1
			},
			"highlight": {
				"body": ["When it a considerable variation from doing business or <b>colorado</b> show, ice and committed to national", "<b>Colorado</b> and commerce directories, and restricting a non compete agreements: president joe biden nominates", "<b>Ohio</b> supreme court shall not <b>ohio</b> and reasonable in akron, and those states it from mental and <b>ohio</b> non", "Cnc is <b>ohio</b> non compete agreements enforceable by a lawsuit for <b>ohio</b>?", "Plenty of <b>ohio</b> non compete agreements enforceable in <b>ohio</b> working."]
			}
		}, {
			"_index": "contract",
			"_id": "en/5pwMzRv3c9x",
			"_score": 81.524,
			"_source": {
				"name": "CAT LITTER DEVICE DEVELOPMENT AGREEMENT",
				"snippet": "This Cat Litter Device Development Agreement (the \u201cAgreement\u201d) is made on January 15, 2007, by and between Nottingham-Spirk Design Associates, Inc., an Ohio corporation with offices at 2200 Overlook Road, Cleveland, Ohio 44106 (\u201cNSDA\u201d) and OurPet\u2019s Company, a Colorado corporation with offices at 1300 East Street, Fairport Harbor, Ohio 44077 (\u201cOurPets\u201d).",
				"url": "/contracts/5pwMzRv3c9x",
				"category": {
					"name": "Cat Litter Device Development Agreement",
					"value": "cat-litter-device-development-agreement"
				},
				"company": {
					"name": "Ourpets Co",
					"value": "1094139"
				},
				"filing_date": "2007-01-19",
				"industry": {
					"name": "Plastics products, nec",
					"value": "plastics-products-nec"
				},
				"jurisdiction": {
					"name": "Ohio",
					"value": "ohio-us"
				},
				"group_id": "5pwMzRv3c9x",
				"group_size": 1
			},
			"highlight": {
				"body": ["a <b>Colorado</b> corporation with offices at 1300 East Street, Fairport Harbor, <b>Ohio</b> 44077 (\u201cOurPets\u201d).", "of the State of <b>Ohio</b>.", "\u00a0 \u00a0 \u00a0 a <b>Colorado</b> corporation\n\nBy: \u00a0 /s/ John Nottingham \u00a0 \u00a0 \u00a0 By: \u00a0 /s/ Steven Tsengas\n\nName: \u00a0 John", "corporation with offices at 2200 Overlook Road, Cleveland, <b>Ohio</b> 44106 (\u201cNSDA\u201d) and OurPet\u2019s Company,", "Agreement\u201d) is made on January\u00a015, 2007, by and between Nottingham-Spirk Design Associates, Inc., an <b>Ohio</b>"],
				"jurisdiction.name": ["<b>Ohio</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/dqfOJa67qBD",
			"_score": 81.25302,
			"_source": {
				"name": "THE OHIO DEPARTMENT OF MEDICAID MYCARE OHIO PROVIDER AGREEMENT FOR MYCARE OHIO PLAN",
				"snippet": "This Provider Agreement (hereinafter \u201cAgreement\u201d) is entered into this first day of July, 2021, between the State of Ohio, the Ohio Department of Medicaid, (hereinafter referred to as ODM) whose principal office is located in the City of Columbus, County of Franklin, State of Ohio, and , MyCare Ohio Plan (hereinafter referred to as MCOP), an Ohio corporation, whose principal office is located in the city of , County of , State of Ohio.",
				"url": "https://medicaid.ohio.gov/static/Providers/ProviderTypes/Managed+Care/ICDS/2022_01_MCOP.pdf",
				"category": {
					"name": "The Ohio Department of Medicaid Mycare Ohio Provider Agreement for Mycare Ohio Plan",
					"value": "the-ohio-department-of-medicaid-mycare-ohio-provider-agreement-for-mycare-ohio-plan"
				},
				"filing_date": "2021-12-09",
				"jurisdiction": {
					"name": "Ohio",
					"value": "ohio-us"
				},
				"group_id": "2sde77LGEmG",
				"group_size": 2
			},
			"highlight": {
				"body": ["THE <b>OHIO</b> DEPARTMENT OF MEDICAID MYCARE <b>OHIO</b> PROVIDER AGREEMENT FOR MYCARE <b>OHIO</b> PLAN\n\nThis Provider Agreement", "state of <b>Ohio</b>.\n\n8.", "City of Columbus, County of Franklin, State of <b>Ohio</b>, and \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 , MyCare <b>Ohio</b> Plan (hereinafter", ", County of \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 , State of <b>Ohio</b>.", "in MyCare <b>Ohio</b> enrollment.\n\n35."],
				"jurisdiction.name": ["<b>Ohio</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/bmGRi3NaQ5w",
			"_score": 80.85359,
			"_source": {
				"name": "Master Lease Dated as of December 30, 2004 between SELCO Service Corporation, As Lessor, and Tandem Health Care of Ohio, Inc., as Lessee",
				"snippet": "This Master Lease (this \u201cMaster Lease\u201d), dated as of December 30, 2004, between Tandem Health Care of Ohio, Inc., an Ohio corporation, as Lessee and whose principal offices are located at 800 Concourse Parkway South, Suite 200, Maitland, Florida 32751 (the \u201cLessee\u201d) and SELCO Service Corporation, an Ohio corporation, as Lessor and whose principal offices are located at c/o Key Equipment Finance, 1000 South McCaslin Boulevard, Superior, Colorado 80027 (the \u201cLessor\u201d).",
				"url": "/contracts/bmGRi3NaQ5w",
				"category": {
					"name": "Master Lease",
					"value": "master-lease"
				},
				"company": {
					"name": "Tandem Health Care, Inc.",
					"value": "1335402"
				},
				"filing_date": "2005-10-07",
				"jurisdiction": {
					"name": "Ohio",
					"value": "ohio-us"
				},
				"group_id": "bmGRi3NaQ5w",
				"group_size": 1
			},
			"highlight": {
				"body": ["principal offices are located at c/o Key Equipment Finance, 1000 South McCaslin Boulevard, Superior, <b>Colorado</b>", "-2-\n\n\u00a0\n\nTandem Health Care of <b>Ohio</b>, Inc. \u00a0", "-9-\n\n\u00a0\n\nTandem Health Care of <b>Ohio</b>, Inc. \u00a0", "-11-\n\n\u00a0\n\nTandem Health Care of <b>Ohio</b>, Inc. \u00a0", "-13-\n\n\u00a0\n\nTandem Health Care of <b>Ohio</b>, Inc. \u00a0"],
				"jurisdiction.name": ["<b>Ohio</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/szEAZQo0KK",
			"_score": 80.3034,
			"_source": {
				"name": "LICENSE AGREEMENT",
				"snippet": "This AGREEMENT is made as of this ______ day of _____________, 1997, between Unique Mobility, Inc., a corporation organized and existing under the laws of the State of Colorado, with its principal offices at 425 Corporate Circle, Golden, Colorado 80401 (\"Unique\"), and Invacare Corporation, an Ohio corporation, with its principal office at 899 Cleveland Street, Elyria, Ohio 44036-2 125 (\"Invacare\").",
				"url": "/contracts/szEAZQo0KK",
				"category": {
					"name": "License Agreement",
					"value": "license-agreement"
				},
				"company": {
					"name": "Uqm Technologies Inc",
					"value": "315449"
				},
				"filing_date": "2002-02-15",
				"industry": {
					"name": "Electronic components, nec",
					"value": "electronic-components-nec"
				},
				"jurisdiction": {
					"name": "Colorado",
					"value": "colorado-us"
				},
				"group_id": "szEAZQo0KK",
				"group_size": 1
			},
			"highlight": {
				"body": ["Corporation, an <b>Ohio</b> corporation, with its principal office at 899\u00a0Cleveland Street, Elyria, <b>Ohio</b> 44036", ", with its principal offices at 425\u00a0Corporate Circle, Golden, <b>Colorado</b> 80401 (\"Unique\"), and Invacare", "between Unique Mobility, Inc., a corporation organized and existing under the laws of the State of <b>Colorado</b>", "This Agreement shall be construed in accordance with and governed by the laws of the State of <b>Colorado</b>"],
				"jurisdiction.name": ["<b>Colorado</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/3UnLrxXpljL",
			"_score": 80.29193,
			"_source": {
				"name": "THE OHIO DEPARTMENT OF MEDICAID MYCARE OHIO PROVIDER AGREEMENT FOR MYCARE OHIO PLAN",
				"snippet": "This Provider Agreement (hereinafter \u201cAgreement\u201d) is entered into this first day of July, 2021, between the State of Ohio, the Ohio Department of Medicaid, (hereinafter referred to as ODM) whose principal office is located in the City of Columbus, County of Franklin, State of Ohio, and , MyCare Ohio Plan (hereinafter referred to as MCOP), an Ohio corporation, whose principal office is located in the city of , County of , State of Ohio.",
				"url": "https://medicaid.ohio.gov/static/Providers/ProviderTypes/Managed+Care/ICDS/2021_11_MCOP_Final.pdf",
				"category": {
					"name": "The Ohio Department of Medicaid Mycare Ohio Provider Agreement for Mycare Ohio Plan",
					"value": "the-ohio-department-of-medicaid-mycare-ohio-provider-agreement-for-mycare-ohio-plan"
				},
				"filing_date": "2021-10-21",
				"jurisdiction": {
					"name": "Ohio",
					"value": "ohio-us"
				},
				"group_id": "1mgWzQslQDL",
				"group_size": 6
			},
			"highlight": {
				"body": ["THE <b>OHIO</b> DEPARTMENT OF MEDICAID MYCARE <b>OHIO</b> PROVIDER AGREEMENT FOR MYCARE <b>OHIO</b> PLAN\n\nThis Provider Agreement", "of <b>Ohio</b>.", "state of <b>Ohio</b>.\n\n8.", "City of Columbus, County of Franklin, State of <b>Ohio</b>, and , MyCare <b>Ohio</b> Plan (hereinafter referred to", "in MyCare <b>Ohio</b> enrollment.\n\n35."],
				"jurisdiction.name": ["<b>Ohio</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/fqjJmNlZta",
			"_score": 80.084,
			"_source": {
				"name": "THE OHIO DEPARTMENT OF MEDICAID MYCARE OHIO PROVIDER AGREEMENT FOR MYCARE OHIO PLAN",
				"snippet": "This Provider Agreement (hereinafter \u201cAgreement\u201d) is entered into this first day of July, 2021, between the State of Ohio, the Ohio Department of Medicaid, (hereinafter referred to as ODM) whose principal office is located in the City of Columbus, County of Franklin, State of Ohio, and , MyCare Ohio Plan (hereinafter referred to as MCOP), an Ohio corporation, whose principal office is located in the city of , County of , State of Ohio.",
				"url": "https://medicaid.ohio.gov/static/Providers/ProviderTypes/Managed+Care/ICDS/2022_03_MCOP.pdf",
				"category": {
					"name": "The Ohio Department of Medicaid Mycare Ohio Provider Agreement for Mycare Ohio Plan",
					"value": "the-ohio-department-of-medicaid-mycare-ohio-provider-agreement-for-mycare-ohio-plan"
				},
				"filing_date": "2022-04-12",
				"jurisdiction": {
					"name": "Ohio",
					"value": "ohio-us"
				},
				"group_id": "2r9bUDlWyFG",
				"group_size": 3
			},
			"highlight": {
				"body": ["THE <b>OHIO</b> DEPARTMENT OF MEDICAID MYCARE <b>OHIO</b> PROVIDER AGREEMENT FOR MYCARE <b>OHIO</b> PLAN\n\nThis Provider Agreement", "state of <b>Ohio</b>.\n\n8.", "City of Columbus, County of Franklin, State of <b>Ohio</b>, and \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 , MyCare <b>Ohio</b> Plan (hereinafter", ", County of \u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 , State of <b>Ohio</b>.", "in MyCare <b>Ohio</b> enrollment.\n\n35."],
				"jurisdiction.name": ["<b>Ohio</b>"]
			}
		}, {
			"_index": "contract",
			"_id": "en/7D2GEbcEL38",
			"_score": 79.987915,
			"_source": {
				"name": "THE OHIO DEPARTMENT OF MEDICAID MYCARE OHIO PROVIDER AGREEMENT FOR MYCARE OHIO PLAN",
				"snippet": "This Provider Agreement (hereinafter Provider Agreement or Agreement) is entered into between the State of Ohio, The Ohio Department of Medicaid, (hereinafter referred to as ODM) whose principal offices are located in the City of Columbus, County of Franklin, State of Ohio, and INSERT CORPORATE NAME, MyCare Ohio Plan (hereinafter referred to as MCOP), an Ohio corporation, whose principal office is located in the city of INSERT CITY, County of INSERT COUNTY, State of Ohio.",
				"url": "https://medicaid.ohio.gov/Portals/0/Providers/ProviderTypes/Managed%20Care/ICDS/SFY2017-09-MyCareOhio-PA.pdf?ver=2017-09-11-094440-830",
				"category": {
					"name": "The Ohio Department",
					"value": "the-ohio-department"
				},
				"filing_date": "2017-09-06",
				"jurisdiction": {
					"name": "Ohio",
					"value": "ohio-us"
				},
				"group_id": "7D2GEbcEL38",
				"group_size": 1
			},
			"highlight": {
				"body": ["THE <b>OHIO</b> DEPARTMENT OF MEDICAID MYCARE <b>OHIO</b> PROVIDER AGREEMENT FOR MYCARE <b>OHIO</b> PLAN\n\nThis Provider Agreement", "MYCARE <b>OHIO</b> PLAN\n\nBY:\n\nMYCARE <b>OHIO</b> PLAN ADDRESS\n\nTHE <b>OHIO</b> DEPARTMENT OF MEDICAID\n\nBY:\n\nBarbara R.", "AGREEMENT BETWEEN\n\nSTATE OF <b>OHIO</b>\n\n<b>OHIO</b> DEPARTMENT OF MEDICAID AND\n\nMYCARE <b>OHIO</b> PLAN\n\nAmendment No. 1", "State of <b>Ohio</b>, <b>Ohio</b> Department of Medicaid (hereinafter \u201cODM\u201d), and MYCARE <b>OHIO</b> PLAN (hereinafter \u201cMCOP", "state of <b>Ohio</b>.\n\n8."],
				"jurisdiction.name": ["<b>Ohio</b>"]
			}
		}]
	},
	"aggregations": {
		"_index": {
			"doc_count": 258642,
			"_index": {
				"doc_count_error_upper_bound": 0,
				"sum_other_doc_count": 0,
				"buckets": [{
					"key": "contract",
					"doc_count": 227101
				}, {
					"key": "clause",
					"doc_count": 22884
				}, {
					"key": "definition",
					"doc_count": 8325
				}, {
					"key": "category",
					"doc_count": 240
				}, {
					"key": "company",
					"doc_count": 90
				}, {
					"key": "jurisdiction",
					"doc_count": 2
				}]
			}
		},
		"category": {
			"doc_count": 0,
			"category": {
				"doc_count": 0,
				"category": {
					"doc_count_error_upper_bound": 0,
					"sum_other_doc_count": 0,
					"buckets": []
				}
			}
		}
	},
	"suggest": {
		"suggestions": [{
			"text": "colorado",
			"offset": 1,
			"length": 8,
			"options": []
		}, {
			"text": "ohio",
			"offset": 12,
			"length": 4,
			"options": []
		}]
	},
	"queryTokens": [],
	"size": 10
}

Logical OR Operator

The pipe operator [|] means OR. Delimit the expression with parentheses [()]:

curl -X POST "https://www.lawinsider.com/api/v1alpha/search?token="${token}"&pretty" -H 'Content-Type: application/json' -d '{
   "query": {  
      "q": "(Colorado | Ohio)",
      "_index": "contract"  
    }  
  }'

Logical AND, MUST Operator

For all practical purposes, AND and MUST mean the same thing. You don't use the words AND or MUST. Instead you put a plus (+). You can use this for simple words or more complex queries like a word plus and OR clause, like +all +of +this + (and | optionally | this).

curl -X POST "https://www.lawinsider.com/api/v1alpha/search?token="${token}"&pretty" -H 'Content-Type: application/json' -d '{
   "query": {  
      "q": "(Colorado | Ohio)",
      "_index": "contract"  
    }  
  }'

Query by Page Number

Query a specific page number. Obviously electronic documents are not paginated but they mimic the printed one.

curl -X POST  
  '<https://www.lawinsider.com/api/v1alpha/search?token=><token>'  
  -H 'Content-Type: application/json'  
  -d '{  
    "query": {  
      "q": "agree",  
      "_index": "contract",  
      "p": 2  
    }  
  }'

Proximity Searches

Certainly, using "slop" in the context of words within a certain distance of each other is commonly referred to as "proximity searching" or "phrase searching with slop." This technique is particularly useful in the legal profession when searching for specific phrases or terms that might appear in documents with some degree of variation in their arrangement or wording.

This matches:

  • breech of contract
  • breech of this contract
  • contract or the breech
  • etc
curl -X POST "https://www.lawinsider.com/api/v1alpha/search?token="${token}"&pretty" -H 'Content-Type: application/json' -d '{
   "query": {  
      "q": "\"contract breech\"~2",
      "_index": "contract"  
    }  
  }'