myv@API

CROSSWORD Solver API

 

 

Code examples

At https://rapidapi.com/myvatAPI/api/crossword-solver/, you'll find examples in 19 different programming languages to access this API, including popular languages like Node.js, JavaScript and Python. In following basic examples we focus on PHP and retrieve the API using cURL.

 

Example 1: Basic usage

Search for "pri_at_tr_nd" in German:

  <?php
//example 1: basic usage
//source: https://myv.at/api/crossword-solver/code-examples/

//start cURL request
$curl = curl_init();

curl_setopt_array($curl, [
	CURLOPT_URL => "https://crossword-solver.p.rapidapi.com/cross?word=pri_at_tr_nd&lang=de",
	CURLOPT_RETURNTRANSFER => true,
	CURLOPT_FOLLOWLOCATION => true,
	CURLOPT_ENCODING => "",
	CURLOPT_MAXREDIRS => 10,
	CURLOPT_TIMEOUT => 30,
	CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
	CURLOPT_CUSTOMREQUEST => "GET",
	CURLOPT_HTTPHEADER => [
		"x-rapidapi-host: crossword-solver.p.rapidapi.com",
		"x-rapidapi-key: SIGN-UP-FOR-KEY"
	],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
	echo "cURL Error #:" . $err;
} else {
	echo $response;
}
?>

More examples coming soon...

 

Great! That was easy!

There's no more to know to call this API.
Be sure to have also a look at the documentation.

Something missing?

Found a bug? Need something special? Tell us at: crossword-solver@myv.at
We'll always be there for you, no matter what.

 

 

 

NEWS:

2021-06-20 - Just CURRENCIES - Currency Converter API officially released on RapidAPI marketplace

2021-05-27 - Currency Converter API closed beta version released

2021-05-07 - SUDOKU All-Purpose PRO API officially released on RapidAPI marketplace

2021-03-19 - SUDOKU All-Purpose PRO API closed beta version released

by myvasco.com · legal notice