Marvia Developer Portal
DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. Posts
  • Users
    • Get a user
      GET
    • Delete a user
      DELETE
    • Update a user
      PATCH
    • List
      GET
    • Create a new user
      POST
    • Get user locations
      GET
    • Update user locations
      PUT
    • Get user groups
      GET
    • Update user groups
      PUT
  • Products
    • List products
      GET
    • Get a product
      GET
    • Get product API module
      GET
    • Get product delivery module
      GET
    • Get product distribution module
      GET
    • Get product locations module
      GET
    • Get product files module
      GET
    • Get product stock module
      GET
    • Get product price module
      GET
    • Get product workflow module
      GET
    • Get product socials module
      GET
    • Get product internal comment module
      GET
    • Get product campaigns module
      GET
    • Get product permissions module
      GET
    • Get product reservations module
      GET
    • Get product template module
      GET
    • Get product form builder module
      GET
    • Get product variants module
      GET
  • Locations
    • Update a location
    • Get a location
    • Delete a location
    • List locations
    • Create a new location
  • Groups
    • Get a group
    • Update a group
    • Delete a group
    • List groups
    • Create a new group
  • Uploads
    • Initialize multipart upload
    • Complete multipart upload
  • Assets
    • List assets
    • Create a new asset
    • Get asset
    • Update an asset
    • Search assets
    • Get all meta tags
    • Get asset meta tags
    • Update asset meta tags
  • Posts
    • List posts
      GET
    • Get a post
      GET
DocsAPI ReferenceAbout
DocsAPI ReferenceAbout
  1. Posts

Get a post

Production
https://api-v2.getmarvia.com
Production
https://api-v2.getmarvia.com
GET
https://api-v2.getmarvia.com
/v1/posts/{uuid}
Required Permission: read:posts
This endpoint requires an API key with the read:posts permission. Make sure your token was created with this permission during token creation.

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Header Params

Responses

🟢200OK
application/json
Success
Body

🟠400Bad Request
🟠401Unauthorized
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api-v2.getmarvia.com/v1/posts/' \
--header 'Authorization: <api-key>'
Response Response Example
200 - Example 1
{
    "_tag": "Success",
    "data": {
        "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
        "publicationDate": "string",
        "status": "active",
        "expirationDate": "string",
        "translations": [
            {
                "locale": "string",
                "name": "string",
                "description": "string",
                "slug": "string",
                "url": "string",
                "subName": "string",
                "content": "string"
            }
        ],
        "createdAt": "string",
        "createdBy": {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "firstName": "string",
            "lastName": "string"
        },
        "editedAt": "string",
        "editedBy": {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "firstName": "string",
            "lastName": "string"
        },
        "media": [
            {
                "mediaTypeCode": "string",
                "sysFileUuid": "e49d62e7-0d21-449b-bb5e-e29667cee36f",
                "thumbnailUrl": "string",
                "previewUrl": "string",
                "originalUrl": "string"
            }
        ],
        "tags": [
            "497f6eca-6276-4993-bfeb-53cbbbba6f08"
        ],
        "categories": [
            "497f6eca-6276-4993-bfeb-53cbbbba6f08"
        ],
        "collections": [
            "497f6eca-6276-4993-bfeb-53cbbbba6f08"
        ]
    }
}
Modified at 2025-12-01 12:41:52
Previous
List posts
Built with