TurinLabs
  • 👋Welcome to TurinLabs!
  • ⬜Whitepaper
    • 1. Introduction
    • 2. Products
    • 3. Business Model
    • 4. Smart contracts
    • 5. Tokenomics
    • 6. Roadmap
  • 👀Products
    • TurinPool
      • Guide to investing in a market
    • TurinWallet
    • TurinPay
  • 🤖Developers
    • TurinPay API
      • Getting started with Turinpay
      • GraphQL Endpoints
        • Authentication
        • Create Payment Intent
        • Get Payment Intents
        • Update Payment Intent
        • Delete Payment Intent
        • Errors
      • Webhooks
    • TurinPay API test shop
    • TurinPay Woocommerce plugin and test shop
  • 📬FAQs
    • TurinWallet
    • TurinPay
    • TurinPool
  • 🙋‍♂️Contact us
Powered by GitBook
On this page
  1. Developers
  2. TurinPay API
  3. GraphQL Endpoints

Authentication

When you complete your register in TurinPay Web App, you will receive a pair of api keys.

With Development Key, you can operate in the sandbox environment (testnet), and with Production Key api key you can operate in the production environment (mainnet)

You can find your API Keys in the API Keys menu option.

Authentication to the API is performed via HTTP, using the apiKey header.

{
  "apiKey": "turinpay_sk_test_eee78-de9e-4e84-b2e6-fc2ae0687"
}

It's mandatory to pass successfully a KYB process in TurinPay for using apiKey in production environment (mainnet)

PreviousGraphQL EndpointsNextCreate Payment Intent

Last updated 2 years ago

🤖