---
title: "Feed"
url: "https://kiwi.arashsheyda.me/apis/git-hub-v3-rest-api-1/versions/4cb06d26-20a0-409c-8492-8406889b7eb4/schemas/feed"
---

> Full API specification: https://kiwi.arashsheyda.me/apis/git-hub-v3-rest-api-1/versions/4cb06d26-20a0-409c-8492-8406889b7eb4.md

# Feed

Feed

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: GitHub v3 REST API
  version: 1.1.4
servers:
  - url: "{protocol}://{hostname}/api/v3"
    variables:
      hostname:
        description: Self-hosted Enterprise Server or Enterprise Cloud hostname
        default: HOSTNAME
      protocol:
        description: Self-hosted Enterprise Server or Enterprise Cloud protocol
        default: http
components:
  schemas:
    link-with-type:
      title: Link With Type
      description: Hypermedia Link with Type
      type: object
      properties:
        href:
          type: string
        type:
          type: string
      required:
        - href
        - type
    feed:
      title: Feed
      description: Feed
      type: object
      properties:
        timeline_url:
          type: string
          example: https://github.com/timeline
        user_url:
          type: string
          example: https://github.com/{user}
        current_user_public_url:
          type: string
          example: https://github.com/octocat
        current_user_url:
          type: string
          example: https://github.com/octocat.private?token=abc123
        current_user_actor_url:
          type: string
          example: https://github.com/octocat.private.actor?token=abc123
        current_user_organization_url:
          type: string
          example: https://github.com/octocat-org
        current_user_organization_urls:
          type: array
          example:
            - https://github.com/organizations/github/octocat.private.atom?token=abc123
          items:
            type: string
            format: uri
        _links:
          type: object
          properties:
            timeline:
              $ref: "#/components/schemas/link-with-type"
            user:
              $ref: "#/components/schemas/link-with-type"
            security_advisories:
              $ref: "#/components/schemas/link-with-type"
            current_user:
              $ref: "#/components/schemas/link-with-type"
            current_user_public:
              $ref: "#/components/schemas/link-with-type"
            current_user_actor:
              $ref: "#/components/schemas/link-with-type"
            current_user_organization:
              $ref: "#/components/schemas/link-with-type"
            current_user_organizations:
              type: array
              items:
                $ref: "#/components/schemas/link-with-type"
          required:
            - timeline
            - user
      required:
        - _links
        - timeline_url
        - user_url
```
