Просто спроектируйте свой API как обычно, я имею в виду конечные точки, маршрутизацию, формат вывода и т. Д.
Для извлечения данных из других сетевых ресурсов вы можете использовать:
<?php
$postData = 'whatever';
$headers = [
'Content-Type: application/json',
'Auth: depends-on-your-api',
];
$ch = curl_init("http://your-remote-api.url");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
// for POST request:
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
// end for POST request
$response = curl_exec($ch);
$apiResponseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
<?php
$postData = 'whatever';
$contextData = [
'http' => [
'method' => 'POST',
'header'=> "Content-type: application/json\r\n"
. "Auth: depends-on-your-api\r\n",
'content' => $postData
]
];
$response = file_get_contents(
'http://your-remote-api.url',
false,
context_create_stream($contextData)
);
Ссылки нацелены на определенные части документации PHP, которые могут указывать на дальнейшие действия.