Find newly created tokens by symbol and/or name on Solana

Hi! Can somebody help me and describe can i get name and symbol of new generated token? Get newly created tokens on Solana - Blockchain Data API

I want to find out new generated token by symbol and/or name

I mean i want to get CA by symbol or CA and (symbol and/or name) of newly generated token

Use transfers API if you want details by name or symbol

{
  Solana {
    Transfers(
      where: {Transfer: {Currency: {Symbol: {is: "TEMP"}}}}
      limit: {count: 1}
    ) {
      Transfer {
        Amount
        AmountInUSD
        Currency {
          Name
          MintAddress
          Fungible
          Symbol
          Uri
        }
        Receiver {
          Address
        }
        Sender {
          Address
        }
      }
      Transaction {
        Signature
      }
    }
  }
}

hi, thanks.

I have one more question, can i retrieve info about name and symbol in this subscription?

as example i have got

4.005 seconds ago
{
  "Solana": {
    "Instructions": [
      {
        "Instruction": {
          "Accounts": [
            {
              "Address": "FqX1yd9BD2XJfivqTDbMxqDisFa1BEZg9DHEzQ7Ppump",
              "IsWritable": true,
              "Token": {
                "Mint": "",
                "Owner": "",
                "ProgramId": ""
              }
            }
          ],
          "Program": {
            "AccountNames": [
              "mint"
            ],
            "Address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
          }
        },
        "Transaction": {
          "Signature": "4L1xyHBxoxCwZj3XULxzqHpJr8TdSSiqKpmAtETg9YRFGhSPGHaNSD1kcfx9UUJdi5jsMeHzUdYwk5AQtJj8xGbh",
          "Signer": "4DiDxKoJTsoryLq6t3QSnfzjpWFcbWzZxmMKP5TZac3t"
        }
      }
    ]
  }
}

can i receive here also symbol and name of token?

I want to search for newly generated tokens and get in response their CA, name and symbol.

Also can i search only for spl tokens and dont receive in search nft results?