> ## Documentation Index
> Fetch the complete documentation index at: https://ayrshare.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Tweets nach Keyword suchen

> X/Twitter nach Tweets durchsuchen, die Keywords oder Hashtags entsprechen

export const PlansAvailable = ({plans = [], maxPackRequired}) => {
  let displayPlans = plans;
  if (plans && plans.length === 1) {
    const lowerCasePlan = plans[0].toLowerCase();
    if (lowerCasePlan === "business") {
      displayPlans = ["Launch", "Business", "Enterprise"];
    } else if (lowerCasePlan === "premium") {
      displayPlans = ["Premium", "Launch", "Business", "Enterprise"];
    }
  }
  return <Note>
Available on {displayPlans.length === 1 ? "the " : ""}
{displayPlans.join(", ").replace(/\b\w/g, l => l.toUpperCase())}{" "}
{displayPlans.length > 1 ? "plans" : "plan"}.

{maxPackRequired && <span onClick={() => window.open('https://www.ayrshare.com/docs/additional/maxpack', '_self')} className="flex items-center mt-2 cursor-pointer">
 <span className="px-1.5 py-0.5 rounded text-sm" style={{
    backgroundColor: '#C264B6',
    color: 'white',
    fontSize: '12px'
  }}>
   Max Pack required
 </span>
</span>}
</Note>;
};

export const HeaderAPI = ({noProfileKey, profileKeyRequired}) => <>
    <ParamField header="Authorization" type="string" required>
      <a href="/apis/overview#authorization">API Key</a> of the Primary Profile.
      <br />
      <br />
      Format: <code>Authorization: Bearer API_KEY</code>
    </ParamField>
    {!noProfileKey && (profileKeyRequired ? <ParamField header="Profile-Key" type="string" required>
          <a href="/apis/overview#profile-key-format">Profile Key</a> of a User Profile.
          <br />
          <br />
          Format: <code>Profile-Key: PROFILE_KEY</code>
        </ParamField> : <ParamField header="Profile-Key" type="string">
          <a href="/apis/overview#profile-key-format">Profile Key</a> of a User Profile.
          <br />
          <br />
          Format: <code>Profile-Key: PROFILE_KEY</code>
        </ParamField>)}
  </>;

<PlansAvailable plans={["business"]} maxPackRequired={false} />

Durchsuchen Sie X/Twitter nach Tweets, die Keywords, Hashtags und erweiterten Suchoperatoren entsprechen. Gibt normalisierte Tweet-Daten zurück, einschließlich Nutzerinformationen, Engagement-Metriken und Entitäten.

Dieser Endpunkt erfordert [Bring Your Own Keys (BYOK)](/dashboard/connect-social-accounts/x-twitter-byo-keys) für X/Twitter.

<Warning>
  **Wichtige Einschränkungen**

  * Es sind nur Tweets aus den letzten \~7 Tagen verfügbar (Einschränkung der X-API).
  * Standardmäßiges Tageslimit von 25 Aufrufen.
  * BYOK-Schlüssel für X/Twitter sind erforderlich.
</Warning>

## Header-Parameter

<HeaderAPI />

## Query-Parameter

<ParamField query="query" type="string" required>
  Keyword-Suchanfrage. Unterstützt X/Twitter-Suchoperatoren (siehe Tabelle unten).

  Beispiele: `ayrshare`, `#socialmedia`, `ayrshare OR #socialmedia`, `from:ayrshare`.
</ParamField>

<ParamField query="platform" type="string" required>
  Muss `twitter` sein.
</ParamField>

<ParamField query="limit" type="integer" default={15}>
  Maximale Anzahl der zurückzugebenden Tweets. Muss zwischen 10 und 100 liegen.
</ParamField>

<ParamField query="sinceId" type="string">
  Gibt Tweets mit einer ID zurück, die größer (neuer) als dieser Wert ist. Nützlich, um nur neue Tweets seit einer vorherigen Anfrage abzurufen.
</ParamField>

<ParamField query="untilId" type="string">
  Gibt Tweets mit einer ID zurück, die kleiner (älter) als dieser Wert ist. Nützlich, um rückwärts durch Ergebnisse zu paginieren.
</ParamField>

<ParamField query="next" type="string">
  Paginierungstoken aus dem `meta.pagination.next` einer vorherigen Antwort. Verwenden Sie dies, um die nächste Ergebnisseite abzurufen.
</ParamField>

## Suchoperatoren

Der Parameter `query` unterstützt die folgenden X/Twitter-Suchoperatoren:

