Verify Certificate by ID

Verify Certificate by ID

GET /certificates/{icscert_id}

Fields that are marked with an asterisk (*) are mandatory.

  • Certificate Information Requirements:

    • The API requires the icscert_id of a Certificate.

  • Response value:

    • The API will return a single matched Certificate record.

Headers

Name
Type
Description

Content-Type*

String

application/json

x-http-authorization*

String

API Key received from https://www.iafcertsearch.org/api-verification

Example:

x-http-authorization: <<API KEY>>

Parameters

Key
Type
Description

icscert_id*

String

The ID of the Certificate. Example: mdbcert_GuFIQmBnjaNG8Xvz7Q3DeBVx

Requests

curl --location --globoff --request GET '{API-URL}/certificates/{icscert_id}' \
--header 'x-http-authorization: <API_KEY>' \
--header 'Content-Type: application/json'

Responses

{
  "data": {
    "icscert_id": string,
    "accreditation_bodies_name": string,
    "certification_bodies_name": string,
    "certification_number": string,
    "certification_status": string,
    "certification_scope": string,
    "certification_standards_scheme": [
      {
        "standard_name": string,
        "scheme_name": string,
        "is_accredited_mla": boolean
      }
    ],
    "certification_main_sites": [
      {
        "street": string,
        "city": string,
        "state": string,
        "post_code": string,
        "full_address": string,
        "scope": string, 
        "country": string
      }
    ],
    "certification_additional_sites": [
      {
        "street": string,
        "city": string,
        "state": string,
        "post_code": string,
        "full_address": string,
        "scope": string,
        "country": string
      }
    ],
    "certification_sectors": [
      {
        "sector_name": string,
        "sector_code": string
      }
    ],
    "updated_at": integer
  }
}

Last updated