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

**URL:** https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031
**Category:** GraphQL API
**Created:** [August 12, 2024, 7:02pm UTC](https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031 "2024-08-12T19:02:16Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![customer](https://avatars.discourse-cdn.com/v4/letter/c/e19b73/32.png) [@customer](https://community.bitquery.io/u/customer)
#### Post date: [August 12, 2024, 7:02pm UTC](https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031/1 "2024-08-12T19:02:16Z")

</div>

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](https://ide.bitquery.io/Get-newly-created-tokens-on-Solana_2)

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

---

<div class="post-metadata">

### Author: ![customer](https://avatars.discourse-cdn.com/v4/letter/c/e19b73/32.png) [@customer](https://community.bitquery.io/u/customer)
#### Post date: [August 12, 2024, 7:04pm UTC](https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031/2 "2024-08-12T19:04:00Z")

</div>

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

---

<div class="post-metadata">

### Author: ![Divya](https://avatars.discourse-cdn.com/v4/letter/d/13edae/32.png) [@Divya](https://community.bitquery.io/u/Divya)
#### Post date: [August 13, 2024, 7:00am UTC](https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031/3 "2024-08-13T07:00:11Z")

</div>

Use transfers API if you want details by name or symbol

```auto
{
  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
      }
    }
  }
}

```

---

<div class="post-metadata">

### Author: ![customer](https://avatars.discourse-cdn.com/v4/letter/c/e19b73/32.png) [@customer](https://community.bitquery.io/u/customer)
#### Post date: [August 15, 2024, 6:02pm UTC](https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031/4 "2024-08-15T18:02:06Z")

</div>

hi, thanks.

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

> **[Get newly created tokens on Solana - Blockchain Data API](https://ide.bitquery.io/Get-newly-created-tokens-on-Solana_2)**
>
> Bitquery is analytical engine for blockchains

as example i have got

```auto
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.

---

<div class="post-metadata">

### Author: ![customer](https://avatars.discourse-cdn.com/v4/letter/c/e19b73/32.png) [@customer](https://community.bitquery.io/u/customer)
#### Post date: [August 15, 2024, 6:02pm UTC](https://community.bitquery.io/t/find-newly-created-tokens-by-symbol-and-or-name-on-solana/2031/5 "2024-08-15T18:02:38Z")

</div>

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