# Adding Data

Once you defined the structure of your posts in the previous step, it is time to create real data based on that structure. In WEEGLOO, this kind of real data is managed as a resource called *Content*. If a *Content Type* is the blueprint that defines the format of your data, then a *Content* is one concrete piece of data built from that blueprint.

## Creating a single post {#creating-a-single-post}

Create a new *Content* based on the `Article` *Content Type* you made earlier.

1. In the left menu, click **Contents**.
2. Click **Create** in the top right, then choose `Article` on the template selection screen.
3. When the editor opens, the *Field*s you defined earlier appear exactly as set up. Enter the post's title and body in `title` and `body`.
4. If needed, upload an image to `images` and an attachment to `attachments`, and choose a `category`.
5. Click **Create** to save.

![The Create Content screen for Article, with title and body filled in](/_img/en-US/getting-started/quick-start/images/intro-3-01-content-create.webp)

*Field*s defined as the *Media* type, like `images` and `attachments`, work by uploading a file and linking it. This lets you keep images and resources related to the post together in one place.

This process creates a single post *Content*. After you save the *Content* you made, you have to release it with **Publish** for it to reach visitors. The flow for creating and publishing a *Content*, along with how to upload *Media* files, is covered in detail in [Authoring and Publishing Content](/getting-started/core-concepts/content/content-authoring.md).

## Fetching your data from outside {#fetching-your-data-from-outside}

A published *Content* does not just stay in the management screen. You can fetch it through an API so that external services can use it. WEEGLOO provides every resource through a RESTful API (a way of exchanging data via addresses according to a fixed set of rules), so you can pull a published post into a web application or mobile app and use it as is.

Not only *Content* but also resources like *Content Type* and *Media* can be created (Create), read (Read), updated (Update), and deleted (Delete) the same way. When reading in particular, you can pass options such as sorting, filtering, and whether to include related data, so you can fetch data in the shape your service needs.

The specific usage and options of the API are covered in the [API Reference](/api/reference/common.md).

Now that your real data is ready, in the next step you will build a web application that fetches this data and shows it to visitors.

- [Connecting Your Service](/getting-started/quick-start/intro-4.md): Build a web application that fetches your published posts through the API and displays them on screen.
