# social.colibri.embed.trendingGifs

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.embed.trendingGifs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.embed.trendingGifs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.embed.trendingGifs/examples)

## Definitions

### `social.colibri.embed.trendingGifs`

**Type**: `query`

Returns trending GIFs.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `page` | `integer` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `page` | `integer` | Yes |  |
| `items` | `array` | Yes |  |
| `hasNext` | `boolean` | Yes |  |

#### Errors

- **AuthRequired**: Missing, malformed, or unverifiable service auth.

## Raw Schema

```json
{
  "id": "social.colibri.embed.trendingGifs",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "AuthRequired",
          "description": "Missing, malformed, or unverifiable service auth."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "items",
            "page",
            "hasNext"
          ],
          "properties": {
            "page": {
              "type": "integer"
            },
            "items": {
              "type": "array",
              "items": {
                "ref": "lex:social.colibri.embed.defs#gifItem",
                "type": "ref"
              }
            },
            "hasNext": {
              "type": "boolean"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "properties": {
          "page": {
            "type": "integer"
          }
        }
      },
      "description": "Returns trending GIFs."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
