Preloader

Card Detail

Endpoint: POST https://fastpays.io/api/bitvcard/fetch-card-detail/
Parameter Type Comments
card_id string required ID of the card you want to fund
public_key string required fastPays Public Key
Just request to that endpoint with all parameter listed below:
                    
                        Request Example (guzzle)
                        

<?php
require_once('vendor/autoload.php');
$client = new \GuzzleHttp\Client();
$response = $client->request('POST', 'https://fastpays.io/api/bitvcard/fetch-card-detail/', [
'headers' => [
  'accept' => 'application/json',
 ],
]);
'form_params' => [
  'card_id' => 'card_id',
  'public_key' => 'YourPublicKey',
 ],
]);
echo $response->getBody();