Skip to main content
This guide shows you how to process payments directly with raw card data without tokenization. This approach is designed for merchants who already have full PCI DSS Level 1 compliance and want to eliminate the multi-step tokenization process.
Availability RestrictionThis process is only available for clients who are fully PCI DSS compliant. You must maintain enterprise-grade security and handle raw card data according to all PCI DSS requirements.You must share your Attestation of Compliance (AOC) with Tonder before we activate production access to the raw card endpoints.

Prerequisites

Before you begin, ensure you have full PCI DSS Level 1 certification, which is mandatory for handling raw card data.
When to Use This ApproachRaw card processing is recommended for:
  • Large enterprise merchants already PCI Level 1 certified.
  • Payment processors operating under existing PCI compliance.
  • High-volume businesses with existing PCI infrastructure.
  • Systems where reduced latency is critical.
It is not recommended for:
  • Small to medium businesses without PCI compliance.
  • New payment integrations.
  • Cost-conscious merchants (compliance maintenance is expensive).

Step 1: Get an Access Token

Before you can process raw card payments, you must obtain a short-lived access token. This token, along with your API key, authenticates your requests to the raw card processing endpoint. Send a POST request to the tokenization auth endpoint:
The server will respond with a JWT access token:
You will use this access_token as the X-Skyflow-Authorization header value in the next step.

Step 2: Process the Payment

Send a POST request with raw card data directly to the PCI-compliant endpoint. Include both authorization tokens from Step 1 in your request headers.
For testing, use the card numbers and test data available in our Testing Data guide to ensure your integration works correctly before going live.

Required Headers

Both Authorization and X-Skyflow-Authorization are required. The X-Skyflow-Authorization token is the JWT obtained from the authentication endpoint in Step 1 and is necessary for secure card data handling through Skyflow’s tokenization service.

Request Parameters

Example Request

Step 3: Handle the Response

Always check the status field in your response and implement appropriate logic based on the status value received. The table below details the fields returned in the response:
Validate id and status fieldsFor proper payment validation, you must check:
  • id is the unique transaction identifier — store this for future reference.
  • status is the current payment state — determines next actions.
Never rely on HTTP status codes alone for payment validation.

Next Steps

After implementing PCI-compliant raw card processing: