Documentation
Everything you need to integrate Fyber into your application.
Quick start
Get started with Fyber in minutes.
1
2
Install the SDK
Install the Fyber SDK for your platform.
# .NET
dotnet add package Fyber
# PHP
composer require fyber/fyber-php
# npm
npm install @fyber/fyber-js3
Create a payment
Process your first payment with a few lines of code.
var fyber = new FyberClient("sk_test_...");
var payment = await fyber.Payments.CreateAsync(new PaymentCreateOptions
{
Amount = 5000,
Currency = "JMD",
Source = "tok_visa",
Description = "Test payment"
});4
Go live
When you're ready, switch to live mode and start accepting real payments!