Filter by title content and meta key at the same time

Such condition is impossible to express in current WP API. You can use search for title/content matches and meta query for LIKE matches on post meta, but there is no way to establish OR relationship between the two.

The closest API way would be two–stage query where you query IDs for two sets of results (one for search, one for meta), then query full data for their combination.

Outside of that it is realm custom SQL. Not impossible, but relatively hard to write and harder to maintain.