Skip to main content
POST
/
api
/
v
{version}
/
validation
/
card
cURL
curl --request POST \
  --url https://identity.payven.com.tr/api/v{version}/validation/card \
  --header 'Content-Type: application/json' \
  --data '
{
  "cardNumber": "<string>",
  "resolve": true
}
'
{
  "message": "<string>",
  "isSuccess": true,
  "code": "<string>",
  "data": {
    "isValid": true,
    "luhnValid": true,
    "lengthValid": true,
    "length": 123,
    "bin": "<string>",
    "maskedNumber": "<string>",
    "schemaType": "<string>",
    "bankBin": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "bankCode": "<string>",
      "bankName": "<string>",
      "binStart": "<string>",
      "binEnd": "<string>",
      "schemaType": 0,
      "cardType": 0,
      "cardLength": 123,
      "isActive": true
    },
    "bank": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "code": "<string>",
      "name": "<string>",
      "swiftCode": "<string>",
      "logoUrl": "<string>",
      "isActive": true
    },
    "errorMessage": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.payven.com.tr/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

version
string
required

Body

cardNumber
string | null
resolve
boolean

Response

OK

message
string | null
isSuccess
boolean
code
string | null
data
object