Nexto API
Two layers: ready-made services available today on api.nextofx.com, and an API for your exchange's data that opens only with your own key.
Ready-made services
Prepaid, with a dedicated key per application. A repeated inquiry with the same key is free.
Bank and identity inquiries
For the remittance form, customer onboarding and the AML file
/v1/sheba_inquiry
/v1/card_inquiry
/v1/card_to_iban
/v1/account_to_iban
/v1/check_sayad_inquiry
/v1/bounced_cheque
/v1/shahkar
/v1/check_iban_with_national_code
/v1/check_card_with_national_code
/v1/national_identity_inquiry
Operations and intelligence
The same ones Nexto itself uses every day
/v1/energy_rent
/v1/receipt_ocr
/v1/rates
/v1/assistant_question
curl -X POST https://api.nextofx.com/v1/sheba_inquiry \
-H "X-Api-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"iban": "IR0000000000000000000000"}'
The response is JSON: holder name, bank name and transferability. An invalid IBAN is rejected at no charge.
- Each inquiry and OCR: $0.01
- Tron energy rental: $1 per rental
- Live rates: free
- Nexto plans: monthly gift credit
Top up with USDT; the key and documentation are delivered over WhatsApp.
An API for your exchange's data
Your exchange's data lives in your own tenant and has no default path to the outside. This API opens only with a key the exchange manager creates inside the app, and the order of implementation is set by the requests on file.
How it is built
Tell us what you are connecting to what
For the ready-made services we send the key and documentation. For the exchange-data API your request joins the implementation queue and we get back to you the same way you contacted us.
Do I have to be a Nexto customer to use the ready-made services?
No. Any application with a key and prepaid credit can use them. Nexto customers have the same services inside the app with no coding, and plans include a monthly gift credit.
Does my exchange's data leave the server?
Only with a key you created, and only within the scopes you granted. Without a key, no path to your data is open.
Is there an SDK?
It is plain REST with JSON; one curl example is enough to start. Each service's documentation is delivered with the key.