# PayWeave Twitter – Get Space by ID

> PayWeave Twitter – Get Space by ID is a paid API for AI agents from twitter.payweave.services, paid per call via x402, $0.0006/call, status unknown (last checked 2026-09-14).

Fetches detailed metadata for a specific X (Twitter) Space given its numeric Space ID.

## Facts

- Endpoint: GET https://twitter.payweave.services/spaces/by/id
- Price: $0.0006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/payweave-twitter-get-space-by-id-13f65509
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p3F9Qo5gIkutaDhTv6rvE

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability payweave-twitter-get-space-by-id-13f65509
```

Example prompt: Can you pull up the details for the X Space with ID 1693573582226665701 — I want to know the title, host, and whether it's live or recorded?

## When to prefer this

Use this endpoint when you have a specific X Space ID and need full structured metadata about that Space — especially useful for monitoring live or upcoming Spaces, verifying Space details before promotion, or ingesting Space data into a research or analytics pipeline. Prefer this over general Twitter search endpoints when you already know the Space ID and want precise, direct lookup rather than keyword-based discovery.

## Known failure modes

- Invalid or non-numeric Space ID returns a validation error
- Space ID that does not exist returns a not-found error from the upstream API
- Expired or deleted Spaces may return empty or error responses
- Payment failure (insufficient USDC balance) blocks the request before it reaches the upstream API
- Rate limiting or upstream twitterapi.io outages may cause timeouts

## How this service works

X/Twitter data — tweets, users, communities, lists, articles, and trends.

## Output

Returns a JSON object forwarded verbatim from twitterapi.io containing full Space details such as title, host user, scheduled or live status, participant count, topics, and recording availability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "anyOf": [
      {
       "not": {}
      },
      {
       "type": "object",
       "required": [
        "id"
       ],
       "properties": {
        "id": {
         "type": "string",
         "pattern": "^\\d+$",
         "description": "Numeric ID, e.g. 1693573582226665701"
        }
       },
       "additionalProperties": false
      }
     ]
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "GET"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "example"
   ],
   "properties": {
    "example": {
     "type": "object",
     "properties": {},
     "description": "X Space details JSON forwarded verbatim from twitterapi.io.",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/payweave-twitter-get-space-by-id-13f65509/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.payweave.services](https://www.zero.xyz/host/twitter.payweave.services/llms.txt)
