GET
https://jmpy.me/api/v1
/
url-ab-tests
/
{testId}
Get URL A/B Test
curl --request GET \
  --url https://jmpy.me/api/v1/url-ab-tests/{testId} \
  --header 'Authorization: Bearer <token>'
Retrieve the full details and configuration of a specific URL A/B test.

Path Parameters

testId
string
required
The UUID of the A/B test.

Request Examples

curl -X GET "https://jmpy.me/api/v1/url-ab-tests/test_url_789" \
  -H "Authorization: Bearer <token>"

Response Examples

{
  "test": {
    "id": "test_url_789",
    "name": "Landing Page CTA Test",
    "status": "running",
    "variants": [
      {
        "id": "var_a",
        "name": "Control",
        "destination_url": "https://mysite.com/landing-a",
        "traffic_weight": 50
      },
      {
        "id": "var_b",
        "name": "Variant B",
        "destination_url": "https://mysite.com/landing-b",
        "traffic_weight": 50
      }
    ]
  }
}