Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.markifact.com/llms.txt

Use this file to discover all available pages before exploring further.

The Markifact API returns JSON errors using the standard detail field.

Common Status Codes

StatusMeaning
400The request is invalid or uses an unsupported value.
401The API key is missing, invalid, revoked, expired, or not allowed.
404The resource was not found or does not belong to your team.
500The API could not complete the request because of server configuration or an internal error.

Validation Error

{
  "detail": "redirect_url must be a valid https URL"
}
Unsupported connection types include the allowed values:
{
  "detail": {
    "message": "Unsupported connection_type",
    "allowed_values": ["ga4", "gads", "meta_ads"]
  }
}

Authentication Error

{
  "detail": "Missing API key"
}

Not Found

For team-scoped resources, 404 can mean the resource does not exist or belongs to another team.
{
  "detail": "Connection not found"
}