Know Your Customer
...
Global
UAE
UAE EID Fine Enquiry Check
overview of the api the emirates id fine enquiry service api allows users to check if a given emirates id (eid) has any fines associated with it the api returns information on whether a fine is found, the number of days the fine has been active, and the total fine amount in dirhams use case this api is useful for individuals and organizations needing to verify the fine status of an emirates id it can be integrated into systems for background checks, compliance verification, and other administrative processes where fine status information is required the emirates id fine enquiry service api is beneficial in various scenarios background checks employers verify candidates' fine status landlords screen potential tenants compliance verification banks assess applicants for before approving loans and credit cards government agencies check for fines before providing services administrative processes insurance companies evaluate policyholders' risk legal firms provide accurate legal advice based on clients' fine status personal use individuals check their own eid for fines real estate transactions agents and buyers ensure parties have no fines before transactions api input mapping input data type mandatory/optional description emiratesidnumber string mandatory the unique emirates id number to be checked dateofbirth string mandatory the date of birth of the eid holder (format yyyy mm dd) gender string mandatory the gender of the eid holder callbackurl string optional url to receive asynchronous callback responses api output mapping output data type description finefound boolean indicates if a fine is found (true/false) finedays string the number of days the fine has been active fineamount string the total fine amount in dirhams api request body api 1 preprod curl location 'https //api preproduction signzy app/api/v3/uae api/eid fine enquiry async' \\ \ header 'content type application/json' \\ \ header 'authorization \<auth token>' \\ \ data '{ "emiratesidnumber" "\<emirates id number>", "dateofbirth" "\<yyyy mm dd>", "gender" "\<male or female>", "callbackurl" "\<callback url>" }' api 2 preprod curl location 'https //api preproduction signzy app/api/v3/uae api/eid fine enquiry get data' \\ \ header 'content type application/json' \\ \ header 'authorization \<auth token>' \\ \ data '{ "requestid" "\<request id>" }' api 1 prod curl location 'https //api signzy ae/api/v3/uae api/eid fine enquiry async' \\ \ header 'content type application/json' \\ \ header 'authorization \<auth token>' \\ \ data '{ "emiratesidnumber" "\<emirates id number>", "dateofbirth" "\<yyyy mm dd>", "gender" "\<male or female>", "callbackurl" "\<callback url>" }' api 2 prod curl location 'https //api signzy ae/api/v3/uae api/eid fine enquiry get data' \\ \ header 'content type application/json' \\ \ header 'authorization \<auth token>' \\ \ data '{ "requestid" "\<request id>" }' api response body { "finefound" true, "finedays" "460", "fineamount" "23000 dirham" }