Read a Project
If you already know a project's name, you can fetch the details of that specific project. To get the details for a single project, you will send a GET request to the /project
endpoint, with the project name in the URL.
Get the details of a single project
GET
https://api.playfix.io/project/<project_name>
Path Parameters
project_name*
String
The project name. This will start with "projects/" followed by a ULID.
Example: projects/01g55rpe1a2kxnm1t3f90dy9ke
Headers
Authorization*
String
The access token you get from the authorization process.
Example:
Bearer <your_access_token>
Example cURL API Call
Example Python API Call
Response Body
Response Fields
The response is an object with the project details.
name
- The name that uniquely identifies the project.title
- The title of the project.description
- A short description of the project.imageCoverUrl
- URL to an IPFS gateway that fetches the cover image of the project.imageCoverCid
- IPFS CID for the cover image of the project.
Last updated