# Show Available Survey

Use this method to automatically show any survey this user can see at the moment, provided the user meets the surveys criteria.

{% tabs fullWidth="true" %}
{% tab title="iOS - Swift" %}

```swift
Surveys.showSurveyIfAvailable()
```

{% endtab %}

{% tab title="iOS - ObjC" %}

```objectivec
[LCQSurveys showSurveyIfAvailable];
```

{% endtab %}

{% tab title="And - Java" %}

```java
Surveys.showSurveyIfAvailable();
```

{% endtab %}

{% tab title="And - Kotlin" %}

```kotlin
Surveys.showSurveyIfAvailable()
```

{% endtab %}

{% tab title="RN" %}

```javascript
Surveys.showSurveyIfAvailable();
```

{% endtab %}

{% tab title="Flutter" %}

```dart
Surveys.showSurveyIfAvailable()
```

{% endtab %}
{% endtabs %}
