GraphQL API
Testing URL: https://api-sandbox.koywe.com/graphql
This URL runs an Apollo explorer instance, in case you want to test directly from your browser.
Contact us at hola@koywe.com to get your Credentials or to schedule a personalized tour around the platoform.
Testing: Our testing API works on the different testnets of major blockchains. We have a limited token stock, so we ask your help in not using them all or returning the tokens once the testing is done.
Queries and Mutations
To send requests to the GraphQL API, you always have to send a POST request to the base URL, including the query and any variable as a JSON object. An example to authenticate using CURL (Authorization header included for illustrative purposes):
In the following examples, we will only write down the JSON object.
Authentication
Returns a Bearer Token that lasts for 24 hours.
Require: clientId
, secret
Optional: email
. This field associates the transactions and requests to a specific user account.
The next two services allows in a directly way the validation of a final user. The first service sends a code to an email specified by the user’s input. This code must be provided as an input to the second service, where the user will be validated and session data will be returned.
Validation of session
Sends a 6-digit code to the email specified.
Code's validation
Value of code must be retrieved from the email sent by the previous service.
Pairs
Returns supported currency-tokens pairs.
Optional: symbol:
Currency symbol to filter pairs. clientId
.
Returns supported token-currencies pairs.
Optional: symbol
. El símbolo del cripto a elección. clientId
Payment Methods
Returns a list of available payment methods with each method’s fees and details for a specific currency.
Require: symbol
. currencyId
.
Optional: clientId
. Payment method list could vary according to this parameter.
Rules for Bank Transfer Payments WIRE: For payments made through bank transfer, the following rules have been established:
- Users are allowed to have only one active order per client if they use bank transfer as their payment method. This implies that if a user creates a new order via bank transfer, any previous orders will be canceled, and only the latest order will remain active.
- If a user makes a payment through bank transfer, and the balance is not equal to the order amount, the system will automatically adjust the order. This adjustment is necessary for both payments that are less than the order amount and orders that exceed the specified amount.
Payout Providers
Returns a list of available payout providers with each method’s fees and details for a specific currency.
Require: symbol
. currencyId
.
Optional: clientId
. Payment method list could vary according to this parameter.
Quote services
Get Quote
Returns a quote associated with a quoteId.
Create Quote
Requires: amountIn
o amountOut
, one or the other. symbolIn
, symbolOut
Optional: paymentMethodId
, clientId
In all the previous queries, the clientId
parameter will be ignored if there’s a JWT Bearer Token in the headers.
Authenticated Queries
All the following queries require a Bearer Token in the headers:
Accounts
These user services include: the creation of new user profiles, the ability to update user information,
the possibility of consulting user details, and a validation function that checks if the user has provided enough personal data to be able to operate.
See Considerations
Check account
It verifies the user account information and determines if it is possible to perform any operation. If any user data is missing, it could be added through the user update service detailed further below.
Get account
Returns the registered information of the user.
Create account
Creates a new user account.
Update account
Updates user data. If an updated email is present, the API validates whether it is a valid email and ensures that another account with that email does not already exist.
If an updated document number or type is present, the API validates that it has a valid format, does not exist on another account, has no executed orders, and initiates an asynchronous validation for mismatching personal data.
The results of the asynchronous validation will be sent to the configured callback. You can find more information in the webhooks section.
Get Account By Filter
Returns the registered document information of a user based on their identification details.
Authentication Required: Include Bearer Token in headers:
Required Fields:
documentNumber
: The identification number of the userdocumentType
: The type of identification document (e.g., DNI, RUT, CPF)country
: The ISO 3166-1 alpha-3 country code (e.g., CHL, PER, COL)
Possible Errors:
- 401: Unauthorized - Missing or invalid authentication token
- 404: Not Found - No account matches the provided filters
- 400: Bad Request - Invalid input parameters
Order services
Create Order
It creates a buy or sell order, returning a UUID to identify it (orderId
) and, depending on the payment method, a URL (providedData
) to proceed to payment. It accepts amounts for crypto o currency, not both.
For authenticated calls without an email, this parameter must be included to associate the transaction to a specific account.
amountIn
or amountOut
must be provided as an input, but not both.
On ramp
Requires: destinationAddress
, quoteId
.
Off ramp
Requires: destinationAddress
, quoteId
.
Optional: email
(required if user is not suthenticated with email), documentNumber (to facilitate bank reconciliation)
Data Description: see Order Rest
Get Order
Returns order information. Receives a orderId
.
Get Order by ExternalId
Returns order information. Receives a externalId
.
Get Order(s) by txHash
Returns order(s) information. Receives a txHash
.
List of past orders
Returns a list of all orders associated to the clientId
or email
specified when completing the user’s authentication.
pagesize
: This value has a limit of 300, represents the number of responses per page.
pageNumber
: Number of pages shown.
initDate
: The initial date from which records are retrieved. Format: YYYY-MM-DD. Records from this date onwards will be included unless an ‘endDate’ is specified.
endDate
: The end date until which records are retrieved. Format: YYYY-MM-DD. Only records up to this date will be included. If omitted, records up to the current date are returned.
Add txHash Off Ramp order
Add txHash to an off ramp order. Checks hash is valid for the chosen network.
Refund Order
Initiate a refund request for an off-ramp order due to errors in the fiat transfer details, returning the orderId and the status of the request.
Reprocessing order
Service responsible for reprocessing an order in case of banking errors. The objective is to be able to finalize the transaction of converting crypto to the corresponding currency, where a transfer is made to the bank account associated with the order.
Banking services
Create Bank Account
Creates a new bank account and saves it for future operations.
optional: bankCode
, documentNumber
, payoutMethodId (deprecated)
documentNumber
is required when the user has not been KYC’d.
Colombian Bank validations
To avoid rejections, you need to take into account the requirements of the destination accounts according to the bank to which you are going to send the payment:
Warning: The bankAccountNumber: Bank Account Number field must contain only numbers and be different from 0.
Get Bank Account
Returns a list of bank accounts the users has associated, filtered using countryCode
, currencySymbol
and email
.
Delete Bank Account
Deletes a Bank Account from the lists of the client’s bank accounts.
Get Bank Info by Country
Returns a list of available banks for a given countryCode
.