Skip to content

Instantly share code, notes, and snippets.

@yasaryousuf
Last active March 14, 2020 14:53
Show Gist options
  • Save yasaryousuf/5ec7b7d33bccafd1718c557b5eb9953d to your computer and use it in GitHub Desktop.
Save yasaryousuf/5ec7b7d33bccafd1718c557b5eb9953d to your computer and use it in GitHub Desktop.
<?php
$args = [
'headers' => [
'X-Api-Key' => 'Ek7o0F5OX29MzDjQYuDzy9FimBEOKwuukixRryN4'
]
];
$response = wp_remote_get( "https://sandbox.postcodeapi.nu/v3/lookup/6545CA/29", $args);
if ( is_array( $response ) && ! is_wp_error( $response ) ) {
$body = $response['body']; # RESPONSE FROM API
var_dump($body);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment