# org.chaoticharmonylabs.orbit.get

> Published by [chaoticharmonylabs.org](https://lexicon.garden/identity/did:plc:mqmbvlnt6fcqqboqqcg3b7d4)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.orbit.get)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.orbit.get/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mqmbvlnt6fcqqboqqcg3b7d4/org.chaoticharmonylabs.orbit.get/examples)

## Definitions

### `org.chaoticharmonylabs.orbit.get`

**Type**: `query`

Get an orbit by URI.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes | The URI of the orbit to retrieve |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `string` (cid) | Yes |  |
| `uri` | `string` (at-uri) | Yes |  |
| `value` | `ref` → `org.chaoticharmonylabs.orbit.defs#orbit` | Yes |  |

## Raw Schema

```json
{
  "id": "org.chaoticharmonylabs.orbit.get",
  "defs": {
    "main": {
      "type": "query",
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "uri",
            "cid",
            "value"
          ],
          "properties": {
            "cid": {
              "type": "string",
              "format": "cid"
            },
            "uri": {
              "type": "string",
              "format": "at-uri"
            },
            "value": {
              "ref": "org.chaoticharmonylabs.orbit.defs#orbit",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "uri"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "at-uri",
            "description": "The URI of the orbit to retrieve"
          }
        }
      },
      "description": "Get an orbit by URI."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