| Operator  | Beschreibung                                          | Beispiel                  |
| --------- | ----------------------------------------------------- | ------------------------- |
| `AND`     | Beide Begriffe müssen vorkommen (Standardverhalten)   | `social AND media`        |
| `OR`      | Einer der Begriffe muss vorkommen                     | `ayrshare OR socialmedia` |
| `from:`   | Tweets von einem bestimmten Nutzer                    | `from:ayrshare`           |
| `to:`     | Tweets, die an einen bestimmten Nutzer gerichtet sind | `to:ayrshare`             |
| `#`       | Übereinstimmung mit einem Hashtag                     | `#socialmedia`            |
| `@`       | Übereinstimmung mit einer Erwähnung                   | `@ayrshare`               |
| `-`       | Einen Begriff ausschließen                            | `social -spam`            |
| `lang:`   | Nach Sprache filtern                                  | `ayrshare lang:en`        |
| `filter:` | Nach Inhaltstyp filtern                               | `ayrshare filter:links`   |
| `url:`    | Übereinstimmung mit einer URL                         | `url:ayrshare.com`        |

<RequestExample>
  ```bash cURL theme={"system"}
  curl \
    -H "Authorization: Bearer API_KEY" \
    -H "x-twitter-oauth1-api-key: YOUR_TWITTER_API_KEY" \
    -H "x-twitter-oauth1-api-secret: YOUR_TWITTER_API_SECRET" \
    -X GET "https://api.ayrshare.com/api/listen/keyword?query=ayrshare%20OR%20%23socialmedia&platform=twitter&limit=15"
  ```

  ```javascript JavaScript theme={"system"}
  const API_KEY = "API_KEY";

  fetch(
    "https://api.ayrshare.com/api/listen/keyword?query=ayrshare%20OR%20%23socialmedia&platform=twitter&limit=15",
    {
      method: "GET",
      headers: {
        Authorization: `Bearer ${API_KEY}`,
        "x-twitter-oauth1-api-key": "YOUR_TWITTER_API_KEY",
        "x-twitter-oauth1-api-secret": "YOUR_TWITTER_API_SECRET"
      }
    }
  )
    .then((res) => res.json())
    .then((json) => console.log(json))
    .catch(console.error);
  ```

  ```python Python theme={"system"}
  import requests

  headers = {
      'Authorization': 'Bearer API_KEY',
      'x-twitter-oauth1-api-key': 'YOUR_TWITTER_API_KEY',
      'x-twitter-oauth1-api-secret': 'YOUR_TWITTER_API_SECRET'
  }

  params = {
      'query': 'ayrshare OR #socialmedia',
      'platform': 'twitter',
      'limit': 15
  }

  r = requests.get('https://api.ayrshare.com/api/listen/keyword', headers=headers, params=params)

  print(r.json())
  ```
</RequestExample>

<ResponseExample>
  ```json 200: Success theme={"system"}
  {
    "status": "success",
    "platform": "twitter",
    "query": "ayrshare OR #socialmedia",
    "tweets": [
      {
        "id": "1234567890",
        "text": "Just discovered @ayrshare for managing social media APIs!",
        "createdAt": "2026-03-22T14:30:00.000Z",
        "user": {
          "id": "987654321",
          "name": "Jane Doe",
          "screenName": "janedoe",
          "profileImageUrl": "https://pbs.twimg.com/profile_images/..."
        },
        "metrics": {
          "retweetCount": 5,
          "favoriteCount": 12
        },
        "entities": {
          "hashtags": ["socialmedia"],
          "mentions": ["ayrshare"],
          "urls": []
        },
        "inReplyToStatusId": null,
        "isRetweet": false,
        "lang": "en"
      }
    ],
    "meta": {
      "pagination": {
        "hasMore": true,
        "next": "b26v89c19zqg8o3fpds7h...",
        "limit": 15
      }
    }
  }
  ```

  ```json 400: Bad Request theme={"system"}
  {
    "status": "error",
    "code": 101,
    "message": "Missing or incorrect parameters. Please verify with the docs.",
    "details": "The 'query' parameter is required."
  }
  ```

  ```json 401: Unauthorized theme={"system"}
  {
    "status": "error",
    "code": 401,
    "message": "Unauthorized. BYOK keys for X/Twitter are required.",
    "details": "Please set up your X/Twitter API keys. See https://docs.ayrshare.com/dashboard/connect-social-accounts/x-twitter-byo-keys"
  }
  ```

  ```json 429: Rate Limit Exceeded theme={"system"}
  {
    "status": "error",
    "code": 429,
    "message": "Rate limit exceeded. Daily limit of 25 keyword search calls reached.",
    "details": "Please try again tomorrow or contact support for higher limits."
  }
  ```
</ResponseExample>
