# com.suibari.nagi.getProfile

> Published by [suibari.com](https://lexicon.garden/identity/did:plc:uixgxpiqf4i63p6rgpu7ytmx)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.getProfile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.getProfile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uixgxpiqf4i63p6rgpu7ytmx/com.suibari.nagi.getProfile/examples)

## Definitions

### `com.suibari.nagi.getProfile`

**Type**: `query`

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `lang` | `string` | No |  |
| `actor` | `string` | Yes |  |
| `group` | `boolean` | No | Return one timeline-style conversation per thread matched by the filter, ordered by latest human activity. |
| `limit` | `integer` | No |  |
| `cursor` | `string` | No |  |
| `filter` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `feed` | `ref` → `com.suibari.nagi.getTimeline#output` | Yes |  |
| `profile` | `unknown` | Yes |  |

## Raw Schema

```json
{
  "id": "com.suibari.nagi.getProfile",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "profile",
            "feed"
          ],
          "properties": {
            "feed": {
              "ref": "com.suibari.nagi.getTimeline#output",
              "type": "ref"
            },
            "profile": {
              "type": "unknown"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "actor"
        ],
        "properties": {
          "lang": {
            "type": "string",
            "default": "ja",
            "maxLength": 2,
            "knownValues": [
              "ja",
              "en"
            ]
          },
          "actor": {
            "type": "string"
          },
          "group": {
            "type": "boolean",
            "default": false,
            "description": "Return one timeline-style conversation per thread matched by the filter, ordered by latest human activity."
          },
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1
          },
          "cursor": {
            "type": "string"
          },
          "filter": {
            "type": "string",
            "default": "posts",
            "knownValues": [
              "posts",
              "replies",
              "media",
              "reactions"
            ]
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
