What api is used for Pair created time

What api is used for Pair created timeๅพฎไฟกๆˆชๅ›พ_20220611165708

do you have a specific example?

you could try this:
https://docs.moralis.io/moralis-dapp/web3-api/defi-new#getpairaddress-new

https://dexscreener.com/bsc/0x3a2d7f510a4efe1730d355a416137eb59c5574ae

https://deep-index.moralis.io/api/v2/0x53F542f581cA69076eB2c08f8E2aab97C07d21Dd/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/pairAddress?chain=bsc&exchange=pancakeswapv2

=>

{
  "token0": {
    "address": "0x53f542f581ca69076eb2c08f8e2aab97c07d21dd",
    "name": "VicStep",
    "symbol": "VIC",
    "logo": null,
    "logo_hash": null,
    "thumbnail": null,
    "decimals": "18",
    "block_number": "18327101",
    "validated": 1,
    "created_at": "2022-06-02T03:19:39.892Z"
  },
  "token1": {
    "address": "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
    "name": "Wrapped BNB",
    "symbol": "WBNB",
    "logo": null,
    "logo_hash": null,
    "thumbnail": null,
    "decimals": "18",
    "block_number": "8242108",
    "validated": 1,
    "created_at": "2022-01-20T10:41:03.034Z"
  },
  "pairAddress": "0x3a2d7f510a4efe1730d355a416137eb59c5574ae"
}

it looks like we donโ€™t have that time when the pair is created in our API

Do you know of any other sites to get this time, or some other way! thanks

you could try to sync events, to track when every pair is created, not easy

or maybe you can find that info somewhere else where from you could extract it easily